--------------------- PatchSet 6566 Date: 2005/03/29 03:38:16 Author: swsf Branch: epoll-2_5 Tag: (none) Log: More merges with s2_5 branch Members: ChangeLog:1.12.6.80->1.12.6.80.2.1 configure.in:1.42.2.59.4.2->1.42.2.59.4.3 doc/release-notes/release-2.5.html:1.1.2.36->1.1.2.36.2.1 doc/release-notes/release-2.5.sgml:1.1.2.47->1.1.2.47.2.1 helpers/basic_auth/LDAP/Makefile.am:1.1.2.2->1.1.2.2.28.1 helpers/basic_auth/LDAP/squid_ldap_auth.c:1.1.2.18->1.1.2.18.4.1 helpers/external_acl/ldap_group/ChangeLog:1.1.2.4->1.1.2.4.10.1 helpers/external_acl/ldap_group/Makefile.am:1.1.6.4->1.1.6.4.24.1 helpers/external_acl/ldap_group/squid_ldap_group.c:1.1.2.15->1.1.2.15.4.1 Index: squid/ChangeLog =================================================================== RCS file: /cvsroot/squid-sf//squid/ChangeLog,v retrieving revision 1.12.6.80 retrieving revision 1.12.6.80.2.1 diff -u -r1.12.6.80 -r1.12.6.80.2.1 --- squid/ChangeLog 25 Feb 2005 03:14:13 -0000 1.12.6.80 +++ squid/ChangeLog 29 Mar 2005 03:38:16 -0000 1.12.6.80.2.1 @@ -1,3 +1,36 @@ +Changes to squid-2.5.STABLE10 (not yet released) + + - [Minor Security] Fix race condition in relation to old Netscape + Set-Cookie specifications + - [Minor] Fails to parse D.J. Bernstein's FTP EPLF ftp listing + format and PASV resposes (Bug #1252) + - [Minor] BASE HREF missing on ftp directory URLs without / + (Bug #1253) + - [Minor security] confusing http_access results on configuration + error (Bug #1255) + - [Cosmetic] More robust Date parser (Bug #321) + - [Minor] reload_with_ims fails to refresh negatively cached objects + (Bug #1159) + - [Cosmetic] delay_access description clarification (Bug #1245) + - [Cosmetic] Check for integer overflow in size specifications in + squid.conf (Bug #1247) + - [Cosmetic] bzero is a non-standard function not available on all + platforms (Bug #1256) + - [Cosmetic] Compiler warnings if pid_t is not an int (Bug #1257) + - [Cosmetic] Incorrect use of ctype functions (Bug #1259) + - [Cosmetic] Peer digest fetch initiated even if peer not allowed + to be used for the request (Bug #1261) + - [Minor] Duplicate content-length headers logged incorrectly or + not cleaned up properly (Bug #1262) + - [Cosmetic] Extend relaxed_header_parser to work around "excess + data from" errors from many major web servers. (Bug #1265) + - [Minor] Add HTTP headers to a netdb error messages + - [Minor] Multiple minor aufs issues (Bug #671) + - [Minor] Basic authentication fails with very long logins or + password (Bug #1171) + - [Minor] CONNECT requests truncated if client side disconnects first + (Bug #1269) + Changes to squid-2.5.STABLE9 (24 Feb 2005) - [Medium] Don't retry requests on 403 errors (Bug #1210) Index: squid/configure.in =================================================================== RCS file: /cvsroot/squid-sf//squid/configure.in,v retrieving revision 1.42.2.59.4.2 retrieving revision 1.42.2.59.4.3 diff -u -r1.42.2.59.4.2 -r1.42.2.59.4.3 --- squid/configure.in 29 Mar 2005 02:26:42 -0000 1.42.2.59.4.2 +++ squid/configure.in 29 Mar 2005 03:38:16 -0000 1.42.2.59.4.3 @@ -3,7 +3,7 @@ dnl dnl Duane Wessels, wessels@nlanr.net, February 1996 (autoconf v2.9) dnl -dnl $Id: configure.in,v 1.42.2.59.4.2 2005/03/29 02:26:42 swsf Exp $ +dnl $Id: configure.in,v 1.42.2.59.4.3 2005/03/29 03:38:16 swsf Exp $ dnl dnl dnl @@ -11,7 +11,7 @@ AC_CONFIG_AUX_DIR(cfgaux) AM_INIT_AUTOMAKE(squid, 2.5.STABLE9-CVS) AM_CONFIG_HEADER(include/autoconf.h) -AC_REVISION($Revision: 1.42.2.59.4.2 $)dnl +AC_REVISION($Revision: 1.42.2.59.4.3 $)dnl AC_PREFIX_DEFAULT(/usr/local/squid) AM_MAINTAINER_MODE @@ -893,8 +893,7 @@ ]) dnl Disable hostname checks -enable_hostname_checks=1 -AC_ARG_ENABLE(hostname_checks, +AC_ARG_ENABLE(hostname-checks, [ --disable-hostname-checks Squid by default rejects any host names with odd characters in their name to conform with @@ -904,13 +903,13 @@ Squid does not reject such host names.. This may be required to participate in testbeds for international domain names.], -[ if test "$enableval" = "no"; then - echo "Disabling hostname sanity checks" - enable_hostname_checks=0 - fi -]) -if test "$enable_hostname_checks" = 1; then + [], + [enable_hostname_checks=yes]) +if test "$enable_hostname_checks" = "yes"; then + echo "Hostname sanity checks enabled" AC_DEFINE(CHECK_HOSTNAMES, 1, [Enable hostname sanity checks]) +else + echo "Disabling hostname sanity checks" fi dnl Enable underscore in hostnames @@ -1688,6 +1687,10 @@ ;; esac +dnl LDAP helpers need to know if -llber is needed or not +AC_CHECK_LIB(lber, main, [LIB_LBER="-llber"]) +AC_SUBST(LIB_LBER) + dnl System-specific library modifications dnl case "$host" in Index: squid/doc/release-notes/release-2.5.html =================================================================== RCS file: /cvsroot/squid-sf//squid/doc/release-notes/Attic/release-2.5.html,v retrieving revision 1.1.2.36 retrieving revision 1.1.2.36.2.1 diff -u -r1.1.2.36 -r1.1.2.36.2.1 --- squid/doc/release-notes/release-2.5.html 25 Feb 2005 03:14:14 -0000 1.1.2.36 +++ squid/doc/release-notes/release-2.5.html 29 Mar 2005 03:38:18 -0000 1.1.2.36.2.1 @@ -7,7 +7,7 @@
+