Applied changes for AIX. This involved using <sys/select.h> if it's available.

CVS patchset: 1638
CVS date: 1997/05/16 15:32:57
This commit is contained in:
ewt 1997-05-16 15:32:57 +00:00
parent 95eca93972
commit 1296efb89a
9 changed files with 15 additions and 2 deletions

View File

@ -5,6 +5,7 @@
#include <stdlib.h>
#include <stdio.h>
#include <sys/resource.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <unistd.h>

View File

@ -3,9 +3,10 @@
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
#include <sys/resource.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/stat.h>
#include <signal.h>
#include <fcntl.h>
#include <string.h>

View File

@ -6,6 +6,7 @@
#include <signal.h>
#include <fcntl.h>
#include <ctype.h>
#include <sys/resource.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/stat.h>

View File

@ -71,4 +71,7 @@
/* Define as 1 if chown() or chgrp() follows symlinks */
#define CHOWN_FOLLOWS_SYMLINK 0
/* Define as 1 if you have <sys/select.h> */
#define HAVE_SYS_SELECT_H 0
#endif

View File

@ -218,7 +218,7 @@ dnl Checks for header files we can live without.
AC_HEADER_STDC
AC_HEADER_MAJOR
AC_CHECK_HEADERS(netinet/in_systm.h limits.h)
AC_CHECK_HEADERS(alloca.h dirent.h sys/socket.h)
AC_CHECK_HEADERS(alloca.h dirent.h sys/socket.h sys/select.h)
AC_CHECK_HEADERS(machine/types.h string.h)
AC_CHECK_HEADERS(glob.h,,MISCOBJS="$MISCOBJS glob.o")
AC_CHECK_HEADERS(fnmatch.h,,MISCOBJS="$MISCOBJS fnmatch.o")

View File

@ -9,6 +9,7 @@
#include <stdlib.h>
#include <string.h>
#include <signal.h>
#include <sys/resource.h>
#include <sys/stat.h> /* needed for mkdir(2) prototype! */
#include <sys/types.h>
#include <sys/wait.h>

View File

@ -8,6 +8,7 @@
#include <fcntl.h>
#include <stdlib.h>
#include <string.h>
#include <sys/resource.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/wait.h>

View File

@ -8,6 +8,7 @@
#include <fcntl.h>
#include <stdlib.h>
#include <string.h>
#include <sys/resource.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <unistd.h>

View File

@ -54,4 +54,8 @@ extern void *myrealloc(void *, size_t);
#include <limits.h>
#endif
#if HAVE_SYS_SELECT_H
#include <sys/select.h>
#endif
#endif