comparison auto/os/features @ 2615:ceef364208c8

ngx_fs_bsize()
author Igor Sysoev <igor@sysoev.ru>
date Mon, 30 Mar 2009 07:43:06 +0000
parents 87e739049e93
children 418c9f97bd01
comparison
equal deleted inserted replaced
2614:02fb50962b11 2615:ceef364208c8
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