comparison auto/os/features @ 544:f7ec98e3caeb NGINX_0_8_18

nginx 0.8.18 *) Feature: the "read_ahead" directive. *) Feature: now several "perl_modules" directive may be used. *) Feature: the "limit_req_log_level" and "limit_conn_log_level" directives. *) Bugfix: now "limit_req" directive conforms to the leaky bucket algorithm. Thanks to Maxim Dounin. *) Bugfix: nginx did not work on Linux/sparc. Thanks to Marcus Ramberg. *) Bugfix: nginx sent '\0' in a "Location" response header line on MKCOL request. Thanks to Xie Zhenye. *) Bugfix: zero status code was logged instead of 499 status code; the bug had appeared in 0.8.11. *) Bugfix: socket leak; the bug had appeared in 0.8.11.
author Igor Sysoev <http://sysoev.ru>
date Tue, 06 Oct 2009 00:00:00 +0400
parents 0161f3197817
children 016632f0fb18
comparison
equal deleted inserted replaced
543:7688992d2abb 544:f7ec98e3caeb
168 168
169 if [ $ngx_found = yes ]; then 169 if [ $ngx_found = yes ]; then
170 CRYPT_LIB="-lcrypt" 170 CRYPT_LIB="-lcrypt"
171 fi 171 fi
172 fi 172 fi
173
174
175 ngx_feature="F_READAHEAD"
176 ngx_feature_name="NGX_HAVE_F_READAHEAD"
177 ngx_feature_run=no
178 ngx_feature_incs="#include <fcntl.h>"
179 ngx_feature_path=
180 ngx_feature_libs=
181 ngx_feature_test="fcntl(0, F_READAHEAD, 1);"
182 . auto/feature
183
184
185 ngx_feature="posix_fadvise()"
186 ngx_feature_name="NGX_HAVE_POSIX_FADVISE"
187 ngx_feature_run=no
188 ngx_feature_incs="#include <fcntl.h>"
189 ngx_feature_path=
190 ngx_feature_libs=
191 ngx_feature_test="posix_fadvise(0, 0, 0, POSIX_FADV_SEQUENTIAL);"
192 . auto/feature
173 193
174 194
175 ngx_feature="O_DIRECT" 195 ngx_feature="O_DIRECT"
176 ngx_feature_name="NGX_HAVE_O_DIRECT" 196 ngx_feature_name="NGX_HAVE_O_DIRECT"
177 ngx_feature_run=no 197 ngx_feature_run=no