comparison auto/cc/gcc @ 613:c73c5c58c619 release-0.3.28

nginx-0.3.28-RELEASE import *) Feature: the "restrict_host_names" directive was canceled. *) Feature: the --with-cpu-opt=ppc64 configuration parameter. *) Bugfix: on some condition the proxied connection with a client was terminated prematurely. Thanks to Vladimir Shutoff. *) Bugfix: the "X-Accel-Limit-Rate" header line was not taken into account if the request was redirected using the "X-Accel-Redirect" header line. *) Bugfix: the "post_action" directive ran only after a successful completion of a request. *) Bugfix: the proxied response body generated by the "post_action" directive was transferred to a client.
author Igor Sysoev <igor@sysoev.ru>
date Thu, 16 Feb 2006 15:26:46 +0000
parents 869b6444d234
children 7e24168b0853
comparison
equal deleted inserted replaced
612:182bfe05e2c3 613:c73c5c58c619
99 CORE_LINK="$CORE_LINK -m64" 99 CORE_LINK="$CORE_LINK -m64"
100 CC_AUX_FLAGS="$CC_AUX_FLAGS -m64" 100 CC_AUX_FLAGS="$CC_AUX_FLAGS -m64"
101 NGX_CPU_CACHE_LINE=64 101 NGX_CPU_CACHE_LINE=64
102 ;; 102 ;;
103 103
104 ppc64)
105 # build 64-bit PowerPC binary
106 CPU_OPT="-m64"
107 CPU_OPT="$CPU_OPT -falign-functions=32 -falign-labels=32"
108 CPU_OPT="$CPU_OPT -falign-loops=32 -falign-jumps=32"
109 CORE_LINK="$CORE_LINK -m64"
110 CC_AUX_FLAGS="$CC_AUX_FLAGS -m64"
111 NGX_CPU_CACHE_LINE=128
112 ;;
113
104 esac 114 esac
105 115
106 116
107 case "$NGX_GCC_VER" in 117 case "$NGX_GCC_VER" in
108 2.7*) 118 2.7*)