diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2021-09-09 21:46:35 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2021-09-09 21:46:35 +0300 |
commit | 1b56dc2b0506573c4cade98611f97597e31ad980 (patch) | |
tree | 4e18e9f355c651fa9c0f0b0a41c386498b0d7069 /configure.ac | |
parent | a08cc63bc8d11343012b283c91cb383bc3fff90d (diff) | |
download | egawk-1b56dc2b0506573c4cade98611f97597e31ad980.tar.gz egawk-1b56dc2b0506573c4cade98611f97597e31ad980.tar.bz2 egawk-1b56dc2b0506573c4cade98611f97597e31ad980.zip |
Move to Autoconf 2.71.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 64a55a89..aea7c97f 100644 --- a/configure.ac +++ b/configure.ac @@ -39,7 +39,7 @@ then export INSTALL fi -AC_PREREQ([2.69]) +AC_PREREQ([2.71]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_AUX_DIR([build-aux]) @@ -97,7 +97,8 @@ dnl checks for programs AC_PROG_EGREP AC_PROG_YACC AC_PROG_LN_S -AC_PROG_CC_C99 +AC_PROG_CC +AC_C_VARARRAY AC_PROG_CPP AC_PROG_RANLIB @@ -173,10 +174,11 @@ AC_CHECK_HEADERS(arpa/inet.h fcntl.h locale.h libintl.h mcheck.h \ netdb.h netinet/in.h stddef.h string.h \ sys/ioctl.h sys/param.h sys/select.h sys/socket.h sys/time.h unistd.h \ termios.h stropts.h wchar.h wctype.h) -AC_HEADER_STDC + AC_HEADER_STDBOOL AC_HEADER_SYS_WAIT -AC_HEADER_TIME +AC_CHECK_HEADERS_ONCE([sys/time.h]) + if test "$ac_cv_header_string_h" = yes then |