From dfc8dadd04c7150d0f074bf650fab7beb4593513 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Fri, 5 Sep 2008 15:43:34 +0000 Subject: *) autoconfigure struct dirent capabilities *) move src/os/.../ngx_types.h's content into src/os/.../ngx_files.h and delete src/os/.../ngx_types.h --- auto/unix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'auto/unix') diff --git a/auto/unix b/auto/unix index 7c02eccbf..245d4f7f1 100755 --- a/auto/unix +++ b/auto/unix @@ -229,3 +229,23 @@ ngx_feature_path= ngx_feature_libs= ngx_feature_test="struct tm tm; tm.tm_gmtoff = 0" . auto/feature + + +ngx_feature="struct dirent.d_namlen" +ngx_feature_name="NGX_HAVE_D_NAMLEN" +ngx_feature_run=no +ngx_feature_incs="#include " +ngx_feature_path= +ngx_feature_libs= +ngx_feature_test="struct dirent dir; dir.d_namlen = 0" +. auto/feature + + +ngx_feature="struct dirent.d_type" +ngx_feature_name="NGX_HAVE_D_TYPE" +ngx_feature_run=no +ngx_feature_incs="#include " +ngx_feature_path= +ngx_feature_libs= +ngx_feature_test="struct dirent dir; dir.d_type = DT_REG" +. auto/feature -- cgit