2004-10-21 23:34:38 +08:00
|
|
|
|
|
|
|
# Copyright (C) Igor Sysoev
|
|
|
|
|
|
|
|
|
2005-02-09 22:31:07 +08:00
|
|
|
LINK="\$(CC)"
|
|
|
|
|
2004-10-21 23:34:38 +08:00
|
|
|
ngx_include_opt="-I "
|
|
|
|
ngx_compile_opt="-c"
|
|
|
|
ngx_objout="-o "
|
|
|
|
ngx_binout="-o "
|
|
|
|
ngx_objext="o"
|
|
|
|
ngx_binext=
|
|
|
|
|
nginx-0.3.8-RELEASE import
*) Security: nginx now checks URI got from a backend in
"X-Accel-Redirect" header line or in SSI file for the "/../" paths
and zeroes.
*) Change: nginx now does not treat the empty user name in the
"Authorization" header line as valid one.
*) Feature: the "ssl_session_timeout" directives of the
ngx_http_ssl_module and ngx_imap_ssl_module.
*) Feature: the "auth_http_header" directive of the
ngx_imap_auth_http_module.
*) Feature: the "add_header" directive.
*) Feature: the ngx_http_realip_module.
*) Feature: the new variables to use in the "log_format" directive:
$bytes_sent, $apache_bytes_sent, $status, $time_gmt, $uri,
$request_time, $request_length, $upstream_status,
$upstream_response_time, $gzip_ratio, $uid_got, $uid_set,
$connection, $pipe, and $msec. The parameters in the "%name" form
will be canceled soon.
*) Change: now the false variable values in the "if" directive are the
empty string "" and string starting with "0".
*) Bugfix: while using proxied or FastCGI-server nginx may leave
connections and temporary files with client requests in open state.
*) Bugfix: the worker processes did not flush the buffered logs on
graceful exit.
*) Bugfix: if the request URI was changes by the "rewrite" directive
and the request was proxied in location given by regular expression,
then the incorrect request was transferred to backend; the bug had
appeared in 0.2.6.
*) Bugfix: the "expires" directive did not remove the previous
"Expires" header.
*) Bugfix: nginx may stop to accept requests if the "rtsig" method and
several worker processes were used.
*) Bugfix: the "\"" and "\'" escape symbols were incorrectly handled in
SSI commands.
*) Bugfix: if the response was ended just after the SSI command and
gzipping was used, then the response did not transferred complete or
did not transferred at all.
2005-11-10 01:25:55 +08:00
|
|
|
ngx_long_start=
|
|
|
|
ngx_long_end=
|
|
|
|
|
2004-10-21 23:34:38 +08:00
|
|
|
ngx_regex_dirsep="\/"
|
|
|
|
ngx_dirsep='/'
|
|
|
|
|
|
|
|
ngx_regex_cont=' \\\
|
|
|
|
'
|
|
|
|
ngx_cont=' \
|
|
|
|
'
|
|
|
|
ngx_tab=' \
|
|
|
|
'
|
|
|
|
ngx_spacer=
|
|
|
|
|
nginx-0.3.8-RELEASE import
*) Security: nginx now checks URI got from a backend in
"X-Accel-Redirect" header line or in SSI file for the "/../" paths
and zeroes.
*) Change: nginx now does not treat the empty user name in the
"Authorization" header line as valid one.
*) Feature: the "ssl_session_timeout" directives of the
ngx_http_ssl_module and ngx_imap_ssl_module.
*) Feature: the "auth_http_header" directive of the
ngx_imap_auth_http_module.
*) Feature: the "add_header" directive.
*) Feature: the ngx_http_realip_module.
*) Feature: the new variables to use in the "log_format" directive:
$bytes_sent, $apache_bytes_sent, $status, $time_gmt, $uri,
$request_time, $request_length, $upstream_status,
$upstream_response_time, $gzip_ratio, $uid_got, $uid_set,
$connection, $pipe, and $msec. The parameters in the "%name" form
will be canceled soon.
*) Change: now the false variable values in the "if" directive are the
empty string "" and string starting with "0".
*) Bugfix: while using proxied or FastCGI-server nginx may leave
connections and temporary files with client requests in open state.
*) Bugfix: the worker processes did not flush the buffered logs on
graceful exit.
*) Bugfix: if the request URI was changes by the "rewrite" directive
and the request was proxied in location given by regular expression,
then the incorrect request was transferred to backend; the bug had
appeared in 0.2.6.
*) Bugfix: the "expires" directive did not remove the previous
"Expires" header.
*) Bugfix: nginx may stop to accept requests if the "rtsig" method and
several worker processes were used.
*) Bugfix: the "\"" and "\'" escape symbols were incorrectly handled in
SSI commands.
*) Bugfix: if the response was ended just after the SSI command and
gzipping was used, then the response did not transferred complete or
did not transferred at all.
2005-11-10 01:25:55 +08:00
|
|
|
ngx_long_regex_cont=$ngx_regex_cont
|
|
|
|
ngx_long_cont=$ngx_cont
|
|
|
|
|
2004-10-21 23:34:38 +08:00
|
|
|
. auto/cc/name
|
|
|
|
|
|
|
|
if test -n "$CFLAGS"; then
|
|
|
|
|
|
|
|
CC_TEST_FLAGS="$CFLAGS $NGX_CC_OPT"
|
|
|
|
|
|
|
|
case $NGX_CC_NAME in
|
|
|
|
|
|
|
|
ccc)
|
|
|
|
# Compaq C V6.5-207
|
|
|
|
|
|
|
|
ngx_include_opt="-I"
|
|
|
|
;;
|
|
|
|
|
|
|
|
esac
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
case $NGX_CC_NAME in
|
|
|
|
gcc)
|
2005-05-19 21:25:22 +08:00
|
|
|
# gcc 2.7.2.3, 2.8.1, 2.95.4, egcs-1.1.2
|
|
|
|
# 3.0.4, 3.1.1, 3.2.3, 3.3.2, 3.3.3, 3.3.4, 3.4.0, 3.4.2
|
2005-10-12 21:50:36 +08:00
|
|
|
# 4.0.0, 4.0.1, 4.1.0
|
2004-10-21 23:34:38 +08:00
|
|
|
|
|
|
|
. auto/cc/gcc
|
|
|
|
;;
|
|
|
|
|
|
|
|
icc)
|
2005-05-19 21:25:22 +08:00
|
|
|
# Intel C++ compiler 7.1, 8.0, 8.1
|
2004-10-21 23:34:38 +08:00
|
|
|
|
|
|
|
. auto/cc/icc
|
|
|
|
;;
|
|
|
|
|
2005-10-12 21:50:36 +08:00
|
|
|
sunc)
|
|
|
|
# Sun C 5.7 Patch 117837-04 2005/05/11
|
|
|
|
|
|
|
|
. auto/cc/sunc
|
|
|
|
;;
|
|
|
|
|
2004-11-21 03:52:20 +08:00
|
|
|
ccc)
|
2005-05-19 21:25:22 +08:00
|
|
|
# Compaq C V6.5-207
|
|
|
|
|
|
|
|
. auto/cc/ccc
|
2004-11-21 03:52:20 +08:00
|
|
|
;;
|
2004-10-21 23:34:38 +08:00
|
|
|
|
2005-05-19 21:25:22 +08:00
|
|
|
acc)
|
|
|
|
# aCC: HP ANSI C++ B3910B A.03.55.02
|
|
|
|
|
|
|
|
. auto/cc/acc
|
|
|
|
;;
|
2004-10-21 23:34:38 +08:00
|
|
|
|
2004-11-11 22:07:14 +08:00
|
|
|
msvc*)
|
|
|
|
# MSVC++ 6.0 SP2, MSVC++ Toolkit 2003
|
2004-10-21 23:34:38 +08:00
|
|
|
|
|
|
|
. auto/cc/msvc
|
|
|
|
;;
|
|
|
|
|
|
|
|
owc)
|
|
|
|
# Open Watcom C 1.0, 1.2
|
|
|
|
|
|
|
|
. auto/cc/owc
|
|
|
|
;;
|
|
|
|
|
|
|
|
bcc)
|
|
|
|
# Borland C++ 5.5
|
|
|
|
|
|
|
|
. auto/cc/bcc
|
|
|
|
;;
|
|
|
|
|
|
|
|
esac
|
|
|
|
|
2005-05-19 21:25:22 +08:00
|
|
|
CC_TEST_FLAGS="$CC_TEST_FLAGS $NGX_CC_OPT"
|
2004-10-21 23:34:38 +08:00
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
CFLAGS="$CFLAGS $NGX_CC_OPT"
|
2010-06-07 17:01:46 +08:00
|
|
|
NGX_TEST_LD_OPT="$NGX_LD_OPT"
|
2004-10-21 23:34:38 +08:00
|
|
|
|
|
|
|
|
2004-11-26 00:17:31 +08:00
|
|
|
if [ "$NGX_PLATFORM" != win32 ]; then
|
2004-10-21 23:34:38 +08:00
|
|
|
|
2004-11-11 22:07:14 +08:00
|
|
|
if test -n "$NGX_LD_OPT"; then
|
|
|
|
ngx_feature=--with-ld-opt=\"$NGX_LD_OPT\"
|
2004-11-26 00:17:31 +08:00
|
|
|
ngx_feature_name=
|
2004-11-11 22:07:14 +08:00
|
|
|
ngx_feature_run=no
|
|
|
|
ngx_feature_incs=
|
2006-11-27 19:07:09 +08:00
|
|
|
ngx_feature_path=
|
2004-11-11 22:07:14 +08:00
|
|
|
ngx_feature_libs=
|
|
|
|
ngx_feature_test=
|
|
|
|
. auto/feature
|
|
|
|
|
|
|
|
if [ $ngx_found = no ]; then
|
|
|
|
echo $0: error: the invalid value in --with-ld-opt=\"$NGX_LD_OPT\"
|
|
|
|
echo
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2004-10-21 23:34:38 +08:00
|
|
|
ngx_feature="gcc variadic macros"
|
2004-11-26 00:17:31 +08:00
|
|
|
ngx_feature_name="NGX_HAVE_GCC_VARIADIC_MACROS"
|
2004-10-21 23:34:38 +08:00
|
|
|
ngx_feature_run=yes
|
|
|
|
ngx_feature_incs="#include <stdio.h>
|
|
|
|
#define var(dummy, args...) sprintf(args)"
|
2006-11-27 19:07:09 +08:00
|
|
|
ngx_feature_path=
|
2004-10-21 23:34:38 +08:00
|
|
|
ngx_feature_libs=
|
|
|
|
ngx_feature_test="char buf[30]; buf[0] = '0';
|
|
|
|
var(0, buf, \"%d\", 1);
|
|
|
|
if (buf[0] != '1') return 1"
|
|
|
|
. auto/feature
|
|
|
|
|
|
|
|
|
2005-05-23 20:07:45 +08:00
|
|
|
if [ "$NGX_CC_NAME" = "ccc" ]; then
|
2005-05-19 21:25:22 +08:00
|
|
|
echo "checking for C99 variadic macros ... disabled"
|
|
|
|
else
|
|
|
|
ngx_feature="C99 variadic macros"
|
|
|
|
ngx_feature_name="NGX_HAVE_C99_VARIADIC_MACROS"
|
|
|
|
ngx_feature_run=yes
|
|
|
|
ngx_feature_incs="#include <stdio.h>
|
|
|
|
#define var(dummy, ...) sprintf(__VA_ARGS__)"
|
2006-11-27 19:07:09 +08:00
|
|
|
ngx_feature_path=
|
2005-05-19 21:25:22 +08:00
|
|
|
ngx_feature_libs=
|
|
|
|
ngx_feature_test="char buf[30]; buf[0] = '0';
|
|
|
|
var(0, buf, \"%d\", 1);
|
|
|
|
if (buf[0] != '1') return 1"
|
|
|
|
. auto/feature
|
|
|
|
fi
|
2004-10-21 23:34:38 +08:00
|
|
|
|
2004-11-21 03:52:20 +08:00
|
|
|
|
|
|
|
# ngx_feature="inline"
|
2004-11-26 00:17:31 +08:00
|
|
|
# ngx_feature_name=
|
2004-11-21 03:52:20 +08:00
|
|
|
# ngx_feature_run=no
|
|
|
|
# ngx_feature_incs="int inline f(void) { return 1 }"
|
2006-11-27 19:07:09 +08:00
|
|
|
# ngx_feature_path=
|
2004-11-21 03:52:20 +08:00
|
|
|
# ngx_feature_libs=
|
|
|
|
# ngx_feature_test=
|
|
|
|
# . auto/feature
|
|
|
|
#
|
|
|
|
# if [ $ngx_found = yes ]; then
|
|
|
|
# fi
|
|
|
|
|
2004-10-21 23:34:38 +08:00
|
|
|
fi
|