diff options
author | mm <mm@FreeBSD.org> | 2012-07-19 02:32:10 +0800 |
---|---|---|
committer | mm <mm@FreeBSD.org> | 2012-07-19 02:32:10 +0800 |
commit | 24d5a746a3e6bd0012d444d6ba1e929225efdfba (patch) | |
tree | 4d4e20d3641042ca000dbaa81ee26a7d4ecdee04 /www | |
parent | c447fdfde4f877e832bc9e22ea820e553b4a9705 (diff) | |
download | freebsd-ports-gnome-24d5a746a3e6bd0012d444d6ba1e929225efdfba.tar.gz freebsd-ports-gnome-24d5a746a3e6bd0012d444d6ba1e929225efdfba.tar.zst freebsd-ports-gnome-24d5a746a3e6bd0012d444d6ba1e929225efdfba.zip |
Fix IPv6 support broken in last update
PR: ports/169931
Reported by: Arnaud Houdelette
Diffstat (limited to 'www')
-rw-r--r-- | www/lighttpd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/lighttpd/Makefile b/www/lighttpd/Makefile index f033b9d851e9..1a1ab0e6eaef 100644 --- a/www/lighttpd/Makefile +++ b/www/lighttpd/Makefile @@ -7,7 +7,7 @@ PORTNAME?= lighttpd PORTVERSION= 1.4.31 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES?= www MASTER_SITES?= http://download.lighttpd.net/lighttpd/releases-1.4.x/ @@ -120,7 +120,7 @@ LIB_DEPENDS+= gdbm:${PORTSDIR}/databases/gdbm CONFIGURE_ARGS+= --with-gdbm .endif -.if ${PORT_OPTIONS:MIPV6} +.if empty(PORT_OPTIONS:MIPV6) CONFIGURE_ARGS+= --disable-ipv6 .endif |