summaryrefslogtreecommitdiff
path: root/net-irc/epic5/files/epic5-1.1.10-socks5-libsocks.patch
diff options
context:
space:
mode:
Diffstat (limited to 'net-irc/epic5/files/epic5-1.1.10-socks5-libsocks.patch')
-rw-r--r--net-irc/epic5/files/epic5-1.1.10-socks5-libsocks.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/net-irc/epic5/files/epic5-1.1.10-socks5-libsocks.patch b/net-irc/epic5/files/epic5-1.1.10-socks5-libsocks.patch
deleted file mode 100644
index 4aef0c7d6af3..000000000000
--- a/net-irc/epic5/files/epic5-1.1.10-socks5-libsocks.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-From: Nathan Phillip Brink <binki@gentoo.org>
-Subject: Use -lsocks instead of -lsocks5 for `./configure --with-socks5`.
-
---- a/configure.in
-+++ b/configure.in
-@@ -861,7 +861,7 @@
-
- AC_MSG_CHECKING(whether to support SOCKS)
- AC_ARG_WITH(socks,
--[ --with-socks[=PATH] Compile with SOCKS firewall traversal support.],
-+[ --with-socks[=PATH] Compile with SOCKS (libsocks without socks.h) firewall traversal support.],
- [ case "$withval" in
- no)
- AC_MSG_RESULT(no)
-@@ -887,7 +887,7 @@
-
- AC_MSG_CHECKING(whether to support SOCKS5)
- AC_ARG_WITH(socks5,
--[ --with-socks5[=PATH] Compile with SOCKS5 firewall traversal support.],
-+[ --with-socks5[=PATH] Compile with SOCKS5 (libsocks with socks.h) firewall traversal support.],
- [ case "$withval" in
- no)
- AC_MSG_RESULT(no)
-@@ -899,7 +899,7 @@
- fi
-
- AC_MSG_RESULT(yes)
-- LIBS="$LIBS -lsocks5"
-+ LIBS="$LIBS -lsocks"
- AC_DEFINE(SOCKS)
- AC_DEFINE(USE_SOCKS5)
- ;;