summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlin Năstac <mrness@gentoo.org>2006-09-20 11:34:23 +0000
committerAlin Năstac <mrness@gentoo.org>2006-09-20 11:34:23 +0000
commit913c160eb55d92f299d992dcdf628894940c4b0c (patch)
tree646962f1efc7c56714c400ac21d5d430c2e9cf5c /net-proxy/dante/files
parentRemove obsolete versions. (diff)
downloadhistorical-913c160eb55d92f299d992dcdf628894940c4b0c.tar.gz
historical-913c160eb55d92f299d992dcdf628894940c4b0c.tar.bz2
historical-913c160eb55d92f299d992dcdf628894940c4b0c.zip
Remove obsolete versions.
Package-Manager: portage-2.1.1
Diffstat (limited to 'net-proxy/dante/files')
-rw-r--r--net-proxy/dante/files/dante-1.1.15-bindresvport.patch17
-rw-r--r--net-proxy/dante/files/dante-1.1.15-getipnodebyname.patch12
-rw-r--r--net-proxy/dante/files/dante-1.1.15-optionalpam.patch317
-rw-r--r--net-proxy/dante/files/dante-1.1.15_pre1-socksify.patch16
-rw-r--r--net-proxy/dante/files/digest-dante-1.1.15-r11
-rw-r--r--net-proxy/dante/files/digest-dante-1.1.15-r21
6 files changed, 0 insertions, 364 deletions
diff --git a/net-proxy/dante/files/dante-1.1.15-bindresvport.patch b/net-proxy/dante/files/dante-1.1.15-bindresvport.patch
deleted file mode 100644
index 58535ae31037..000000000000
--- a/net-proxy/dante/files/dante-1.1.15-bindresvport.patch
+++ /dev/null
@@ -1,17 +0,0 @@
---- dante-1.1.14/capi/socks.h.agriffis 2003-07-02 08:13:28.000000000 -0400
-+++ dante-1.1.14/capi/socks.h 2003-12-08 15:29:13.000000000 -0500
-@@ -47,6 +47,14 @@
- #include <sys/socket.h>
-
-
-+/*
-+ * The definition of bindresvport below conflicts with line 336 of
-+ * <netinet/in.h> ... best workaround seems to be to make sure the
-+ * file is included prior to the #define
-+ */
-+#include <netinet/in.h>
-+
-+
- #define accept Raccept
- #define bind Rbind
- #define bindresvport Rbindresvport
diff --git a/net-proxy/dante/files/dante-1.1.15-getipnodebyname.patch b/net-proxy/dante/files/dante-1.1.15-getipnodebyname.patch
deleted file mode 100644
index 59db54bb9858..000000000000
--- a/net-proxy/dante/files/dante-1.1.15-getipnodebyname.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -Nru dante-1.1.15.orig/capi/socks.h dante-1.1.15/capi/socks.h
---- dante-1.1.15.orig/capi/socks.h 2005-02-22 20:25:04.000000000 +0200
-+++ dante-1.1.15/capi/socks.h 2005-02-22 20:25:33.368695168 +0200
-@@ -112,7 +112,7 @@
- struct hostent *Rgethostbyname2 __P((const char *, int af));
- int Rgetaddrinfo __P((const char *nodename, const char *servname,
- const struct addrinfo *hints, struct addrinfo **res));
--struct hostent *Rgetipnodebyname __P((const char *name, int af, int flags,
-+struct hostent *Rgetipnodebyname __P((const char *name, int af, int flags, int *error_num));
- ssize_t Rwrite __P((int d, const void *buf, size_t nbytes));
- ssize_t Rwritev __P((int d, const struct iovec *iov, int iovcnt));
- ssize_t Rsend __P((int s, const void *msg, size_t len, int flags));
diff --git a/net-proxy/dante/files/dante-1.1.15-optionalpam.patch b/net-proxy/dante/files/dante-1.1.15-optionalpam.patch
deleted file mode 100644
index deef84a2096e..000000000000
--- a/net-proxy/dante/files/dante-1.1.15-optionalpam.patch
+++ /dev/null
@@ -1,317 +0,0 @@
---- configure.ac.orig 2005-02-15 18:50:05.978366304 +0930
-+++ configure.ac 2005-02-15 19:22:42.360580312 +0930
-@@ -1255,12 +1255,24 @@
- #(programs which don't use it probably won't enjoy being linked with it)
- AM_CONDITIONAL(WANT_LIBWRAP, test "x${want_libwrap}" != "x")
-
--#look for PAM header and lib
--AC_CHECK_HEADERS(security/pam_appl.h, [have_pam_header=t])
--AC_SEARCH_LIBS(pam_start, pam, [have_libpam=t])
-
--if test x"${have_pam_header}" != x -a x"${have_libpam}" != x; then
-- AC_DEFINE(HAVE_PAM, 1, [PAM support])
-+AC_ARG_WITH(pam,
-+ [ --without-pam disable pam support(default=detect)],
-+ [PAM=$withval])
-+
-+if test "${PAM}" != no; then
-+ #look for PAM header and lib
-+ AC_CHECK_HEADERS(security/pam_appl.h, [have_pam_header=t])
-+ AC_SEARCH_LIBS(pam_start, pam, [have_libpam=t])
-+
-+ if test x"${have_pam_header}" != x -a x"${have_libpam}" != x; then
-+ AC_DEFINE(HAVE_PAM, 1, [PAM support])
-+ PAM=OK
-+ else
-+ PAM="not found"
-+ fi
-+else
-+ PAM="disabled"
- fi
-
-
-@@ -1484,6 +1496,7 @@
- else
- echo "Routeinfo: OK"
- fi
-+echo "PAM support: ${PAM}"
- echo ""
- echo "This software should perform optimally when all the lines above report 'OK'."
- echo "This is not possible on all platforms."
---- configure.orig 2005-02-15 19:34:04.005808456 +0930
-+++ configure 2005-02-15 19:31:44.538156792 +0930
-@@ -1059,6 +1059,7 @@
- --with-sockd-conf=FILE change location of socks server configuration file
- --with-pidfile=FILE change location of server pidfile
- --with-libc=NAME manually set name of c library if necessary
-+ --without-pam disable pam support(default=detect)
-
- Some influential environment variables:
- CC C compiler command
-@@ -3945,7 +3946,7 @@
- ;;
- *-*-irix6*)
- # Find out which ABI we are using.
-- echo '#line 3948 "configure"' > conftest.$ac_ext
-+ echo '#line 3949 "configure"' > conftest.$ac_ext
- if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
- (eval $ac_compile) 2>&5
- ac_status=$?
-@@ -5289,7 +5290,7 @@
-
-
- # Provide some information about the compiler.
--echo "$as_me:5292:" \
-+echo "$as_me:5293:" \
- "checking for Fortran 77 compiler version" >&5
- ac_compiler=`set X $ac_compile; echo $2`
- { (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
-@@ -6346,11 +6347,11 @@
- -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
- -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
- -e 's:$: $lt_compiler_flag:'`
-- (eval echo "\"\$as_me:6349: $lt_compile\"" >&5)
-+ (eval echo "\"\$as_me:6350: $lt_compile\"" >&5)
- (eval "$lt_compile" 2>conftest.err)
- ac_status=$?
- cat conftest.err >&5
-- echo "$as_me:6353: \$? = $ac_status" >&5
-+ echo "$as_me:6354: \$? = $ac_status" >&5
- if (exit $ac_status) && test -s "$ac_outfile"; then
- # The compiler can only warn and ignore the option if not recognized
- # So say no if there are warnings
-@@ -6589,11 +6590,11 @@
- -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
- -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
- -e 's:$: $lt_compiler_flag:'`
-- (eval echo "\"\$as_me:6592: $lt_compile\"" >&5)
-+ (eval echo "\"\$as_me:6593: $lt_compile\"" >&5)
- (eval "$lt_compile" 2>conftest.err)
- ac_status=$?
- cat conftest.err >&5
-- echo "$as_me:6596: \$? = $ac_status" >&5
-+ echo "$as_me:6597: \$? = $ac_status" >&5
- if (exit $ac_status) && test -s "$ac_outfile"; then
- # The compiler can only warn and ignore the option if not recognized
- # So say no if there are warnings
-@@ -6649,11 +6650,11 @@
- -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
- -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
- -e 's:$: $lt_compiler_flag:'`
-- (eval echo "\"\$as_me:6652: $lt_compile\"" >&5)
-+ (eval echo "\"\$as_me:6653: $lt_compile\"" >&5)
- (eval "$lt_compile" 2>out/conftest.err)
- ac_status=$?
- cat out/conftest.err >&5
-- echo "$as_me:6656: \$? = $ac_status" >&5
-+ echo "$as_me:6657: \$? = $ac_status" >&5
- if (exit $ac_status) && test -s out/conftest2.$ac_objext
- then
- # The compiler can only warn and ignore the option if not recognized
-@@ -8834,7 +8835,7 @@
- lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
- lt_status=$lt_dlunknown
- cat > conftest.$ac_ext <<EOF
--#line 8837 "configure"
-+#line 8838 "configure"
- #include "confdefs.h"
-
- #if HAVE_DLFCN_H
-@@ -8932,7 +8933,7 @@
- lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
- lt_status=$lt_dlunknown
- cat > conftest.$ac_ext <<EOF
--#line 8935 "configure"
-+#line 8936 "configure"
- #include "confdefs.h"
-
- #if HAVE_DLFCN_H
-@@ -11125,11 +11126,11 @@
- -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
- -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
- -e 's:$: $lt_compiler_flag:'`
-- (eval echo "\"\$as_me:11128: $lt_compile\"" >&5)
-+ (eval echo "\"\$as_me:11129: $lt_compile\"" >&5)
- (eval "$lt_compile" 2>conftest.err)
- ac_status=$?
- cat conftest.err >&5
-- echo "$as_me:11132: \$? = $ac_status" >&5
-+ echo "$as_me:11133: \$? = $ac_status" >&5
- if (exit $ac_status) && test -s "$ac_outfile"; then
- # The compiler can only warn and ignore the option if not recognized
- # So say no if there are warnings
-@@ -11185,11 +11186,11 @@
- -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
- -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
- -e 's:$: $lt_compiler_flag:'`
-- (eval echo "\"\$as_me:11188: $lt_compile\"" >&5)
-+ (eval echo "\"\$as_me:11189: $lt_compile\"" >&5)
- (eval "$lt_compile" 2>out/conftest.err)
- ac_status=$?
- cat out/conftest.err >&5
-- echo "$as_me:11192: \$? = $ac_status" >&5
-+ echo "$as_me:11193: \$? = $ac_status" >&5
- if (exit $ac_status) && test -s out/conftest2.$ac_objext
- then
- # The compiler can only warn and ignore the option if not recognized
-@@ -12546,7 +12547,7 @@
- lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
- lt_status=$lt_dlunknown
- cat > conftest.$ac_ext <<EOF
--#line 12549 "configure"
-+#line 12550 "configure"
- #include "confdefs.h"
-
- #if HAVE_DLFCN_H
-@@ -12644,7 +12645,7 @@
- lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
- lt_status=$lt_dlunknown
- cat > conftest.$ac_ext <<EOF
--#line 12647 "configure"
-+#line 12648 "configure"
- #include "confdefs.h"
-
- #if HAVE_DLFCN_H
-@@ -13481,11 +13482,11 @@
- -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
- -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
- -e 's:$: $lt_compiler_flag:'`
-- (eval echo "\"\$as_me:13484: $lt_compile\"" >&5)
-+ (eval echo "\"\$as_me:13485: $lt_compile\"" >&5)
- (eval "$lt_compile" 2>conftest.err)
- ac_status=$?
- cat conftest.err >&5
-- echo "$as_me:13488: \$? = $ac_status" >&5
-+ echo "$as_me:13489: \$? = $ac_status" >&5
- if (exit $ac_status) && test -s "$ac_outfile"; then
- # The compiler can only warn and ignore the option if not recognized
- # So say no if there are warnings
-@@ -13541,11 +13542,11 @@
- -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
- -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
- -e 's:$: $lt_compiler_flag:'`
-- (eval echo "\"\$as_me:13544: $lt_compile\"" >&5)
-+ (eval echo "\"\$as_me:13545: $lt_compile\"" >&5)
- (eval "$lt_compile" 2>out/conftest.err)
- ac_status=$?
- cat out/conftest.err >&5
-- echo "$as_me:13548: \$? = $ac_status" >&5
-+ echo "$as_me:13549: \$? = $ac_status" >&5
- if (exit $ac_status) && test -s out/conftest2.$ac_objext
- then
- # The compiler can only warn and ignore the option if not recognized
-@@ -15576,11 +15577,11 @@
- -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
- -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
- -e 's:$: $lt_compiler_flag:'`
-- (eval echo "\"\$as_me:15579: $lt_compile\"" >&5)
-+ (eval echo "\"\$as_me:15580: $lt_compile\"" >&5)
- (eval "$lt_compile" 2>conftest.err)
- ac_status=$?
- cat conftest.err >&5
-- echo "$as_me:15583: \$? = $ac_status" >&5
-+ echo "$as_me:15584: \$? = $ac_status" >&5
- if (exit $ac_status) && test -s "$ac_outfile"; then
- # The compiler can only warn and ignore the option if not recognized
- # So say no if there are warnings
-@@ -15819,11 +15820,11 @@
- -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
- -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
- -e 's:$: $lt_compiler_flag:'`
-- (eval echo "\"\$as_me:15822: $lt_compile\"" >&5)
-+ (eval echo "\"\$as_me:15823: $lt_compile\"" >&5)
- (eval "$lt_compile" 2>conftest.err)
- ac_status=$?
- cat conftest.err >&5
-- echo "$as_me:15826: \$? = $ac_status" >&5
-+ echo "$as_me:15827: \$? = $ac_status" >&5
- if (exit $ac_status) && test -s "$ac_outfile"; then
- # The compiler can only warn and ignore the option if not recognized
- # So say no if there are warnings
-@@ -15879,11 +15880,11 @@
- -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
- -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
- -e 's:$: $lt_compiler_flag:'`
-- (eval echo "\"\$as_me:15882: $lt_compile\"" >&5)
-+ (eval echo "\"\$as_me:15883: $lt_compile\"" >&5)
- (eval "$lt_compile" 2>out/conftest.err)
- ac_status=$?
- cat out/conftest.err >&5
-- echo "$as_me:15886: \$? = $ac_status" >&5
-+ echo "$as_me:15887: \$? = $ac_status" >&5
- if (exit $ac_status) && test -s out/conftest2.$ac_objext
- then
- # The compiler can only warn and ignore the option if not recognized
-@@ -18064,7 +18065,7 @@
- lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
- lt_status=$lt_dlunknown
- cat > conftest.$ac_ext <<EOF
--#line 18067 "configure"
-+#line 18068 "configure"
- #include "confdefs.h"
-
- #if HAVE_DLFCN_H
-@@ -18162,7 +18163,7 @@
- lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
- lt_status=$lt_dlunknown
- cat > conftest.$ac_ext <<EOF
--#line 18165 "configure"
-+#line 18166 "configure"
- #include "confdefs.h"
-
- #if HAVE_DLFCN_H
-@@ -29971,7 +29972,16 @@
- fi
-
-
--#look for PAM header and lib
-+
-+
-+# Check whether --with-pam or --without-pam was given.
-+if test "${with_pam+set}" = set; then
-+ withval="$with_pam"
-+ PAM=$withval
-+fi;
-+
-+if test "${PAM}" != no; then
-+ #look for PAM header and lib
-
- for ac_header in security/pam_appl.h
- do
-@@ -30122,7 +30132,7 @@
-
- done
-
--echo "$as_me:$LINENO: checking for library containing pam_start" >&5
-+ echo "$as_me:$LINENO: checking for library containing pam_start" >&5
- echo $ECHO_N "checking for library containing pam_start... $ECHO_C" >&6
- if test "${ac_cv_search_pam_start+set}" = set; then
- echo $ECHO_N "(cached) $ECHO_C" >&6
-@@ -30249,12 +30259,18 @@
- fi
-
-
--if test x"${have_pam_header}" != x -a x"${have_libpam}" != x; then
-+ if test x"${have_pam_header}" != x -a x"${have_libpam}" != x; then
-
- cat >>confdefs.h <<\_ACEOF
- #define HAVE_PAM 1
- _ACEOF
-
-+ PAM=OK
-+ else
-+ PAM="not found"
-+ fi
-+else
-+ PAM="disabled"
- fi
-
-
-@@ -35024,6 +35040,7 @@
- else
- echo "Routeinfo: OK"
- fi
-+echo "PAM support: ${PAM}"
- echo ""
- echo "This software should perform optimally when all the lines above report 'OK'."
- echo "This is not possible on all platforms."
diff --git a/net-proxy/dante/files/dante-1.1.15_pre1-socksify.patch b/net-proxy/dante/files/dante-1.1.15_pre1-socksify.patch
deleted file mode 100644
index 632deb1f9b58..000000000000
--- a/net-proxy/dante/files/dante-1.1.15_pre1-socksify.patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- dante-1.1.15-pre1/bin/socksify.in.agriffis 2004-11-04 16:07:04.000000000 -0500
-+++ dante-1.1.15-pre1/bin/socksify.in 2004-11-04 16:07:08.977460049 -0500
-@@ -60,7 +60,11 @@
- @PRELOAD_VARIABLE@="${LIBRARY}${SOCKSIFY_PRELOAD_LIBS:+${PRELOAD_SEPERATOR}}${SOCKSIFY_PRELOAD_LIBS}${PRELOAD_POSTFIX:+${PRELOAD_SEPERATOR}}${PRELOAD_POSTFIX}"
- export @PRELOAD_VARIABLE@
-
--LD_LIBRARY_PATH="${LD_LIBRARY_PATH}${LD_LIBRARY_PATH:+:}${LIBDIR}"
--export LD_LIBRARY_PATH
-+# There is no reason to set LD_LIBRARY_PATH, at least on Linux, where
-+# LD_PRELOAD can contain a full path to the library. Setting the
-+# following breaks socksify on Linux/Alpha at least with
-+# binutils-2.14.90.0.7-r3 (08 Dec 2003 agriffis)
-+#LD_LIBRARY_PATH="${LD_LIBRARY_PATH}${LD_LIBRARY_PATH:+:}${LIBDIR}"
-+#export LD_LIBRARY_PATH
-
- exec "$@"
diff --git a/net-proxy/dante/files/digest-dante-1.1.15-r1 b/net-proxy/dante/files/digest-dante-1.1.15-r1
deleted file mode 100644
index 88330bda9942..000000000000
--- a/net-proxy/dante/files/digest-dante-1.1.15-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 c737faf4ba6282777070d8c0580c3832 dante-1.1.15.tar.gz 839660
diff --git a/net-proxy/dante/files/digest-dante-1.1.15-r2 b/net-proxy/dante/files/digest-dante-1.1.15-r2
deleted file mode 100644
index 88330bda9942..000000000000
--- a/net-proxy/dante/files/digest-dante-1.1.15-r2
+++ /dev/null
@@ -1 +0,0 @@
-MD5 c737faf4ba6282777070d8c0580c3832 dante-1.1.15.tar.gz 839660