diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2012-08-08 22:37:55 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2012-08-08 22:37:55 +0300 |
commit | 88e81c931345aa485e55c6d6c7f3ad61dc200fed (patch) | |
tree | d60d541708572c7944ab0b385ba261153e6fd6cd /extension/configure | |
parent | 30bb821bad107a676c1d0f0688f90b2b7e6c7505 (diff) | |
download | egawk-88e81c931345aa485e55c6d6c7f3ad61dc200fed.tar.gz egawk-88e81c931345aa485e55c6d6c7f3ad61dc200fed.tar.bz2 egawk-88e81c931345aa485e55c6d6c7f3ad61dc200fed.zip |
Add fts() extension, support, doc, and test.
Diffstat (limited to 'extension/configure')
-rwxr-xr-x | extension/configure | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/extension/configure b/extension/configure index f7f6ab93..9335a25e 100755 --- a/extension/configure +++ b/extension/configure @@ -13438,7 +13438,7 @@ then CFLAGS="$CFLAGS -Wall -Wextra" fi -for ac_header in dirent.h fnmatch.h time.h sys/time.h sys/select.h +for ac_header in dirent.h fnmatch.h fts.h time.h sys/time.h sys/select.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" @@ -13452,7 +13452,8 @@ fi done -for ac_func in fdopendir fnmatch gettimeofday nanosleep select GetSystemTimeAsFileTime +for ac_func in fdopendir fnmatch fts_open fts_read gettimeofday \ + nanosleep select GetSystemTimeAsFileTime do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" |