comparison auto/options @ 202:ca5f86d94316 NGINX_0_3_48

nginx 0.3.48 *) Change: now the ngx_http_charset_module works for subrequests, if the response has no "Content-Type" header line. *) Bugfix: if the "proxy_pass" directive has no URI part, then the "proxy_redirect default" directive add the unnecessary slash in start of the rewritten redirect. *) Bugfix: the internal redirect always transform client's HTTP method to GET, now the transformation is made for the "X-Accel-Redirect" redirects only and if the method is not HEAD; bug appeared in 0.3.42. *) Bugfix: the ngx_http_perl_module could not be built, if the perl was built with the threads support; bug appeared in 0.3.46.
author Igor Sysoev <http://sysoev.ru>
date Mon, 29 May 2006 00:00:00 +0400
parents 71ff1e2b484a
children c982febb7588
comparison
equal deleted inserted replaced
201:958c1992c173 202:ca5f86d94316
87 USE_MD5=NO 87 USE_MD5=NO
88 MD5=NONE 88 MD5=NONE
89 MD5_OPT= 89 MD5_OPT=
90 MD5_ASM=NO 90 MD5_ASM=NO
91 91
92 USE_SHA1=NO
93 SHA1=NONE
94 SHA1_OPT=
95 SHA1_ASM=NO
96
92 USE_ZLIB=NO 97 USE_ZLIB=NO
93 ZLIB=NONE 98 ZLIB=NONE
94 ZLIB_OPT= 99 ZLIB_OPT=
95 ZLIB_ASM=NO 100 ZLIB_ASM=NO
96 101
189 194
190 --with-md5=*) MD5="$value" ;; 195 --with-md5=*) MD5="$value" ;;
191 --with-md5-opt=*) MD5_OPT="$value" ;; 196 --with-md5-opt=*) MD5_OPT="$value" ;;
192 --with-md5-asm) MD5_ASM=YES ;; 197 --with-md5-asm) MD5_ASM=YES ;;
193 198
199 --with-sha1=*) SHA1="$value" ;;
200 --with-sha1-opt=*) SHA1_OPT="$value" ;;
201 --with-sha1-asm) SHA1_ASM=YES ;;
202
194 --with-zlib=*) ZLIB="$value" ;; 203 --with-zlib=*) ZLIB="$value" ;;
195 --with-zlib-opt=*) ZLIB_OPT="$value" ;; 204 --with-zlib-opt=*) ZLIB_OPT="$value" ;;
196 --with-zlib-asm=*) ZLIB_ASM="$value" ;; 205 --with-zlib-asm=*) ZLIB_ASM="$value" ;;
197 206
198 --test-build-devpoll) NGX_TEST_BUILD_DEVPOLL=YES ;; 207 --test-build-devpoll) NGX_TEST_BUILD_DEVPOLL=YES ;;
283 292
284 --with-md5=DIR set path to md5 library sources 293 --with-md5=DIR set path to md5 library sources
285 --with-md5-opt=OPTIONS set additional options for md5 building 294 --with-md5-opt=OPTIONS set additional options for md5 building
286 --with-md5-asm use md5 assembler sources 295 --with-md5-asm use md5 assembler sources
287 296
297 --with-sha1=DIR set path to sha1 library sources
298 --with-sha1-opt=OPTIONS set additional options for sha1 building
299 --with-sha1-asm use sha1 assembler sources
300
288 --with-zlib=DIR set path to zlib library sources 301 --with-zlib=DIR set path to zlib library sources
289 --with-zlib-opt=OPTIONS set additional options for zlib building 302 --with-zlib-opt=OPTIONS set additional options for zlib building
290 --with-zlib-asm=CPU use zlib assembler sources optimized 303 --with-zlib-asm=CPU use zlib assembler sources optimized
291 for specified CPU, the valid values: 304 for specified CPU, the valid values:
292 pentium, pentiumpro 305 pentium, pentiumpro