head 1.7; access; symbols pkgsrc-2013Q2:1.7.0.10 pkgsrc-2013Q2-base:1.7 pkgsrc-2012Q4:1.7.0.8 pkgsrc-2012Q4-base:1.7 pkgsrc-2011Q4:1.7.0.6 pkgsrc-2011Q4-base:1.7 pkgsrc-2011Q2:1.7.0.4 pkgsrc-2011Q2-base:1.7 pkgsrc-2009Q4:1.7.0.2 pkgsrc-2009Q4-base:1.7 pkgsrc-2009Q1:1.2.0.2 pkgsrc-2009Q1-base:1.2 pkgsrc-2008Q4:1.1.1.1.0.6 pkgsrc-2008Q4-base:1.1.1.1 pkgsrc-2008Q3:1.1.1.1.0.4 pkgsrc-2008Q3-base:1.1.1.1 cube-native-xorg:1.1.1.1.0.2 cube-native-xorg-base:1.1.1.1 pkgsrc-base:1.1.1.1 TNF:1.1.1; locks; strict; comment @# @; 1.7 date 2009.07.27.16.13.26; author taca; state dead; branches; next 1.6; 1.6 date 2009.07.20.10.49.16; author tron; state Exp; branches; next 1.5; 1.5 date 2009.07.19.23.27.51; author tron; state Exp; branches; next 1.4; 1.4 date 2009.05.08.13.39.09; author taca; state dead; branches; next 1.3; 1.3 date 2009.04.11.14.04.15; author taca; state Exp; branches; next 1.2; 1.2 date 2009.01.22.17.23.47; author taca; state Exp; branches; next 1.1; 1.1 date 2008.09.12.15.05.57; author taca; state Exp; branches 1.1.1.1; next ; 1.1.1.1 date 2008.09.12.15.05.57; author taca; state Exp; branches 1.1.1.1.6.1; next ; 1.1.1.1.6.1 date 2009.02.05.17.54.00; author tron; state Exp; branches; next ; desc @@ 1.7 log @Update www/squid package to 3.0.17 (3.0.STABLE17). Changes to squid-3.0.STABLE17 (27 Jul 2009): - Bug 2680 regression: Crash after rotate with no helpers running - Bug 2710: squid_kerb_auth non-terminated string - Bug 2679: strsep and strtoll detection failure - Bug 2674: Remove limit on HTTP headers read. - Bug 2659: String length overflows on append, leading to segfaults - Bug 2620: Invalid HTTP response codes causes segfault - Bug 2080: wbinfo_group.pl - false positive under certain conditions - Bug 1087: ESI processor not quoting attributes correctly. - Fix: issue with AUFS/UFS/DiskD writing objects to disk cache - Several small build issues with previous release. @ text @$NetBSD: patch-aa,v 1.6 2009/07/20 10:49:16 tron Exp $ Build fix for NetBSD/amd64 taken from here: http://www.squid-cache.org/Versions/v3/3.1/changesets/b9648.patch --- src/client_side.cc.orig 2009-07-19 06:11:13.000000000 +0100 +++ src/client_side.cc 2009-07-20 11:29:30.000000000 +0100 @@@@ -2222,7 +2222,7 @@@@ // when we read chunked requests, the entire body is buffered // XXX: this check ignores header size and its limits. if (conn->in.dechunkingState == ConnStateData::chunkParsing) - return conn->in.notYetUsed < Config.maxChunkedRequestBodySize; + return ((int64_t)conn->in.notYetUsed) < Config.maxChunkedRequestBodySize; return conn->in.notYetUsed >= Config.maxRequestHeaderSize ? 0 : 1; } @ 1.6 log @Use official Squid change to fix build problems under NetBSD/amd4. @ text @d1 1 a1 1 $NetBSD$ @ 1.5 log @Fix build problem under NetBSD/amd64 (Squid bug 2716). @ text @d1 1 a1 1 $NetBSD: patch-aa,v 1.4 2009/07/19 23:05:38 tron Exp $ d3 2 a4 1 http://www.squid-cache.org/bugs/show_bug.cgi?id=2716 d6 3 a8 3 --- src/client_side.cc.orig 2009-06-15 08:31:30.000000000 +0100 +++ src/client_side.cc 2009-07-20 00:18:41.000000000 +0100 @@@@ -2141,7 +2141,7 @@@@ d13 1 a13 1 + return (ssize_t)conn->in.notYetUsed < Config.maxChunkedRequestBodySize; @ 1.4 log @Update squid20 package to 3.0.15 (squid-2.0.STABLE15). Changes to squid-3.0.STABLE15 (06 May 2009): - Regression Bug 2635: Incorrect Max-Forwards header type - Bug 2652: 'Success' error on CONNECT requests - Bug 2625: IDENT receiving errors - Bug 2610: ipfilter support detection - Bug 2578: FTP download resume failure - Bug 2536: %H on HTTPS error pages - Bug 2491: assertion "age >= 0" - Bug 2276: too many NTLM helpers running - Endian system and compiler fixes provided by the NetBSD project - documentation fixes provided by the Debian project @ text @d1 1 a1 1 $NetBSD: patch-aa,v 1.3 2009/04/11 14:04:15 taca Exp $ d3 1 a3 1 Add DESTDIR support. d5 8 a12 4 --- Makefile.in.orig 2009-01-21 10:59:00.000000000 +0900 +++ Makefile.in @@@@ -770,8 +770,8 @@@@ dist-hook: fi d14 2 a15 8 install-pinger: - chown root $(DEFAULT_PINGER) - chmod 4711 $(DEFAULT_PINGER) + chown root $(DESTDIR)$(DEFAULT_PINGER) + chmod 4711 $(DESTDIR)$(DEFAULT_PINGER) all-am: @@echo "Build Successful." @ 1.3 log @Update squid30 package to 3.0.14 (3.0.STABLE14). * Add LICENSE. * ADd some comments to patch files. Changes to squid-3.0.STABLE14 (11 Apr 2009): - Regression Fix: HTTP/0.9 in accelerator mode - Bug 1232: cache_dir parameter limited to only 63 entries - Bug 1868: support HTTP 207 status - Bug 2518: assertion failure on restart/reconfigure - Bug 2588: coredump in rDNS lookup - Bug 2595: Out of bounds memory write in squid_kerb_auth - Bug 2599: Idempotent start - Bug 2605: Prevent setsid() on helpers in daemon mode - Fix external_acl_type option parsing - Fix delay pools counters on FTP - Fix several issues with ident (some remain) - Fix performance issues with persistent connections - Fix performance issues with delay pools - Fix forwarding of OPTIONS requests - Add support for HTTP 1.1 Content-Disposition header - Add support for Windows 7, Windows Server 2008 R2 and later - ... and many small documentation updates @ text @d1 1 a1 1 $NetBSD: patch-aa,v 1.2 2009/01/22 17:23:47 taca Exp $ @ 1.2 log @Update www/squid pacakge to 3.0.12(3.0.STABLE12). Changes to squid-3.0.STABLE12 (21 Jan 2009): - Bug 2533: Solaris (sparc) 64-bit build breaks with gcc/g++ - Bug 2542: ICAP filters break download resume - Bug 2556: HTCP fails without icp_port - Bug 2564: logformat '%tl' field not working as advertised - Port from 3.1: TestBed basic build consistency checks - Policy: Change half_closed_clients default to off - Policy: Removed -V command line option, deprecated by 2.6 - ... and several other minor code cleanups @ text @d1 3 a3 1 $NetBSD: patch-aa,v 1.1.1.1 2008/09/12 15:05:57 taca Exp $ @ 1.1 log @Initial revision @ text @d1 1 a1 1 $NetBSD$ d3 1 a3 1 --- Makefile.in.orig 2008-07-18 19:02:45.000000000 +0900 d5 1 a5 1 @@@@ -768,8 +768,8 @@@@ dist-hook: d12 4 a15 4 + chmod 4511 $(DESTDIR)$(DEFAULT_PINGER) # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: @ 1.1.1.1 log @Importing squid-3.0.9 (3.0.STABLE9) package as www/squid30, handles PR pkg/39188. New feature with Squid 3.0. * Code converted to C++, with significant internal restructuring and rewrites. * ICAP implementation (RFC 3507 and www.icap-forum.org) * Edge Side Includes (ESI) implementation (www.esi.org) Missing feature from squid 2.6 * refresh_stale_hit option. Not yet ported. * ability to follow X-Forwarded-For. Not yet ported. * Full caching of Vary/ETag using If-None-Match. Only basic Vary cache supported. Not yet ported. * Mapping of server error messages. Not yet ported. * http_access2 access directive. Not yet ported. * Location header rewrites. Not yet ported. * wais_relay. Feature dropped as it's equivalent to cache_peer + cache_peer_access. * urlgroup. Not yet ported. * collapsed forwarding. Not yet ported. * stable Windows support. Irregularly maintained. Currently, COSS backend support isn't available, too. @ text @@ 1.1.1.1.6.1 log @Pullup ticket #2686 - requested by taca squid30: security update Revisions pulled up: - www/squid30/Makefile 1.6-1.7 - www/squid30/distinfo 1.5-1.6 - www/squid30/patches/patch-aa 1.2 --- Module Name: pkgsrc Committed By: taca Date: Thu Jan 22 17:23:47 UTC 2009 Modified Files: pkgsrc/www/squid30: Makefile distinfo pkgsrc/www/squid30/patches: patch-aa Log Message: Update www/squid pacakge to 3.0.12(3.0.STABLE12). Changes to squid-3.0.STABLE12 (21 Jan 2009): - Bug 2533: Solaris (sparc) 64-bit build breaks with gcc/g++ - Bug 2542: ICAP filters break download resume - Bug 2556: HTCP fails without icp_port - Bug 2564: logformat '%tl' field not working as advertised - Port from 3.1: TestBed basic build consistency checks - Policy: Change half_closed_clients default to off - Policy: Removed -V command line option, deprecated by 2.6 - ... and several other minor code cleanups --- Module Name: pkgsrc Committed By: taca Date: Wed Feb 4 12:21:27 UTC 2009 Modified Files: pkgsrc/www/squid30: Makefile distinfo Log Message: Update squid30 package to 3.0.13 (3.0.STABLE13). Changes to squid-3.0.STABLE13 (03 Feb 2009): - Fix several issues in request parsing - Fix memory leak from logformat parsing - Fix various ESI build errors - ... and some documentation updates @ text @d3 1 a3 1 --- Makefile.in.orig 2009-01-21 10:59:00.000000000 +0900 d5 1 a5 1 @@@@ -770,8 +770,8 @@@@ dist-hook: d12 4 a15 4 + chmod 4711 $(DESTDIR)$(DEFAULT_PINGER) all-am: @@echo "Build Successful." @