comparison auto/options @ 6115:61d7ae76647d

Stream: port from NGINX+.
author Ruslan Ermilov <ru@nginx.com>
date Mon, 20 Apr 2015 13:05:11 +0300
parents 79ddb0bdb273
children 4dc8e7b62216
comparison
equal deleted inserted replaced
6114:4a640716f4e2 6115:61d7ae76647d
112 MAIL_SSL=NO 112 MAIL_SSL=NO
113 MAIL_POP3=YES 113 MAIL_POP3=YES
114 MAIL_IMAP=YES 114 MAIL_IMAP=YES
115 MAIL_SMTP=YES 115 MAIL_SMTP=YES
116 116
117 STREAM=NO
118 STREAM_SSL=NO
119 STREAM_UPSTREAM_HASH=YES
120 STREAM_UPSTREAM_LEAST_CONN=YES
121 STREAM_UPSTREAM_ZONE=YES
122
117 NGX_ADDONS= 123 NGX_ADDONS=
118 124
119 USE_PCRE=NO 125 USE_PCRE=NO
120 PCRE=NONE 126 PCRE=NONE
121 PCRE_OPT= 127 PCRE_OPT=
273 --with-imap_ssl_module) MAIL_SSL=YES ;; 279 --with-imap_ssl_module) MAIL_SSL=YES ;;
274 --without-mail_pop3_module) MAIL_POP3=NO ;; 280 --without-mail_pop3_module) MAIL_POP3=NO ;;
275 --without-mail_imap_module) MAIL_IMAP=NO ;; 281 --without-mail_imap_module) MAIL_IMAP=NO ;;
276 --without-mail_smtp_module) MAIL_SMTP=NO ;; 282 --without-mail_smtp_module) MAIL_SMTP=NO ;;
277 283
284 --with-stream) STREAM=YES ;;
285 --with-stream_ssl_module) STREAM_SSL=YES ;;
286 --without-stream_upstream_hash_module)
287 STREAM_UPSTREAM_HASH=NO ;;
288 --without-stream_upstream_least_conn_module)
289 STREAM_UPSTREAM_LEAST_CONN=NO ;;
290 --without-stream_upstream_zone_module)
291 STREAM_UPSTREAM_ZONE=NO ;;
292
278 --with-google_perftools_module) NGX_GOOGLE_PERFTOOLS=YES ;; 293 --with-google_perftools_module) NGX_GOOGLE_PERFTOOLS=YES ;;
279 --with-cpp_test_module) NGX_CPP_TEST=YES ;; 294 --with-cpp_test_module) NGX_CPP_TEST=YES ;;
280 295
281 --add-module=*) NGX_ADDONS="$NGX_ADDONS $value" ;; 296 --add-module=*) NGX_ADDONS="$NGX_ADDONS $value" ;;
282 297
434 --with-mail_ssl_module enable ngx_mail_ssl_module 449 --with-mail_ssl_module enable ngx_mail_ssl_module
435 --without-mail_pop3_module disable ngx_mail_pop3_module 450 --without-mail_pop3_module disable ngx_mail_pop3_module
436 --without-mail_imap_module disable ngx_mail_imap_module 451 --without-mail_imap_module disable ngx_mail_imap_module
437 --without-mail_smtp_module disable ngx_mail_smtp_module 452 --without-mail_smtp_module disable ngx_mail_smtp_module
438 453
454 --with-stream enable TCP proxy module
455 --with-stream_ssl_module enable ngx_stream_ssl_module
456 --without-stream_upstream_hash_module
457 disable ngx_stream_upstream_hash_module
458 --without-stream_upstream_least_conn_module
459 disable ngx_stream_upstream_least_conn_module
460 --without-stream_upstream_zone_module
461 disable ngx_stream_upstream_zone_module
462
439 --with-google_perftools_module enable ngx_google_perftools_module 463 --with-google_perftools_module enable ngx_google_perftools_module
440 --with-cpp_test_module enable ngx_cpp_test_module 464 --with-cpp_test_module enable ngx_cpp_test_module
441 465
442 --add-module=PATH enable an external module 466 --add-module=PATH enable an external module
443 467