mirror of
https://github.com/nginx/nginx.git
synced 2024-12-04 05:38:59 +08:00
f69060481e
*) Bugfix: the proxied request was sent without arguments if the request contains "//", "/./", "/../" or "%XX". *) Bugfix: the large compressed responses may be transferred not completely. *) Bugfix: the files bigger than 2G was not transferred on Linux that does not support sendfile64(). *) Bugfix: while the build configuration on Linux the --with-poll_module parameter was required; the bug had appeared in 0.1.8.
100 lines
1.8 KiB
Plaintext
100 lines
1.8 KiB
Plaintext
|
|
# Copyright (C) Igor Sysoev
|
|
|
|
|
|
# MSVC 6.0 SP2, MSVC Toolkit 2003 (7.1)
|
|
|
|
# optimizations
|
|
|
|
# maximize speed
|
|
CFLAGS="$CFLAGS -O2"
|
|
# enable global optimization
|
|
CFLAGS="$CFLAGS -Og"
|
|
# enable intrinsic functions
|
|
CFLAGS="$CFLAGS -Oi"
|
|
# inline expansion
|
|
CFLAGS="$CFLAGS -Ob1"
|
|
# enable frame pointer omission
|
|
CFLAGS="$CFLAGS -Oy"
|
|
# disable stack checking calls
|
|
CFLAGS="$CFLAGS -Gs"
|
|
|
|
case $CPU in
|
|
pentium)
|
|
# optimize for Pentium and Athlon
|
|
CPU_OPT="-G5"
|
|
;;
|
|
|
|
pentiumpro)
|
|
# optimize for Pentium Pro, Pentium II and Pentium III
|
|
CPU_OPT="-G6"
|
|
;;
|
|
|
|
pentium4)
|
|
# optimize for Pentium 4, MSVC 7
|
|
CPU_OPT="-G7"
|
|
;;
|
|
esac
|
|
|
|
CFLAGS="$CFLAGS $CPU_OPT"
|
|
|
|
|
|
# warnings
|
|
|
|
#CFLAGS="$CFLAGS -W3"
|
|
CFLAGS="$CFLAGS -W4"
|
|
|
|
# stop on warning
|
|
CFLAGS="$CFLAGS -WX"
|
|
|
|
# disable logo
|
|
CFLAGS="$CFLAGS -nologo"
|
|
|
|
|
|
LINK="\$(CC)"
|
|
|
|
# the link flags
|
|
CORE_LINK="$CORE_LINK -link -verbose:lib"
|
|
|
|
if [ $NGX_CC_NAME = msvc7 ]; then
|
|
# link with libcmt.lib, multithreaded
|
|
LIBC="-MT"
|
|
else
|
|
# link with msvcrt.dll
|
|
LIBC="-MD"
|
|
fi
|
|
|
|
CFLAGS="$CFLAGS $LIBC"
|
|
|
|
# Win32 GUI mode application
|
|
CORE_LIBS="$CORE_LIBS kernel32.lib user32.lib"
|
|
CORE_LINK="$CORE_LINK -subsystem:windows -entry:mainCRTStartup"
|
|
|
|
# debug
|
|
CFLAGS="$CFLAGS -Yd"
|
|
CORE_LINK="$CORE_LINK -debug -debugtype:coff"
|
|
|
|
|
|
# precompiled headers
|
|
if [ $NGX_CC_NAME != msvc7 ]; then
|
|
CORE_DEPS="$CORE_DEPS $NGX_OBJS/ngx_config.pch"
|
|
NGX_PCH="$NGX_OBJS/ngx_config.pch"
|
|
NGX_BUILD_PCH="-Ycngx_config.h -Fp$NGX_OBJS/ngx_config.pch"
|
|
NGX_USE_PCH="-Yungx_config.h -Fp$NGX_OBJS/ngx_config.pch"
|
|
fi
|
|
|
|
|
|
# the resource file
|
|
NGX_RES="$NGX_OBJS/nginx.res"
|
|
NGX_RCC="rc -fo$NGX_RES \$(CORE_INCS) $NGX_WIN32_RC"
|
|
CORE_LINK="$NGX_RES $CORE_LINK"
|
|
|
|
|
|
ngx_objout="-Fo"
|
|
ngx_binout="-Fe"
|
|
ngx_objext="obj"
|
|
ngx_binext=".exe"
|
|
|
|
#ngx_regex_dirsep='\\'
|
|
#ngx_dirsep="\\"
|