comparison auto/cc/gcc @ 162:6be073125f2e NGINX_0_3_28

nginx 0.3.28 *) 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 <http://sysoev.ru>
date Thu, 16 Feb 2006 00:00:00 +0300
parents ea622d8acb38
children 38e7b94d63ac
comparison
equal deleted inserted replaced
161:086553d7da41 162:6be073125f2e
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*)