comparison auto/cc/owc @ 126:df17fbafec8f NGINX_0_3_10

nginx 0.3.10 *) Change: the "valid_referers" directive and the "$invalid_referer" variable were moved to the new ngx_http_referer_module from the ngx_http_rewrite_module. *) Change: the "$apache_bytes_sent" variable name was changed to "$body_bytes_sent". *) Feature: the "$sent_http_..." variables. *) Feature: the "if" directive supports the "=" and "!=" operations. *) Feature: the "proxy_pass" directive supports the HTTPS protocol. *) Feature: the "proxy_set_body" directive. *) Feature: the "post_action" directive. *) Feature: the ngx_http_empty_gif_module. *) Feature: the "worker_cpu_affinity" directive for Linux. *) Bugfix: the "rewrite" directive did not unescape URI part in redirect, now it is unescaped except the %00-%25 and %7F-%FF characters. *) Bugfix: nginx could not be built by the icc 9.0 compiler. *) Bugfix: if the SSI was enabled for zero size static file, then the chunked response was encoded incorrectly.
author Igor Sysoev <http://sysoev.ru>
date Tue, 15 Nov 2005 00:00:00 +0300
parents 6cfc63e68377
children 91372f004adf
comparison
equal deleted inserted replaced
125:97504de1f89e 126:df17fbafec8f
6 6
7 # optimizations 7 # optimizations
8 8
9 # maximize speed 9 # maximize speed
10 CFLAGS="$CFLAGS -ot" 10 CFLAGS="$CFLAGS -ot"
11 # reorder instructions for best pipeline usage 11 # reorder instructions for best pipeline usage
12 CFLAGS="$CFLAGS -op" 12 CFLAGS="$CFLAGS -op"
13 # inline intrinsic functions 13 # inline intrinsic functions
14 CFLAGS="$CFLAGS -oi" 14 CFLAGS="$CFLAGS -oi"
15 # inline expansion 15 # inline expansion
16 CFLAGS="$CFLAGS -oe" 16 CFLAGS="$CFLAGS -oe"
22 # optimize for Pentium and Athlon 22 # optimize for Pentium and Athlon
23 # register-based arguments passing conventions 23 # register-based arguments passing conventions
24 CPU_OPT="-5r" 24 CPU_OPT="-5r"
25 # stack-based arguments passing conventions 25 # stack-based arguments passing conventions
26 #CPU_OPT="-5s" 26 #CPU_OPT="-5s"
27 ;; 27 ;;
28 28
29 pentiumpro) 29 pentiumpro)
30 # optimize for Pentium Pro, Pentium II and Pentium III 30 # optimize for Pentium Pro, Pentium II and Pentium III
31 # register-based arguments passing conventions 31 # register-based arguments passing conventions
32 CPU_OPT="-6r" 32 CPU_OPT="-6r"
61 61
62 # Open Watcom C 1.2 62 # Open Watcom C 1.2
63 #have=NGX_HAVE_C99_VARIADIC_MACROS . auto/have 63 #have=NGX_HAVE_C99_VARIADIC_MACROS . auto/have
64 64
65 65
66 # the precompiled headers 66 # the precompiled headers
67 CORE_DEPS="$CORE_DEPS $NGX_OBJS/ngx_config.pch" 67 CORE_DEPS="$CORE_DEPS $NGX_OBJS/ngx_config.pch"
68 NGX_PCH="$NGX_OBJS/ngx_config.pch" 68 NGX_PCH="$NGX_OBJS/ngx_config.pch"
69 NGX_BUILD_PCH="-fhq=$NGX_OBJS/ngx_config.pch" 69 NGX_BUILD_PCH="-fhq=$NGX_OBJS/ngx_config.pch"
70 NGX_USE_PCH="-fh=$NGX_OBJS/ngx_config.pch" 70 NGX_USE_PCH="-fh=$NGX_OBJS/ngx_config.pch"
71 71