comparison auto/options @ 336:1c519aff5c0c NGINX_0_6_12

nginx 0.6.12 *) Change: mail proxy was split on three modules: pop3, imap and smtp. *) Feature: the --without-mail_pop3_module, --without-mail_imap_module, and --without-mail_smtp_module configuration parameters. *) Feature: the "smtp_greeting_delay" and "smtp_client_buffer" directives of the ngx_mail_smtp_module. *) Bugfix: the trailing wildcards did not work; bug appeared in 0.6.9. *) Bugfix: nginx could not start on Solaris if the shared PCRE library located in non-standard place was used. *) Bugfix: the "proxy_hide_header" and "fastcgi_hide_header" directives did not hide response header lines whose name was longer than 32 characters. Thanks to Manlio Perillo.
author Igor Sysoev <http://sysoev.ru>
date Fri, 21 Sep 2007 00:00:00 +0400
parents 9fc4ab6673f9
children cac46d125dc7
comparison
equal deleted inserted replaced
335:9a32ae248b7a 336:1c519aff5c0c
20 20
21 NGX_DEBUG=NO 21 NGX_DEBUG=NO
22 NGX_CC_OPT= 22 NGX_CC_OPT=
23 NGX_LD_OPT= 23 NGX_LD_OPT=
24 CPU=NO 24 CPU=NO
25
26 NGX_RPATH=NO
25 27
26 NGX_TEST_BUILD_DEVPOLL=NO 28 NGX_TEST_BUILD_DEVPOLL=NO
27 NGX_TEST_BUILD_EVENTPORT=NO 29 NGX_TEST_BUILD_EVENTPORT=NO
28 NGX_TEST_BUILD_EPOLL=NO 30 NGX_TEST_BUILD_EPOLL=NO
29 NGX_TEST_BUILD_RTSIG=NO 31 NGX_TEST_BUILD_RTSIG=NO
79 # STUB 81 # STUB
80 HTTP_STUB_STATUS=NO 82 HTTP_STUB_STATUS=NO
81 83
82 MAIL=NO 84 MAIL=NO
83 MAIL_SSL=NO 85 MAIL_SSL=NO
86 MAIL_POP3=YES
87 MAIL_IMAP=YES
88 MAIL_SMTP=YES
84 89
85 NGX_ADDONS= 90 NGX_ADDONS=
86 91
87 USE_PCRE=NO 92 USE_PCRE=NO
88 PCRE=NONE 93 PCRE=NONE
188 --with-mail) MAIL=YES ;; 193 --with-mail) MAIL=YES ;;
189 --with-mail_ssl_module) MAIL_SSL=YES ;; 194 --with-mail_ssl_module) MAIL_SSL=YES ;;
190 # STUB 195 # STUB
191 --with-imap) MAIL=YES ;; 196 --with-imap) MAIL=YES ;;
192 --with-imap_ssl_module) MAIL_SSL=YES ;; 197 --with-imap_ssl_module) MAIL_SSL=YES ;;
198 --without-mail_pop3_module) MAIL_POP3=NO ;;
199 --without-mail_imap_module) MAIL_IMAP=NO ;;
200 --without-mail_smtp_module) MAIL_SMTP=NO ;;
193 201
194 --add-module=*) NGX_ADDONS="$NGX_ADDONS $value" ;; 202 --add-module=*) NGX_ADDONS="$NGX_ADDONS $value" ;;
195 203
196 --with-cc=*) CC="$value" ;; 204 --with-cc=*) CC="$value" ;;
197 --with-cpp=*) CPP="$value" ;; 205 --with-cpp=*) CPP="$value" ;;