diff options
author | Andrew J. Schorr <aschorr@telemetry-investments.com> | 2013-06-30 20:57:03 -0400 |
---|---|---|
committer | Andrew J. Schorr <aschorr@telemetry-investments.com> | 2013-06-30 20:57:03 -0400 |
commit | 6959e2ab216aeb1d5d8f07ce73cd8b9894b83006 (patch) | |
tree | 1b603e6d8d54e6b7c97558334e67a8e81c406e78 /extension/configure | |
parent | d128c1998c9cbc8f5a28dc4e2b9d7f2fb6f7366e (diff) | |
download | egawk-6959e2ab216aeb1d5d8f07ce73cd8b9894b83006.tar.gz egawk-6959e2ab216aeb1d5d8f07ce73cd8b9894b83006.tar.bz2 egawk-6959e2ab216aeb1d5d8f07ce73cd8b9894b83006.zip |
Added first version of select extension and new API hooks needed by it.
Diffstat (limited to 'extension/configure')
-rwxr-xr-x | extension/configure | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/extension/configure b/extension/configure index f59548c1..02ff3dc8 100755 --- a/extension/configure +++ b/extension/configure @@ -14002,7 +14002,8 @@ fi fi fi -for ac_header in dirent.h fnmatch.h limits.h time.h sys/time.h sys/select.h sys/param.h +for ac_header in dirent.h fnmatch.h limits.h time.h sys/time.h sys/select.h \ + sys/param.h signal.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" @@ -14017,7 +14018,8 @@ done for ac_func in fdopendir fnmatch gettimeofday \ - getdtablesize nanosleep select GetSystemTimeAsFileTime + getdtablesize nanosleep select sigaction \ + 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" |