comparison auto/options @ 394:05981f639d21 NGINX_0_7_9

nginx 0.7.9 *) Change: now ngx_http_charset_module works by default with following MIME types: text/html, text/css, text/xml, text/plain, text/vnd.wap.wml, application/x-javascript, and application/rss+xml. *) Feature: the "charset_types" and "addition_types" directives. *) Feature: now the "gzip_types", "ssi_types", and "sub_filter_types" directives use hash. *) Feature: the ngx_cpp_test_module. *) Feature: the "expires" directive supports daily time. *) Feature: the ngx_http_xslt_module improvements and bug fixing. Thanks to Denis F. Latypoff and Maxim Dounin. *) Bugfix: the "log_not_found" directive did not work for index files tests. *) Bugfix: HTTPS connections might hang, if kqueue, epoll, rtsig, or eventport methods were used; the bug had appeared in 0.7.7. *) Bugfix: if the "server_name", "valid_referers", and "map" directives used an "*.domain.tld" wildcard and exact name "domain.tld" was not set, then the exact name was matched by the wildcard; the bugs had appeared in 0.3.18.
author Igor Sysoev <http://sysoev.ru>
date Tue, 12 Aug 2008 00:00:00 +0400
parents 34fb3a573548
children 349057ecf4d5
comparison
equal deleted inserted replaced
393:040b8c84d040 394:05981f639d21
117 NGX_PERL=perl 117 NGX_PERL=perl
118 118
119 USE_LIBXSLT=NO 119 USE_LIBXSLT=NO
120 120
121 NGX_GOOGLE_PERFTOOLS=NO 121 NGX_GOOGLE_PERFTOOLS=NO
122 NGX_CPP_TEST=NO
122 123
123 NGX_CPU_CACHE_LINE= 124 NGX_CPU_CACHE_LINE=
124 125
125 126
126 for option 127 for option
206 --without-mail_pop3_module) MAIL_POP3=NO ;; 207 --without-mail_pop3_module) MAIL_POP3=NO ;;
207 --without-mail_imap_module) MAIL_IMAP=NO ;; 208 --without-mail_imap_module) MAIL_IMAP=NO ;;
208 --without-mail_smtp_module) MAIL_SMTP=NO ;; 209 --without-mail_smtp_module) MAIL_SMTP=NO ;;
209 210
210 --with-google_perftools_module) NGX_GOOGLE_PERFTOOLS=YES ;; 211 --with-google_perftools_module) NGX_GOOGLE_PERFTOOLS=YES ;;
212 --with-cpp_test_module) NGX_CPP_TEST_MODULE=YES ;;
211 213
212 --add-module=*) NGX_ADDONS="$NGX_ADDONS $value" ;; 214 --add-module=*) NGX_ADDONS="$NGX_ADDONS $value" ;;
213 215
214 --with-cc=*) CC="$value" ;; 216 --with-cc=*) CC="$value" ;;
215 --with-cpp=*) CPP="$value" ;; 217 --with-cpp=*) CPP="$value" ;;
325 --without-mail_pop3_module disable ngx_mail_pop3_module 327 --without-mail_pop3_module disable ngx_mail_pop3_module
326 --without-mail_imap_module disable ngx_mail_imap_module 328 --without-mail_imap_module disable ngx_mail_imap_module
327 --without-mail_smtp_module disable ngx_mail_smtp_module 329 --without-mail_smtp_module disable ngx_mail_smtp_module
328 330
329 --with-google_perftools_module enable ngx_google_perftools_module 331 --with-google_perftools_module enable ngx_google_perftools_module
332 --with-cpp_test_module enable ngx_cpp_test_module
330 333
331 --add-module=PATH enable an external module 334 --add-module=PATH enable an external module
332 335
333 --with-cc=PATH set path to C compiler 336 --with-cc=PATH set path to C compiler
334 --with-cpp=PATH set path to C preprocessor 337 --with-cpp=PATH set path to C preprocessor