summaryrefslogtreecommitdiffhomepage
path: root/auto/options
diff options
context:
space:
mode:
authorMaxim Dounin <mdounin@mdounin.ru>2016-10-04 16:38:14 +0300
committerMaxim Dounin <mdounin@mdounin.ru>2016-10-04 16:38:14 +0300
commit2c84f7af2c97a55bf138a5fcedeb164733dc9bea (patch)
treec50b44dcc2152f0f90cdeeb754a8c7270ba904a5 /auto/options
parent967ebbec321b1daa6632ab843b2dd2346a9fa8d0 (diff)
downloadnginx-2c84f7af2c97a55bf138a5fcedeb164733dc9bea.tar.gz
nginx-2c84f7af2c97a55bf138a5fcedeb164733dc9bea.tar.bz2
Configure: removed the --with-ipv6 option.
IPv6 now compiled-in automatically if support is found. If there is a need to disable it for some reason, --with-cc-opt="-DNGX_HAVE_INET6=0" can be used for this.
Diffstat (limited to 'auto/options')
-rw-r--r--auto/options8
1 files changed, 5 insertions, 3 deletions
diff --git a/auto/options b/auto/options
index c5b39abe9..43724b1e6 100644
--- a/auto/options
+++ b/auto/options
@@ -44,7 +44,6 @@ EVENT_POLL=NO
USE_THREADS=NO
NGX_FILE_AIO=NO
-NGX_IPV6=NO
HTTP=YES
@@ -204,7 +203,11 @@ do
--with-threads) USE_THREADS=YES ;;
--with-file-aio) NGX_FILE_AIO=YES ;;
- --with-ipv6) NGX_IPV6=YES ;;
+
+ --with-ipv6)
+ NGX_POST_CONF_MSG="$NGX_POST_CONF_MSG
+$0: warning: the \"--with-ipv6\" option is deprecated"
+ ;;
--without-http) HTTP=NO ;;
--without-http-cache) HTTP_CACHE=NO ;;
@@ -424,7 +427,6 @@ cat << END
--with-threads enable thread pool support
--with-file-aio enable file AIO support
- --with-ipv6 enable IPv6 support
--with-http_ssl_module enable ngx_http_ssl_module
--with-http_v2_module enable ngx_http_v2_module