comparison auto/options @ 6724:a6d116645c51

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.
author Maxim Dounin <mdounin@mdounin.ru>
date Tue, 04 Oct 2016 16:38:14 +0300
parents 57c8e12c460c
children 4d874b4d82ed
comparison
equal deleted inserted replaced
6723:ebba2f980489 6724:a6d116645c51
42 EVENT_POLL=NO 42 EVENT_POLL=NO
43 43
44 USE_THREADS=NO 44 USE_THREADS=NO
45 45
46 NGX_FILE_AIO=NO 46 NGX_FILE_AIO=NO
47 NGX_IPV6=NO
48 47
49 HTTP=YES 48 HTTP=YES
50 49
51 NGX_HTTP_LOG_PATH= 50 NGX_HTTP_LOG_PATH=
52 NGX_HTTP_CLIENT_TEMP_PATH= 51 NGX_HTTP_CLIENT_TEMP_PATH=
202 --without-poll_module) EVENT_POLL=NONE ;; 201 --without-poll_module) EVENT_POLL=NONE ;;
203 202
204 --with-threads) USE_THREADS=YES ;; 203 --with-threads) USE_THREADS=YES ;;
205 204
206 --with-file-aio) NGX_FILE_AIO=YES ;; 205 --with-file-aio) NGX_FILE_AIO=YES ;;
207 --with-ipv6) NGX_IPV6=YES ;; 206
207 --with-ipv6)
208 NGX_POST_CONF_MSG="$NGX_POST_CONF_MSG
209 $0: warning: the \"--with-ipv6\" option is deprecated"
210 ;;
208 211
209 --without-http) HTTP=NO ;; 212 --without-http) HTTP=NO ;;
210 --without-http-cache) HTTP_CACHE=NO ;; 213 --without-http-cache) HTTP_CACHE=NO ;;
211 214
212 --http-log-path=*) NGX_HTTP_LOG_PATH="$value" ;; 215 --http-log-path=*) NGX_HTTP_LOG_PATH="$value" ;;
422 --without-poll_module disable poll module 425 --without-poll_module disable poll module
423 426
424 --with-threads enable thread pool support 427 --with-threads enable thread pool support
425 428
426 --with-file-aio enable file AIO support 429 --with-file-aio enable file AIO support
427 --with-ipv6 enable IPv6 support
428 430
429 --with-http_ssl_module enable ngx_http_ssl_module 431 --with-http_ssl_module enable ngx_http_ssl_module
430 --with-http_v2_module enable ngx_http_v2_module 432 --with-http_v2_module enable ngx_http_v2_module
431 --with-http_realip_module enable ngx_http_realip_module 433 --with-http_realip_module enable ngx_http_realip_module
432 --with-http_addition_module enable ngx_http_addition_module 434 --with-http_addition_module enable ngx_http_addition_module