diff options
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 0e1640b..7ed536e 100644 --- a/configure.in +++ b/configure.in @@ -468,6 +468,12 @@ dnl AC_HEADER_STDC AC_HEADER_TIME +dnl ---------------------------------------------------------------------- +dnl Check for these two functions before <sys/time.h> is checked for, otherwise +dnl they are not detected correctly on Solaris [2.6]. +dnl +AC_CHECK_FUNCS(difftime gettimeofday) + dnl Unix AC_CHECK_HEADERS([sys/resource.h sys/time.h unistd.h sys/ioctl.h sys/stat.h]) AC_CHECK_HEADERS([sys/socket.h sys/types.h]) @@ -1287,8 +1293,8 @@ AC_MSG_RESULT(no)) dnl ---------------------------------------------------------------------- dnl Check for functions. dnl -AC_CHECK_FUNCS(difftime fork gethostname getpwuid getrusage) -AC_CHECK_FUNCS(gettimeofday BSDgettimeofday longjmp setsysinfo sigaction) +AC_CHECK_FUNCS(fork gethostname getpwuid getrusage) +AC_CHECK_FUNCS(BSDgettimeofday longjmp setsysinfo sigaction) AC_CHECK_FUNCS(signal snprintf vsnprintf strdup system waitpid) dnl ---------------------------------------------------------------------- |