diff options
author | itojun <itojun@pkgsrc.org> | 2001-07-16 15:41:51 +0000 |
---|---|---|
committer | itojun <itojun@pkgsrc.org> | 2001-07-16 15:41:51 +0000 |
commit | 624810e7256a1692d4f8062cd13551b1f33bd87a (patch) | |
tree | a81e1dff61aa31390eac80209b68e2b8a81f8fad /www | |
parent | 2c5ab1affe98d3d7727d88b9c7d1418e352a8b58 (diff) | |
download | pkgsrc-624810e7256a1692d4f8062cd13551b1f33bd87a.tar.gz |
listen to both IPv4 and IPv6 wildcard by default.
workarounds PR12655.
Diffstat (limited to 'www')
-rw-r--r-- | www/apache6/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/www/apache6/Makefile b/www/apache6/Makefile index 2bc446ff339..80e31a0be22 100644 --- a/www/apache6/Makefile +++ b/www/apache6/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.32 2001/07/13 07:09:25 jlam Exp $ +# $NetBSD: Makefile,v 1.33 2001/07/16 15:41:51 itojun Exp $ # # This package does not compile in mod_ssl support hooks, as it conflicts # with IPv6-enable patch. @@ -122,6 +122,9 @@ post-patch: || ( ${ECHO} "Patch $${file} failed" ; exit 1 ) ; \ done ${CHMOD} +x ${CONFIGURE_SCRIPT} + cp ${WRKSRC}/conf/httpd.conf-dist ${WRKSRC}/conf/httpd.conf-dist- + ${SED} -e 's/#Listen ::/Listen ::/' -e 's/#Listen 0.0.0.0/Listen 0.0.0.0/' \ + <${WRKSRC}/conf/httpd.conf-dist- >${WRKSRC}/conf/httpd.conf-dist pre-configure: ${SED} ${FILES_SUBST_SED} \ |