summaryrefslogtreecommitdiff
path: root/www/apache13
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>2006-05-10 13:57:18 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>2006-05-10 13:57:18 +0000
commit978d1b72307d11a2d350cb39e033d8cf7adb4294 (patch)
tree136e2fed2facc8a7773f77085557af962b52c061 /www/apache13
parentThere are other ports that install stuff into (diff)
Upgrade to 1.3.35
Notes
Notes: svn path=/head/; revision=161926
Diffstat (limited to 'www/apache13')
-rw-r--r--www/apache13/Makefile5
-rw-r--r--www/apache13/distinfo6
-rw-r--r--www/apache13/files/patch-secfix-CAN-2005-335235
3 files changed, 5 insertions, 41 deletions
diff --git a/www/apache13/Makefile b/www/apache13/Makefile
index a8b4e8d88400..9dce2ebe9d82 100644
--- a/www/apache13/Makefile
+++ b/www/apache13/Makefile
@@ -6,14 +6,13 @@
#
PORTNAME= apache
-PORTVERSION= 1.3.34
-PORTREVISION= 4
+PORTVERSION= 1.3.35
CATEGORIES= www
MASTER_SITES= ${MASTER_SITE_APACHE_HTTPD}
DISTNAME= apache_${PORTVERSION}
#PATCH_SITES= ${MASTER_SITE_APACHE_HTTPD}
-#PATCH_SITE_SUBDIR= patches/apply_to_1.3.34/
+#PATCH_SITE_SUBDIR= patches/apply_to_1.3.35/
#PATCHFILES=
#PATCH_DIST_ARGS= -d ${WRKSRC}/src --forward --quiet -E ${PATCH_DIST_STRIP}
diff --git a/www/apache13/distinfo b/www/apache13/distinfo
index 71659d647496..f60d5e0cd8ca 100644
--- a/www/apache13/distinfo
+++ b/www/apache13/distinfo
@@ -1,3 +1,3 @@
-MD5 (apache_1.3.34.tar.gz) = 9978cc552b423f0015c1052d23ab619e
-SHA256 (apache_1.3.34.tar.gz) = ceed243f4f98e4323b48e5f7f80e306d1abb00c592e18de5575983db42d6f8d4
-SIZE (apache_1.3.34.tar.gz) = 2468056
+MD5 (apache_1.3.35.tar.gz) = 31f99663028828a8b56633e255ee634e
+SHA256 (apache_1.3.35.tar.gz) = ec9d1822cd275622776d8013abd0f533eb29d4f78d0a39c98ececef2a2c964fd
+SIZE (apache_1.3.35.tar.gz) = 2472434
diff --git a/www/apache13/files/patch-secfix-CAN-2005-3352 b/www/apache13/files/patch-secfix-CAN-2005-3352
deleted file mode 100644
index 8febc0e58935..000000000000
--- a/www/apache13/files/patch-secfix-CAN-2005-3352
+++ /dev/null
@@ -1,35 +0,0 @@
---- src/main/util.c (original)
-+++ src/main/util.c Mon Dec 12 08:36:54 2005
-@@ -1722,6 +1722,8 @@
- j += 3;
- else if (s[i] == '&')
- j += 4;
-+ else if (s[i] == '"')
-+ j += 5;
-
- if (j == 0)
- return ap_pstrndup(p, s, i);
-@@ -1739,6 +1741,10 @@
- else if (s[i] == '&') {
- memcpy(&x[j], "&amp;", 5);
- j += 4;
-+ }
-+ else if (s[i] == '"') {
-+ memcpy(&x[j], "&quot;", 6);
-+ j += 5;
- }
- else
- x[j] = s[i];
-
---- src/modules/standard/mod_imap.c (original)
-+++ src/modules/standard/mod_imap.c Mon Dec 12 08:36:54 2005
-@@ -328,7 +328,7 @@
- if (!strcasecmp(value, "referer")) {
- referer = ap_table_get(r->headers_in, "Referer");
- if (referer && *referer) {
-- return ap_pstrdup(r->pool, referer);
-+ return ap_escape_html(r->pool, referer);
- }
- else {
- /* XXX: This used to do *value = '\0'; ... which is totally bogus
-