comparison auto/options @ 554:5c576ea5dbd9 NGINX_0_8_29

nginx 0.8.29 *) Change: now the "009" status code is written to an access log for proxied HTTP/0.9 responses. *) Feature: the "addition_types", "charset_types", "gzip_types", "ssi_types", "sub_filter_types", and "xslt_types" directives support an "*" parameter. *) Feature: GCC 4.1+ built-in atomic operations usage. Thanks to W-Mark Kubacki. *) Feature: the --with-libatomic[=DIR] option in the configure. Thanks to W-Mark Kubacki. *) Bugfix: listen unix domain socket had limited access rights. *) Bugfix: cached HTTP/0.9 responses were handled incorrectly. *) Bugfix: regular expression named captures given by "?P<...>" did not work in a "server_name" directive. Thanks to Maxim Dounin.
author Igor Sysoev <http://sysoev.ru>
date Mon, 30 Nov 2009 00:00:00 +0300
parents e19e5f542878
children 8246d8a2c2be
comparison
equal deleted inserted replaced
553:63dde5a94756 554:5c576ea5dbd9
130 USE_LIBGD=NO 130 USE_LIBGD=NO
131 131
132 NGX_GOOGLE_PERFTOOLS=NO 132 NGX_GOOGLE_PERFTOOLS=NO
133 NGX_CPP_TEST=NO 133 NGX_CPP_TEST=NO
134 134
135 NGX_LIBATOMIC=NO
136
135 NGX_CPU_CACHE_LINE= 137 NGX_CPU_CACHE_LINE=
136 138
137 opt= 139 opt=
138 140
139 for option 141 for option
264 266
265 --with-zlib=*) ZLIB="$value" ;; 267 --with-zlib=*) ZLIB="$value" ;;
266 --with-zlib-opt=*) ZLIB_OPT="$value" ;; 268 --with-zlib-opt=*) ZLIB_OPT="$value" ;;
267 --with-zlib-asm=*) ZLIB_ASM="$value" ;; 269 --with-zlib-asm=*) ZLIB_ASM="$value" ;;
268 270
271 --with-libatomic) NGX_LIBATOMIC=YES ;;
272 --with-libatomic=*) NGX_LIBATOMIC="$value" ;;
273
269 --test-build-devpoll) NGX_TEST_BUILD_DEVPOLL=YES ;; 274 --test-build-devpoll) NGX_TEST_BUILD_DEVPOLL=YES ;;
270 --test-build-eventport) NGX_TEST_BUILD_EVENTPORT=YES ;; 275 --test-build-eventport) NGX_TEST_BUILD_EVENTPORT=YES ;;
271 --test-build-epoll) NGX_TEST_BUILD_EPOLL=YES ;; 276 --test-build-epoll) NGX_TEST_BUILD_EPOLL=YES ;;
272 --test-build-rtsig) NGX_TEST_BUILD_RTSIG=YES ;; 277 --test-build-rtsig) NGX_TEST_BUILD_RTSIG=YES ;;
273 --test-build-solaris-sendfilev) NGX_TEST_BUILD_SOLARIS_SENDFILEV=YES ;; 278 --test-build-solaris-sendfilev) NGX_TEST_BUILD_SOLARIS_SENDFILEV=YES ;;
398 --with-zlib-opt=OPTIONS set additional options for zlib building 403 --with-zlib-opt=OPTIONS set additional options for zlib building
399 --with-zlib-asm=CPU use zlib assembler sources optimized 404 --with-zlib-asm=CPU use zlib assembler sources optimized
400 for specified CPU, the valid values: 405 for specified CPU, the valid values:
401 pentium, pentiumpro 406 pentium, pentiumpro
402 407
408 --with-libatomic force libatomic_ops library usage
409 --with-libatomic=DIR set path to libatomic_ops library sources
410
403 --with-openssl=DIR set path to OpenSSL library sources 411 --with-openssl=DIR set path to OpenSSL library sources
404 --with-openssl-opt=OPTIONS set additional options for OpenSSL building 412 --with-openssl-opt=OPTIONS set additional options for OpenSSL building
405 413
406 --with-debug enable the debugging logging 414 --with-debug enable the debugging logging
407 415