2004-10-21 23:34:38 +08:00
|
|
|
|
|
|
|
# Copyright (C) Igor Sysoev
|
2012-01-18 23:07:43 +08:00
|
|
|
# Copyright (C) Nginx, Inc.
|
2004-10-21 23:34:38 +08:00
|
|
|
|
|
|
|
|
2011-12-29 23:36:07 +08:00
|
|
|
# Intel C++ compiler 7.1, 8.0, 8.1, 9.0, 11.1
|
2004-10-21 23:34:38 +08:00
|
|
|
|
2005-06-07 23:56:31 +08:00
|
|
|
NGX_ICC_VER=`$CC -V 2>&1 | grep 'Version' 2>&1 \
|
2007-04-20 01:48:49 +08:00
|
|
|
| sed -e 's/^.* Version \([^ ]*\) *Build.*$/\1/'`
|
2005-06-07 23:56:31 +08:00
|
|
|
|
|
|
|
echo " + icc version: $NGX_ICC_VER"
|
|
|
|
|
2005-10-07 21:30:52 +08:00
|
|
|
have=NGX_COMPILER value="\"Intel C Compiler $NGX_ICC_VER\"" . auto/define
|
|
|
|
|
2005-06-07 23:56:31 +08:00
|
|
|
|
2004-10-21 23:34:38 +08:00
|
|
|
# optimizations
|
|
|
|
|
|
|
|
CFLAGS="$CFLAGS -O"
|
2006-01-18 04:04:32 +08:00
|
|
|
|
2004-11-26 00:17:31 +08:00
|
|
|
CORE_LINK="$CORE_LINK -opt_report_file=$NGX_OBJS/opt_report_file"
|
2004-10-21 23:34:38 +08:00
|
|
|
|
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
|
|
|
|
2004-10-21 23:34:38 +08:00
|
|
|
case $CPU in
|
|
|
|
pentium)
|
|
|
|
# optimize for Pentium and Athlon
|
|
|
|
CPU_OPT="-march=pentium"
|
|
|
|
;;
|
|
|
|
|
|
|
|
pentiumpro)
|
|
|
|
# optimize for Pentium Pro, Pentium II and Pentium III
|
|
|
|
CPU_OPT="-mcpu=pentiumpro -march=pentiumpro"
|
|
|
|
;;
|
|
|
|
|
|
|
|
pentium4)
|
|
|
|
# optimize for Pentium 4, default
|
|
|
|
CPU_OPT="-march=pentium4"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
CFLAGS="$CFLAGS $CPU_OPT"
|
|
|
|
|
|
|
|
if [ ".$PCRE_OPT" = "." ]; then
|
2011-12-29 23:36:07 +08:00
|
|
|
PCRE_OPT="-O $CPU_OPT"
|
2004-10-21 23:34:38 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ".$ZLIB_OPT" = "." ]; then
|
2011-12-29 23:36:07 +08:00
|
|
|
ZLIB_OPT="-O $CPU_OPT"
|
2004-10-21 23:34:38 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
# warnings
|
|
|
|
|
2005-03-19 20:38:37 +08:00
|
|
|
CFLAGS="$CFLAGS -w2"
|
|
|
|
|
|
|
|
# disable some warnings
|
|
|
|
|
|
|
|
# invalid type conversion: "int" to "char *"
|
|
|
|
CFLAGS="$CFLAGS -wd171"
|
|
|
|
# argument is incompatible with corresponding format string conversion
|
|
|
|
CFLAGS="$CFLAGS -wd181"
|
|
|
|
# zero used for undefined preprocessing identifier
|
|
|
|
CFLAGS="$CFLAGS -wd193"
|
2005-10-19 20:33:58 +08:00
|
|
|
# the format string ends before this argument
|
2005-05-27 02:12:40 +08:00
|
|
|
CFLAGS="$CFLAGS -wd268"
|
2005-03-19 20:38:37 +08:00
|
|
|
# invalid format string conversion
|
|
|
|
CFLAGS="$CFLAGS -wd269"
|
|
|
|
# conversion from "long long" to "size_t" may lose significant bits
|
|
|
|
CFLAGS="$CFLAGS -wd810"
|
|
|
|
# parameter was never referenced
|
|
|
|
CFLAGS="$CFLAGS -wd869"
|
2006-08-30 18:39:17 +08:00
|
|
|
# attribute "unused" is only allowed in a function definition, warning on pTHX_
|
|
|
|
CFLAGS="$CFLAGS -wd1301"
|
2005-03-19 20:38:37 +08:00
|
|
|
|
|
|
|
# STUB
|
|
|
|
# enumerated type mixed with another type
|
|
|
|
CFLAGS="$CFLAGS -wd188"
|
|
|
|
# controlling expression is constant
|
|
|
|
CFLAGS="$CFLAGS -wd279"
|
|
|
|
# operands are evaluated in unspecified order
|
|
|
|
CFLAGS="$CFLAGS -wd981"
|
|
|
|
# external definition with no prior declaration
|
|
|
|
CFLAGS="$CFLAGS -wd1418"
|
|
|
|
# external declaration in primary source file
|
|
|
|
CFLAGS="$CFLAGS -wd1419"
|
2005-06-07 23:56:31 +08:00
|
|
|
|
|
|
|
case "$NGX_ICC_VER" in
|
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
|
|
|
9.*)
|
2016-04-07 16:50:13 +08:00
|
|
|
# "cc" clobber ignored, warnings for Linux's htonl()/htons()
|
2005-06-07 23:56:31 +08:00
|
|
|
CFLAGS="$CFLAGS -wd1469"
|
2005-10-19 20:33:58 +08:00
|
|
|
# explicit conversion of a 64-bit integral type to a smaller
|
|
|
|
# integral type
|
|
|
|
CFLAGS="$CFLAGS -wd1683"
|
|
|
|
# conversion from pointer to same-sized integral type,
|
|
|
|
# warning on offsetof()
|
|
|
|
CFLAGS="$CFLAGS -wd1684"
|
2005-12-28 22:23:52 +08:00
|
|
|
# floating-point equality and inequality comparisons are unreliable,
|
|
|
|
# warning on SvTRUE()
|
|
|
|
CFLAGS="$CFLAGS -wd1572"
|
2005-06-07 23:56:31 +08:00
|
|
|
;;
|
|
|
|
|
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
|
|
|
8.*)
|
2016-04-07 16:50:13 +08:00
|
|
|
# "cc" clobber ignored, warnings for Linux's htonl()/htons()
|
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
|
|
|
CFLAGS="$CFLAGS -wd1469"
|
2005-12-28 22:23:52 +08:00
|
|
|
# floating-point equality and inequality comparisons are unreliable,
|
|
|
|
# warning on SvTRUE()
|
|
|
|
CFLAGS="$CFLAGS -wd1572"
|
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
|
|
|
;;
|
|
|
|
|
2005-06-07 23:56:31 +08:00
|
|
|
*)
|
|
|
|
;;
|
|
|
|
esac
|
nginx-0.1.14-RELEASE import
*) Feature: the autoconfiguration directives:
--http-client-body-temp-path=PATH, --http-proxy-temp-path=PATH, and
--http-fastcgi-temp-path=PATH
*) Change: the directory name for the temporary files with the client
request body is specified by directive client_body_temp_path, by
default it is <prefix>/client_body_temp.
*) Feature: the ngx_http_fastcgi_module and the directives:
fastcgi_pass, fastcgi_root, fastcgi_index, fastcgi_params,
fastcgi_connect_timeout, fastcgi_send_timeout, fastcgi_read_timeout,
fastcgi_send_lowat, fastcgi_header_buffer_size, fastcgi_buffers,
fastcgi_busy_buffers_size, fastcgi_temp_path,
fastcgi_max_temp_file_size, fastcgi_temp_file_write_size,
fastcgi_next_upstream, and fastcgi_x_powered_by.
*) Bugfix: the "[alert] zero size buf" error; the bug had appeared in
0.1.3.
*) Change: the URI must be specified after the host name in the
proxy_pass directive.
*) Change: the %3F symbol in the URI was considered as the argument
string start.
*) Feature: the unix domain sockets support in the
ngx_http_proxy_module.
*) Feature: the ssl_engine and ssl_ciphers directives.
Thanks to Sergey Skvortsov for SSL-accelerator.
2005-01-18 21:03:58 +08:00
|
|
|
|
2004-10-21 23:34:38 +08:00
|
|
|
# stop on warning
|
|
|
|
CFLAGS="$CFLAGS -Werror"
|
|
|
|
|
|
|
|
# debug
|
|
|
|
CFLAGS="$CFLAGS -g"
|