aboutsummaryrefslogtreecommitdiffstats
path: root/www/nginx-devel
diff options
context:
space:
mode:
authorosa <osa@FreeBSD.org>2011-03-16 01:03:11 +0800
committerosa <osa@FreeBSD.org>2011-03-16 01:03:11 +0800
commit34fbe7263106c6dac8fc93c46da9b77213233cc6 (patch)
tree9cf78f6f8f464db6e7b801ef6c0d464e57e62a13 /www/nginx-devel
parent47ba1af670705ff8e0b096f93212dac4c2e0afa9 (diff)
downloadfreebsd-ports-gnome-34fbe7263106c6dac8fc93c46da9b77213233cc6.tar.gz
freebsd-ports-gnome-34fbe7263106c6dac8fc93c46da9b77213233cc6.tar.zst
freebsd-ports-gnome-34fbe7263106c6dac8fc93c46da9b77213233cc6.zip
Switch IPv6 support on by default.
Bump PORTREVISIONs. Spotted by: tom
Diffstat (limited to 'www/nginx-devel')
-rw-r--r--www/nginx-devel/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/www/nginx-devel/Makefile b/www/nginx-devel/Makefile
index a298de464b7a..f7c02fb8c8c3 100644
--- a/www/nginx-devel/Makefile
+++ b/www/nginx-devel/Makefile
@@ -7,7 +7,7 @@
PORTNAME= nginx
PORTVERSION= 0.9.5
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= www
MASTER_SITES= http://sysoev.ru/nginx/
MASTER_SITES+= ${MASTER_SITE_LOCAL}
@@ -23,7 +23,7 @@ LICENSE= BSD
OPTIONS= DEBUG "Enable nginx debugging" off \
DEBUGLOG "Enable debug log (--with-debug)" off \
FILE_AIO "Enable file aio" off \
- IPV6 "Enable IPv6" off \
+ IPV6 "Enable IPv6" on \
GOOGLE_PERFTOOLS "Enable google perftools module" off \
HTTP_MODULE "Enable HTTP module" on \
HTTP_ADDITION_MODULE "Enable http_addition module" off \
@@ -132,7 +132,7 @@ CONFIGURE_ARGS+=--with-debug
CONFIGURE_ARGS+=--with-file-aio
.endif
-.if defined(WITH_IPV6)
+.if !defined(WITHOUT_IPV6)
CONFIGURE_ARGS+=--with-ipv6
CATEGORIES+= ipv6
.endif