summaryrefslogtreecommitdiff
path: root/www/apache13+ipv6
diff options
context:
space:
mode:
authorMunechika SUMIKAWA <sumikawa@FreeBSD.org>2001-07-31 05:25:08 +0000
committerMunechika SUMIKAWA <sumikawa@FreeBSD.org>2001-07-31 05:25:08 +0000
commitf9c18e7986a29e9c843fa28f50dbb49153ee9e15 (patch)
treecdb3358b8c269154b5a6b3724979370e29ce6507 /www/apache13+ipv6
parentUpdate to 4.78. (diff)
- Upgrade to 1.3.20.
- IPv6 patch will be maintained at ftp://ftp.piuha.net/pub/misc/ Submitted by: Martti Kuparinen <martti@v6lab.net>
Notes
Notes: svn path=/head/; revision=45646
Diffstat (limited to 'www/apache13+ipv6')
-rw-r--r--www/apache13+ipv6/Makefile7
-rw-r--r--www/apache13+ipv6/distinfo4
-rw-r--r--www/apache13+ipv6/files/patch-util.c31
3 files changed, 5 insertions, 37 deletions
diff --git a/www/apache13+ipv6/Makefile b/www/apache13+ipv6/Makefile
index 74b34fb4215e..f44b64fdaf24 100644
--- a/www/apache13+ipv6/Makefile
+++ b/www/apache13+ipv6/Makefile
@@ -6,8 +6,7 @@
#
PORTNAME= apache+ipv6
-PORTVERSION= 1.3.19
-PORTREVISION= 4
+PORTVERSION= 1.3.20
CATEGORIES= www ipv6
MASTER_SITES= http://httpd.apache.org/dist/httpd/ \
ftp://ftp.ccs.neu.edu/net/mirrors/ftp.apache.org/apache/dist/httpd/ \
@@ -26,8 +25,8 @@ MASTER_SITES= http://httpd.apache.org/dist/httpd/ \
ftp://apache.nextpath.com/pub/apache/dist/httpd/
DISTNAME= apache_${PORTVERSION}
-PATCH_SITES= ftp://ftp.kame.net/pub/kame/misc/
-PATCHFILES= apache-1.3.19-v6-20010309a.diff.gz
+PATCH_SITES= ftp://ftp.piuha.net/pub/misc/
+PATCHFILES= apache-1.3.20-v6-20010724.diff.gz
PATCH_DIST_STRIP= -p1
MAINTAINER= sumikawa@FreeBSD.org
diff --git a/www/apache13+ipv6/distinfo b/www/apache13+ipv6/distinfo
index 3ae0d17c9c42..b0f09ddac17a 100644
--- a/www/apache13+ipv6/distinfo
+++ b/www/apache13+ipv6/distinfo
@@ -1,2 +1,2 @@
-MD5 (apache_1.3.19.tar.gz) = e9b12b6fbf9a566110f09ac1f3791855
-MD5 (apache-1.3.19-v6-20010309a.diff.gz) = fcee30724e14c403ab66e4db92b8ea8f
+MD5 (apache_1.3.20.tar.gz) = d58d373b5f528a61a3490daec5e8f91f
+MD5 (apache-1.3.20-v6-20010724.diff.gz) = 6da584790611f7ff8b7bcde3a1d634dc
diff --git a/www/apache13+ipv6/files/patch-util.c b/www/apache13+ipv6/files/patch-util.c
deleted file mode 100644
index 4c5b12a638a5..000000000000
--- a/www/apache13+ipv6/files/patch-util.c
+++ /dev/null
@@ -1,31 +0,0 @@
---- src/main/util.c.orig Mon Apr 2 13:21:27 2001
-+++ src/main/util.c Mon Apr 2 13:21:28 2001
-@@ -2048,12 +2048,14 @@
- int x;
-
- if (!strchr(p->h_name, '.')) {
-- for (x = 0; p->h_aliases[x]; ++x) {
-- if (strchr(p->h_aliases[x], '.') &&
-- (!strncasecmp(p->h_aliases[x], p->h_name, strlen(p->h_name))))
-- return ap_pstrdup(a, p->h_aliases[x]);
-- }
-- return NULL;
-+ if (p->h_aliases) {
-+ for (x = 0; p->h_aliases[x]; ++x) {
-+ if (p->h_aliases[x] && strchr(p->h_aliases[x], '.') &&
-+ (!strncasecmp(p->h_aliases[x], p->h_name, strlen(p->h_name))))
-+ return ap_pstrdup(a, p->h_aliases[x]);
-+ }
-+ }
-+ return NULL;
- }
- return ap_pstrdup(a, (void *) p->h_name);
- }
-@@ -2077,7 +2079,6 @@
- ap_log_error(APLOG_MARK, APLOG_WARNING, NULL,
- "%s: gethostname() failed to determine ServerName\n",
- ap_server_argv0);
-- server_hostname = ap_pstrdup(a, "127.0.0.1");
- }
- else
- {