]> git.pld-linux.org Git - packages/squid.git/commitdiff
outdated
authorJan Rękorajski <baggins@pld-linux.org>
Wed, 8 Sep 2010 17:15:23 +0000 (17:15 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    squid-auth_on_acceleration.patch -> 1.2
    squid-libnsl_fixes.patch -> 1.7

squid-auth_on_acceleration.patch [deleted file]
squid-libnsl_fixes.patch [deleted file]

diff --git a/squid-auth_on_acceleration.patch b/squid-auth_on_acceleration.patch
deleted file mode 100644 (file)
index 2f04aaf..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-based on infromation from
-http://www.squid-cache.org/mail-archive/squid-users/200304/0003.html
-
---- squid-2.5.STABLE12/configure.in~   2005-10-31 17:27:14.000000000 +0200
-+++ squid-2.5.STABLE12/configure.in    2005-10-31 17:47:07.000000000 +0200
-@@ -1242,6 +1242,13 @@
-       ;;
- esac
-+AC_ARG_WITH(auth-on-acceleration,
-+[  --with-auth-on-acceleration      Enable authentication on accelerated request.],
-+[ if test "$withval" = yes; then
-+      AC_DEFINE([AUTH_ON_ACCELERATION], [1], [Enable authentication on accelerated request.])
-+  fi
-+])
-+
- dnl Check for programs
- AC_PROG_CPP
- AC_PROG_INSTALL
diff --git a/squid-libnsl_fixes.patch b/squid-libnsl_fixes.patch
deleted file mode 100644 (file)
index a7e5586..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-diff -urN squid-3.0.STABLE9.orig/configure.in squid-3.0.STABLE9/configure.in
---- squid-3.0.STABLE9.orig/configure.in        2008-09-09 18:06:45.000000000 +0200
-+++ squid-3.0.STABLE9/configure.in     2008-09-19 07:43:53.042671496 +0200
-@@ -36,6 +36,7 @@
- CRYPTLIB=''
-+NSLLIB=''
- REGEXLIB=''   # -lregex
- LIBREGEX=''   # libregex.a
-@@ -2205,8 +2206,10 @@
- #include <sys/msg.h>])
- dnl Check for needed libraries
--AC_CHECK_LIB(nsl, main)
--AC_CHECK_LIB(socket, main)
-+AC_CHECK_FUNC(gethostbyname, [], AC_CHECK_LIB(nsl, gethostbyname))
-+AC_CHECK_LIB(nsl, yp_match, NSLLIB="-lnsl")
-+AC_SUBST(NSLLIB)
-+AC_SEARCH_LIBS(socket, socket)
- dnl Check for Winsock only on MinGW, on Cygwin we must use emulated BSD socket API
- case "$host_os" in
-   mingw|mingw32)
-diff -urN squid-3.0.STABLE9.orig/helpers/basic_auth/YP/Makefile.am squid-3.0.STABLE9/helpers/basic_auth/YP/Makefile.am
---- squid-3.0.STABLE9.orig/helpers/basic_auth/YP/Makefile.am   2008-09-09 18:06:40.000000000 +0200
-+++ squid-3.0.STABLE9/helpers/basic_auth/YP/Makefile.am        2008-09-19 07:44:22.396001181 +0200
-@@ -7,5 +7,5 @@
- libexec_PROGRAMS = yp_auth
- yp_auth_SOURCES       = yp_auth.c nis_support.h nis_support.c
--LDADD = -L$(top_builddir)/lib -lmiscutil $(CRYPTLIB) $(XTRA_LIBS)
-+LDADD = -L$(top_builddir)/lib -lmiscutil $(CRYPTLIB) $(NSLLIB) $(XTRA_LIBS)
- INCLUDES      = -I$(top_srcdir)/include
This page took 0.087767 seconds and 4 git commands to generate.