aboutsummaryrefslogtreecommitdiff
path: root/www/squid30/files
diff options
context:
space:
mode:
authorBeech Rintoul <beech@FreeBSD.org>2008-04-05 00:01:19 +0000
committerBeech Rintoul <beech@FreeBSD.org>2008-04-05 00:01:19 +0000
commitfd719bb314e3649c94577b3e701f1c6ebb49b788 (patch)
tree2e406dfdd574018783ae3f3aaf6ee7943850af17 /www/squid30/files
parent6a349c04c44d53991a17a38400e7b3c0a221f94a (diff)
downloadports-fd719bb314e3649c94577b3e701f1c6ebb49b788.tar.gz
ports-fd719bb314e3649c94577b3e701f1c6ebb49b788.zip
Notes
Diffstat (limited to 'www/squid30/files')
-rw-r--r--www/squid30/files/patch-bug-220650
-rw-r--r--www/squid30/files/patch-configure21
2 files changed, 0 insertions, 71 deletions
diff --git a/www/squid30/files/patch-bug-2206 b/www/squid30/files/patch-bug-2206
deleted file mode 100644
index c6ab20f58013..000000000000
--- a/www/squid30/files/patch-bug-2206
+++ /dev/null
@@ -1,50 +0,0 @@
-Temporary patch for Squid bug 2206 ("no proxy Authenticate header in 407
-response") as fetched from Squid bugzilla 2008-03-26.
-
-See <http://www.squid-cache.org/bugs/show_bug_cgi?id=2206> for further
-information.
-=== modified file 'src/HttpHeader.cc'
---- src/HttpHeader.cc 2008-02-27 12:59:29 +0000
-+++ src/HttpHeader.cc 2008-03-12 20:53:15 +0000
-@@ -1806,5 +1806,7 @@
- }
- if (headers_deleted)
- refreshMask();
-+
-+ delById(HDR_CONNECTION);
- }
- }
-
-=== modified file 'src/HttpHeader.h'
---- src/HttpHeader.h 2008-02-27 12:59:29 +0000
-+++ src/HttpHeader.h 2008-03-12 20:53:56 +0000
-@@ -247,15 +247,13 @@
- int hasListMember(http_hdr_type id, const char *member, const char separator) const;
- int hasByNameListMember(const char *name, const char *member, const char separator) const;
- void removeHopByHopEntries();
-+ void removeConnectionHeaderEntries();
- /* protected, do not use these, use interface functions instead */
- Vector<HttpHeaderEntry *> entries; /* parsed fields in raw format */
- HttpHeaderMask mask; /* bit set <=> entry present */
- http_hdr_owner_type owner; /* request or reply */
- int len; /* length when packed, not counting terminating '\0' */
-
--protected:
-- void removeConnectionHeaderEntries();
--
- private:
- HttpHeaderEntry *findLastEntry(http_hdr_type id) const;
- // Make it non-copyable. Our destructor is a bit nasty...
-
-=== modified file 'src/client_side_reply.cc'
---- src/client_side_reply.cc 2008-02-27 12:59:29 +0000
-+++ src/client_side_reply.cc 2008-03-12 20:54:37 +0000
-@@ -1214,7 +1214,7 @@
- if (is_hit)
- hdr->delById(HDR_SET_COOKIE);
-
-- reply->header.removeHopByHopEntries();
-+ reply->header.removeConnectionHeaderEntries();
-
- // if (request->range)
- // clientBuildRangeHeader(http, reply);
diff --git a/www/squid30/files/patch-configure b/www/squid30/files/patch-configure
deleted file mode 100644
index 062409040677..000000000000
--- a/www/squid30/files/patch-configure
+++ /dev/null
@@ -1,21 +0,0 @@
-Patch for Squid bug #2203:
-
-LDFLAGS gets unset when --with-filedescriptors=n is added to
-SQUID_CONFIGURE_ARGS.
-
---- configure.orig 2008-03-26 21:16:54.000000000 +0100
-+++ configure 2008-03-26 21:18:40.000000000 +0100
-@@ -43819,12 +43819,12 @@
-
- { echo "$as_me:$LINENO: checking Maximum number of filedescriptors we can open" >&5
- echo $ECHO_N "checking Maximum number of filedescriptors we can open... $ECHO_C" >&6; }
-+TLDFLAGS="$LDFLAGS"
- if test -n "$squid_filedescriptors_num" ; then
- SQUID_MAXFD=$squid_filedescriptors_num
- { echo "$as_me:$LINENO: result: $SQUID_MAXFD (user-forced)" >&5
- echo "${ECHO_T}$SQUID_MAXFD (user-forced)" >&6; }
- else
-- TLDFLAGS="$LDFLAGS"
- case $host in
- i386-unknown-freebsd*)
- if echo "$LDFLAGS" | grep -q pthread; then