From 9154c5f7b0e8e1d621acd94c0cb37858703ccaa8 Mon Sep 17 00:00:00 2001 From: Thomas Wouters Date: Mon, 16 Jul 2001 16:07:26 +0000 Subject: [PATCH] Backport of AMK's checkins of configure.in (1.228), config.h.in (2.101) and configure (1.220): [Bug #438050] Check for sys/poll.h in configure script --- config.h.in | 3 +++ configure | 4 ++-- configure.in | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/config.h.in b/config.h.in index 58683147c079..454377cc84a6 100644 --- a/config.h.in +++ b/config.h.in @@ -608,6 +608,9 @@ /* Define if you have the header file. */ #undef HAVE_SYS_PARAM_H +/* Define if you have the header file. */ +#undef HAVE_SYS_POLL_H + /* Define if you have the header file. */ #undef HAVE_SYS_RESOURCE_H diff --git a/configure b/configure index 54b6d3956391..9cb2eea94756 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #! /bin/sh -# From configure.in Revision: 1.215.2.3 +# From configure.in Revision: 1.215.2.4 # Guess values for system-dependent variables and create Makefiles. # Generated automatically using autoconf version 2.13 @@ -1815,7 +1815,7 @@ fi for ac_hdr in dlfcn.h fcntl.h limits.h locale.h ncurses.h poll.h pthread.h \ signal.h stdarg.h stddef.h stdlib.h thread.h unistd.h utime.h termios.h \ sys/audioio.h sys/file.h sys/lock.h sys/modem.h db_185.h db.h \ -sys/param.h sys/select.h sys/socket.h sys/time.h sys/times.h \ +sys/param.h sys/poll.h sys/select.h sys/socket.h sys/time.h sys/times.h \ sys/un.h sys/utsname.h sys/wait.h pty.h libutil.h \ ndbm.h db1/ndbm.h gdbm/ndbm.h sys/resource.h do diff --git a/configure.in b/configure.in index 7e0ca7397aa8..9474d9c127b6 100644 --- a/configure.in +++ b/configure.in @@ -382,7 +382,7 @@ AC_HEADER_STDC AC_CHECK_HEADERS(dlfcn.h fcntl.h limits.h locale.h ncurses.h poll.h pthread.h \ signal.h stdarg.h stddef.h stdlib.h thread.h unistd.h utime.h termios.h \ sys/audioio.h sys/file.h sys/lock.h sys/modem.h db_185.h db.h \ -sys/param.h sys/select.h sys/socket.h sys/time.h sys/times.h \ +sys/param.h sys/poll.h sys/select.h sys/socket.h sys/time.h sys/times.h \ sys/un.h sys/utsname.h sys/wait.h pty.h libutil.h \ ndbm.h db1/ndbm.h gdbm/ndbm.h sys/resource.h) AC_HEADER_DIRENT -- 2.47.3