mirror of
https://github.com/nginx/nginx.git
synced 2024-12-20 06:03: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.
45 lines
810 B
Plaintext
45 lines
810 B
Plaintext
|
|
# Copyright (C) Igor Sysoev
|
|
|
|
|
|
echo $ngx_n "checking for system endianess ...$ngx_c"
|
|
echo >> $NGX_ERR
|
|
echo "checking for system endianess" >> $NGX_ERR
|
|
|
|
|
|
cat << END > $NGX_AUTOTEST.c
|
|
|
|
int main() {
|
|
int i = 0x11223344;
|
|
char *p;
|
|
|
|
p = (char *) &i;
|
|
if (*p == 0x44) return 0;
|
|
return 1;
|
|
}
|
|
|
|
END
|
|
|
|
ngx_test="$CC $CC_TEST_FLAGS $CC_WARN $CC_AUX_FLAGS \
|
|
-o $NGX_AUTOTEST $NGX_AUTOTEST.c $NGX_LD_OPT $ngx_feature_libs"
|
|
|
|
eval "$ngx_test >> $NGX_AUTOCONF_ERR 2>&1"
|
|
|
|
if [ -x $NGX_AUTOTEST ]; then
|
|
if $NGX_AUTOTEST 2>&1 > /dev/null; then
|
|
echo " little endianess"
|
|
have=NGX_HAVE_LITTLE_ENDIAN . auto/have
|
|
else
|
|
echo " big endianess"
|
|
fi
|
|
|
|
rm $NGX_AUTOTEST*
|
|
|
|
else
|
|
rm $NGX_AUTOTEST*
|
|
|
|
echo
|
|
echo "$0: error: can not detect system endianess"
|
|
exit 1
|
|
fi
|