diff options
author | Paul Smith <psmith@gnu.org> | 1999-06-14 06:50:28 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 1999-06-14 06:50:28 +0000 |
commit | 2858f7a8f11990a8b9391e70ab4cdaa271522ece (patch) | |
tree | 51c2ec242b3725d7c92689b2277244b3691466c8 /acinclude.m4 | |
parent | 187787286d9bc2f41696090917f47d9935651ddf (diff) | |
download | gunmake-2858f7a8f11990a8b9391e70ab4cdaa271522ece.tar.gz |
* Various bug fixes.
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 01e4f6b..d3ef3a2 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -215,6 +215,7 @@ dnl From Steve Robbins <steve@nyongwa.montreal.qc.ca> dnl From a proposed change made on the autoconf list on 2 Feb 1999 dnl http://sourceware.cygnus.com/ml/autoconf/1999-02/msg00001.html +dnl Patch for AIX 3.2 by Lars Hecking <lhecking@nmrc.ucc.ie> on 17 May 1999 AC_DEFUN(AC_FUNC_SELECT, [AC_CHECK_FUNCS(select) @@ -223,7 +224,7 @@ if test "$ac_cv_func_select" = yes; then AC_MSG_CHECKING([argument types of select()]) AC_CACHE_VAL(ac_cv_type_fd_set_size_t,dnl [AC_CACHE_VAL(ac_cv_type_fd_set,dnl - [for ac_cv_type_fd_set in 'fd_set' 'int'; do + [for ac_cv_type_fd_set in 'fd_set' 'int' 'void'; do for ac_cv_type_fd_set_size_t in 'int' 'size_t' 'unsigned long' 'unsigned'; do for ac_type_timeval in 'struct timeval' 'const struct timeval'; do AC_TRY_COMPILE(dnl |