diff options
author | Sergey A. Osokin <osa@FreeBSD.org> | 2011-03-15 17:03:11 +0000 |
---|---|---|
committer | Sergey A. Osokin <osa@FreeBSD.org> | 2011-03-15 17:03:11 +0000 |
commit | 8a2ef93bc8753d8ebdd2ac5b6f070a702dd69bcf (patch) | |
tree | ab0c58f874ce312d25e5fd472d1f9b317b7e7c63 /www | |
parent | - Chase x11-toolkits/fox16 shlib bump (diff) |
Switch IPv6 support on by default.
Bump PORTREVISIONs.
Spotted by: tom
Notes
Notes:
svn path=/head/; revision=270956
Diffstat (limited to 'www')
-rw-r--r-- | www/nginx-devel/Makefile | 6 | ||||
-rw-r--r-- | www/nginx/Makefile | 6 |
2 files changed, 6 insertions, 6 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 diff --git a/www/nginx/Makefile b/www/nginx/Makefile index 0bf20b137a65..319b2bd7dc08 100644 --- a/www/nginx/Makefile +++ b/www/nginx/Makefile @@ -7,7 +7,7 @@ PORTNAME= nginx PORTVERSION= 0.8.54 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= http://sysoev.ru/nginx/ MASTER_SITES+= ${MASTER_SITE_LOCAL} @@ -22,7 +22,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 \ @@ -133,7 +133,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 |