diff options
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | daemon.c | 7 |
2 files changed, 7 insertions, 2 deletions
diff --git a/configure.in b/configure.in index f531ca25..9ab2db52 100644 --- a/configure.in +++ b/configure.in @@ -23,7 +23,7 @@ AC_HEADER_STDC AC_TYPE_SIZE_T AC_TYPE_PID_T AC_TYPE_SIGNAL -AC_CHECK_HEADERS(unistd.h termios.h termio.h sgtty.h stdarg.h alloca.h sys/itimer.h) +AC_CHECK_HEADERS(unistd.h termios.h termio.h sgtty.h stdarg.h alloca.h sys/itimer.h fcntl.h sys/fcntl.h) AC_C_CONST dnl getopt needs this. @@ -11,7 +11,12 @@ #include <signal.h> #include <sys/types.h> #include <sys/wait.h> -#include <sys/fcntl.h> /* Solaris 2.5 requires this */ +#ifdef HAVE_FCNTL_H +#include <fcntl.h> +#endif /* HAVE_FCNTL_H */ +#ifdef HAVE_SYS_FCNTL_H +#include <sys/fcntl.h> +#endif /* HAVE_SYS_FCNTL_H */ #include <sys/stat.h> /* get umask(2) prototyped */ #if defined(HAVE_UNISTD_H) |