comparison auto/os/features @ 468:56baf312c1b5 NGINX_0_7_46

nginx 0.7.46 *) Bugfix: the previous release tarball was incorrect.
author Igor Sysoev <http://sysoev.ru>
date Mon, 30 Mar 2009 00:00:00 +0400
parents 9eda3153223b
children 6866b490272e
comparison
equal deleted inserted replaced
467:d46142e61c30 468:56baf312c1b5
203 #include <sys/fcntl.h>" 203 #include <sys/fcntl.h>"
204 ngx_feature_path= 204 ngx_feature_path=
205 ngx_feature_libs= 205 ngx_feature_libs=
206 ngx_feature_test="directio(0, DIRECTIO_ON);" 206 ngx_feature_test="directio(0, DIRECTIO_ON);"
207 . auto/feature 207 . auto/feature
208
209
210 ngx_feature="statfs()"
211 ngx_feature_name="NGX_HAVE_STATFS"
212 ngx_feature_run=no
213 ngx_feature_incs="$NGX_INCLUDE_SYS_MOUNT_H
214 $NGX_INCLUDE_SYS_VFS_H"
215 ngx_feature_path=
216 ngx_feature_libs=
217 ngx_feature_test="struct statfs fs;
218 statfs(NULL, &fs);"
219 . auto/feature
220
221
222 ngx_feature="statvfs()"
223 ngx_feature_name="NGX_HAVE_STATVFS"
224 ngx_feature_run=no
225 ngx_feature_incs="#include <sys/types.h>
226 #include <sys/statvfs.h>"
227 ngx_feature_path=
228 ngx_feature_libs=
229 ngx_feature_test="struct statvfs fs;
230 statvfs(NULL, &fs);"
231 . auto/feature