Gentoo Archives: gentoo-commits

From: "Nathan Phillip Brink (binki)" <binki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-irc/epic5/files: epic5-1.1.10-socks5-libsocks.patch
Date: Thu, 04 Sep 2014 06:00:17
Message-Id: 20140904045358.311014A83@oystercatcher.gentoo.org
1 binki 14/09/04 04:53:58
2
3 Added: epic5-1.1.10-socks5-libsocks.patch
4 Log:
5 Reform USE=socks5 fix into a patch.
6
7 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 743A52E86BA81050)
8
9 Revision Changes Path
10 1.1 net-irc/epic5/files/epic5-1.1.10-socks5-libsocks.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/epic5/files/epic5-1.1.10-socks5-libsocks.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/epic5/files/epic5-1.1.10-socks5-libsocks.patch?rev=1.1&content-type=text/plain
14
15 Index: epic5-1.1.10-socks5-libsocks.patch
16 ===================================================================
17 From: Nathan Phillip Brink <binki@g.o>
18 Subject: Use -lsocks instead of -lsocks5 for `./configure --with-socks5`.
19
20 Index: configure.in
21 ===================================================================
22 RCS file: /home/cvs/repository/epic5/configure.in,v
23 retrieving revision 1.101
24 diff -u -b -B -u -r1.101 configure.in
25 --- configure.in 9 Apr 2014 17:51:06 -0000 1.101
26 +++ configure.in 4 Sep 2014 00:18:00 -0000
27 @@ -861,7 +861,7 @@
28
29 AC_MSG_CHECKING(whether to support SOCKS)
30 AC_ARG_WITH(socks,
31 -[ --with-socks[=PATH] Compile with SOCKS firewall traversal support.],
32 +[ --with-socks[=PATH] Compile with SOCKS (libsocks without socks.h) firewall traversal support.],
33 [ case "$withval" in
34 no)
35 AC_MSG_RESULT(no)
36 @@ -887,7 +887,7 @@
37
38 AC_MSG_CHECKING(whether to support SOCKS5)
39 AC_ARG_WITH(socks5,
40 -[ --with-socks5[=PATH] Compile with SOCKS5 firewall traversal support.],
41 +[ --with-socks5[=PATH] Compile with SOCKS5 (libsocks with socks.h) firewall traversal support.],
42 [ case "$withval" in
43 no)
44 AC_MSG_RESULT(no)
45 @@ -899,7 +899,7 @@
46 fi
47
48 AC_MSG_RESULT(yes)
49 - LIBS="$LIBS -lsocks5"
50 + LIBS="$LIBS -lsocks"
51 AC_DEFINE(SOCKS)
52 AC_DEFINE(USE_SOCKS5)
53 ;;