mirror of
https://github.com/nginx/nginx.git
synced 2024-12-19 21:53:31 -06:00
0e5dc5cff6
*) 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.
90 lines
1.7 KiB
Plaintext
90 lines
1.7 KiB
Plaintext
|
|
# Copyright (C) Igor Sysoev
|
|
|
|
|
|
# Open Watcom C 1.0, 1.2
|
|
|
|
# optimizations
|
|
|
|
# maximize speed
|
|
CFLAGS="$CFLAGS -ot"
|
|
# reorder instructions for best pipeline usage
|
|
CFLAGS="$CFLAGS -op"
|
|
# inline intrinsic functions
|
|
CFLAGS="$CFLAGS -oi"
|
|
# inline expansion
|
|
CFLAGS="$CFLAGS -oe"
|
|
# disable stack checking calls
|
|
CFLAGS="$CFLAGS -s"
|
|
|
|
case $CPU in
|
|
pentium)
|
|
# optimize for Pentium and Athlon
|
|
# register-based arguments passing conventions
|
|
CPU_OPT="-5r"
|
|
# stack-based arguments passing conventions
|
|
#CPU_OPT="-5s"
|
|
;;
|
|
|
|
pentiumpro)
|
|
# optimize for Pentium Pro, Pentium II and Pentium III
|
|
# register-based arguments passing conventions
|
|
CPU_OPT="-6r"
|
|
# stack-based arguments passing conventions
|
|
#CPU_OPT="-6s"
|
|
;;
|
|
esac
|
|
|
|
CFLAGS="$CFLAGS $CPU_OPT"
|
|
|
|
|
|
# warnings
|
|
|
|
# maximum level
|
|
CFLAGS="$CFLAGS -wx"
|
|
#CFLAGS="$CFLAGS -w3"
|
|
|
|
# stop on warning
|
|
CFLAGS="$CFLAGS -we"
|
|
|
|
# built target is NT
|
|
CFLAGS="$CFLAGS -bt=nt"
|
|
|
|
# multithreaded
|
|
CFLAGS="$CFLAGS -bm"
|
|
|
|
# debug
|
|
CFLAGS="$CFLAGS -d2"
|
|
|
|
# quiet
|
|
CFLAGS="$CFLAGS -zq"
|
|
|
|
# Open Watcom C 1.2
|
|
#have=NGX_HAVE_C99_VARIADIC_MACROS . auto/have
|
|
|
|
|
|
# the precompiled headers
|
|
CORE_DEPS="$CORE_DEPS $NGX_OBJS/ngx_config.pch"
|
|
NGX_PCH="$NGX_OBJS/ngx_config.pch"
|
|
NGX_BUILD_PCH="-fhq=$NGX_OBJS/ngx_config.pch"
|
|
NGX_USE_PCH="-fh=$NGX_OBJS/ngx_config.pch"
|
|
|
|
|
|
# the link flags, built target is NT GUI mode application
|
|
CORE_LINK="$CORE_LINK -l=nt_win"
|
|
|
|
|
|
# the resource file
|
|
NGX_RCC="wrc \$(CORE_INCS) -fo=$NGX_OBJS/nginx.res "
|
|
NGX_RCC="$NGX_RCC $NGX_WIN32_RC $NGX_OBJS/nginx.exe"
|
|
|
|
|
|
ngx_include_opt="-i="
|
|
ngx_objout="-fo"
|
|
ngx_binout="-fe="
|
|
ngx_objext="obj"
|
|
ngx_binext=".exe"
|
|
|
|
ngx_regex_dirsep='\\'
|
|
ngx_dirsep="\\"
|