pkgsrc/www/squid/patches/patch-ac
taca 05b4d02ef5 - Add more official patches, last one is applied as patches/patch-cd
since it is broken (reported to squid-bugs@squid-cache.org.)
- use DIST_SUBDIR.
- bump PKG_REVISION.

These patches fixes those problem. See
<http://www.squid-cache.org/Versions/v2/2.5/bugs/> in detail.

   o Squid MIB definition syntax error
   o winbind helpers fail to work with Samba 2.2.6 or later
   o CONNECT data corruption if client pipelines data before 200 OK reply
   o time acls only accept a single time
   o Client performance issue with HEAD requests to certain servers
   o --with-ssl fails to compile with OpenSSL 0.9.7 or later
   o Slow filedescriptor leak for /etc/hosts
   o Warn if cachemgr_passwd is specified more than once for the same action
   o assertion failed: forward.c:96: "fwdState->err" on shutdown
   o Compilation fails if incorrect --with-auth-threads=NN option is given
   o squid.conf documentation still refers to authenticate_program
   o authenticateAuthenticate: no connection data, cannot process
     authentication
   o delay_pools example does not match text
   o cachemgr helper stats cleanup
   o Segmentation fault after ftpDataWriteCallback
   o Issues with auth scheme configurations
   o Removed Cachable stats "no.non_get"
   o unclear documentation of http_reply_body_max_size
   o The pid file was removed too early in the shutdown process
   o select loops statistics incorrect when using select()
   o Added select filedescriptor histogram output to cachemgr
   o Duplicate assignment of sc->copy_offset
   o mem_pool_free_calls should be printed as a unsigned integer
   o Internal cleanup of peer selection accounting
   o log_mime_hdrs can show garbage in the access log on overly long request
     headers
   o Improved memory usage statistics via sbrk
   o Hostname cleanups performed by Squid
   o cachemgr failure_ratio is a ratio, not percentage
   o offline_toggle cachemgr documentation
   o squid_ldap_group update to version 2.10
   o Documentation update to remove stale reference to Squid-1.1 release notes
   o further safeguards for aufs compilation problems when not using
     --enable-pthreads
   o chroot_dir complains about all paths in squid.conf
   o Segfault when using -S in combination with cache_dir coss/null
   o Stale cached data miss in offline_mode
   o Sometimes crashes while rebuilding dirty cache directories
   o RunCache/RunAccel scripts still looks for squid in bin
   o poor performance when using aufs
   o squid_ldap_group link failure
   o assertion failed: comm.c:646: "F->flags.open"
2003-02-16 06:43:40 +00:00

17 lines
604 B
Text

$NetBSD: patch-ac,v 1.5 2003/02/16 06:43:41 taca Exp $
--- scripts/RunCache.in.orig 2003-02-16 14:56:30.000000000 +0900
+++ scripts/RunCache.in 2003-02-16 14:56:31.000000000 +0900
@@ -16,10 +16,10 @@ fi
failcount=0
while : ; do
- echo "Running: squid -sY $conf >> $logdir/squid.out 2>&1"
+ echo "Running: squid -Y $conf >> $logdir/squid.out 2>&1"
echo "Startup: `date`" >> $logdir/squid.out
start=`date '+%d%H%M%S'`
- squid -NsY $conf >> $logdir/squid.out 2>&1
+ squid -NY $conf >> $logdir/squid.out 2>&1
stop=`date '+%d%H%M%S'`
t=`expr $stop - $start`
if test 0 -le $t -a $t -lt 5 ; then