@@ -44,7 +44,6 @@ EVENT_POLL=NO
4444USE_THREADS=NO
4545
4646NGX_FILE_AIO=NO
47- NGX_IPV6=NO
4847
4948HTTP=YES
5049
@@ -126,13 +125,16 @@ STREAM_RETURN=YES
126125STREAM_UPSTREAM_HASH=YES
127126STREAM_UPSTREAM_LEAST_CONN=YES
128127STREAM_UPSTREAM_ZONE=YES
128+ STREAM_SSL_PREREAD=NO
129129
130130DYNAMIC_MODULES=
131131
132132NGX_ADDONS=
133133NGX_ADDON_DEPS=
134134DYNAMIC_ADDONS=
135135
136+ NGX_COMPAT=NO
137+
136138USE_PCRE=NO
137139PCRE=NONE
138140PCRE_OPT=
201203 --with-threads) USE_THREADS=YES ;;
202204
203205 --with-file-aio) NGX_FILE_AIO=YES ;;
204- --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+ ;;
205211
206212 --without-http) HTTP=NO ;;
207213 --without-http-cache) HTTP_CACHE=NO ;;
@@ -301,6 +307,8 @@ use the \"--with-mail_ssl_module\" option instead"
301307 --with-stream_geoip_module) STREAM_GEOIP=YES ;;
302308 --with-stream_geoip_module=dynamic)
303309 STREAM_GEOIP=DYNAMIC ;;
310+ --with-stream_ssl_preread_module)
311+ STREAM_SSL_PREREAD=YES ;;
304312 --without-stream_limit_conn_module)
305313 STREAM_LIMIT_CONN=NO ;;
306314 --without-stream_access_module) STREAM_ACCESS=NO ;;
@@ -322,6 +330,8 @@ use the \"--with-mail_ssl_module\" option instead"
322330 --add-module=*) NGX_ADDONS="$NGX_ADDONS $value" ;;
323331 --add-dynamic-module=*) DYNAMIC_ADDONS="$DYNAMIC_ADDONS $value" ;;
324332
333+ --with-compat) NGX_COMPAT=YES ;;
334+
325335 --with-cc=*) CC="$value" ;;
326336 --with-cpp=*) CPP="$value" ;;
327337 --with-cc-opt=*) NGX_CC_OPT="$value" ;;
@@ -417,7 +427,6 @@ cat << END
417427 --with-threads enable thread pool support
418428
419429 --with-file-aio enable file AIO support
420- --with-ipv6 enable IPv6 support
421430
422431 --with-http_ssl_module enable ngx_http_ssl_module
423432 --with-http_v2_module enable ngx_http_v2_module
@@ -508,6 +517,7 @@ cat << END
508517 --with-stream_realip_module enable ngx_stream_realip_module
509518 --with-stream_geoip_module enable ngx_stream_geoip_module
510519 --with-stream_geoip_module=dynamic enable dynamic ngx_stream_geoip_module
520+ --with-stream_ssl_preread_module enable ngx_stream_ssl_preread_module
511521 --without-stream_limit_conn_module disable ngx_stream_limit_conn_module
512522 --without-stream_access_module disable ngx_stream_access_module
513523 --without-stream_geo_module disable ngx_stream_geo_module
@@ -528,6 +538,8 @@ cat << END
528538 --add-module=PATH enable external module
529539 --add-dynamic-module=PATH enable dynamic external module
530540
541+ --with-compat dynamic modules compatibility
542+
531543 --with-cc=PATH set C compiler pathname
532544 --with-cpp=PATH set C preprocessor pathname
533545 --with-cc-opt=OPTIONS set additional C compiler options
0 commit comments