comparison auto/unix @ 496:116d5de7cbb6 NGINX_0_7_60

nginx 0.7.60 *) Feature: the "updating" parameter in "proxy_cache_use_stale" and "fastcgi_cache_use_stale" directives. *) Feature: the "keepalive_requests" directive. *) Bugfix: in open_file_cache and proxy/fastcgi cache interaction on start up. *) Bugfix: open_file_cache might cache open file descriptors too long. *) Bugfix: the "If-Modified-Since", "If-Range", etc. client request header lines were passed to backend while caching if no "proxy_set_header" directive was used with any parameters. *) Bugfix: the "Set-Cookie" and "P3P" response header lines were not hidden while caching if no "proxy_hide_header/fastcgi_hide_header" directives were used with any parameters. *) Bugfix: the ngx_http_image_filter_module did not support GIF87a format. Thanks to Denis Ilyinyh. *) Bugfix: nginx could not be built modules on Solaris 10 and early; the bug had appeared in 0.7.56. *) Bugfix: XLST filter did not work in subrequests. *) Bugfix: in relative paths handling in nginx/Windows. *) Bugfix: in proxy_store, fastcgi_store, proxy_cache, and fastcgi_cache in nginx/Windows.
author Igor Sysoev <http://sysoev.ru>
date Mon, 15 Jun 2009 00:00:00 +0400
parents 499474178a11
children 68c0ae0a4959
comparison
equal deleted inserted replaced
495:6d9fb4461113 496:116d5de7cbb6
161 ngx_feature_libs= 161 ngx_feature_libs=
162 ngx_feature_test="void *p; p = memalign(4096, 4096)" 162 ngx_feature_test="void *p; p = memalign(4096, 4096)"
163 . auto/feature 163 . auto/feature
164 164
165 165
166 ngx_feature="sched_yield()"
167 ngx_feature_name="NGX_HAVE_SCHED_YIELD"
168 ngx_feature_run=no
169 ngx_feature_incs="#include <sched.h>"
170 ngx_feature_path=
171 ngx_feature_libs=
172 ngx_feature_test="sched_yield()"
173 . auto/feature
174
175
176 if [ $ngx_found != yes ]; then
177
178 ngx_feature="sched_yield() in librt"
179 ngx_feature_libs="-lrt"
180 . auto/feature
181
182 if [ $ngx_found = yes ]; then
183 CORE_LIBS="$CORE_LIBS -lrt"
184 fi
185 fi
186
187
188 ngx_feature="mmap(MAP_ANON|MAP_SHARED)" 166 ngx_feature="mmap(MAP_ANON|MAP_SHARED)"
189 ngx_feature_name="NGX_HAVE_MAP_ANON" 167 ngx_feature_name="NGX_HAVE_MAP_ANON"
190 ngx_feature_run=yes 168 ngx_feature_run=yes
191 ngx_feature_incs="#include <sys/mman.h>" 169 ngx_feature_incs="#include <sys/mman.h>"
192 ngx_feature_path= 170 ngx_feature_path=