From b528e181274599a53dfd91e856b42d9280e1eb64 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jan=20R=C4=99korajski?= Date: Wed, 8 Sep 2010 17:15:23 +0000 Subject: [PATCH] outdated Changed files: squid-auth_on_acceleration.patch -> 1.2 squid-libnsl_fixes.patch -> 1.7 --- squid-auth_on_acceleration.patch | 19 ------------------ squid-libnsl_fixes.patch | 34 -------------------------------- 2 files changed, 53 deletions(-) delete mode 100644 squid-auth_on_acceleration.patch delete mode 100644 squid-libnsl_fixes.patch diff --git a/squid-auth_on_acceleration.patch b/squid-auth_on_acceleration.patch deleted file mode 100644 index 2f04aaf..0000000 --- a/squid-auth_on_acceleration.patch +++ /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 index a7e5586..0000000 --- a/squid-libnsl_fixes.patch +++ /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 ]) - - 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 -- 2.44.0