# HG changeset patch # User Dave Love # Date 961596524 0 # Node ID 1f33a163353754c7fa25f62a626376089ca57aff # Parent 74886b751ce2ea7c6f13c78969647665f706769c Check for fcntl.h. Use AC_FUNC_GETLOADAVG, not simple test for getloadavg and substitute GETLOADAVG_LIBS. Simplify test for GETTIMEOFDAY_ONE_ARGUMENT. diff -r 74886b751ce2 -r 1f33a1633537 configure.in --- a/configure.in Wed Jun 21 07:35:25 2000 +0000 +++ b/configure.in Wed Jun 21 14:08:44 2000 +0000 @@ -1158,7 +1158,7 @@ dnl checks for header files AC_CHECK_HEADERS(sys/select.h sys/timeb.h sys/time.h unistd.h utime.h \ linux/version.h sys/systeminfo.h termios.h limits.h string.h stdlib.h \ - termcap.h stdio_ext.h) + termcap.h stdio_ext.h fcntl.h) AC_HEADER_STDC AC_HEADER_TIME AC_DECL_SYS_SIGLIST @@ -1868,13 +1868,15 @@ random lrand48 bcopy bcmp logb frexp fmod rint cbrt ftime res_init setsid \ strerror fpathconf select mktime euidaccess getpagesize tzset setlocale \ utimes setrlimit setpgid getcwd getwd shutdown strftime getaddrinfo \ -__fpending getloadavg mblen mbrlen strsignal setitimer ualarm) +__fpending mblen mbrlen strsignal setitimer ualarm) AC_FUNC_MKTIME if test "$ac_cv_func_working_mktime" = no; then AC_DEFINE(BROKEN_MKTIME) fi +AC_FUNC_GETLOADAVG + AC_SYS_LARGEFILE AC_CHECK_FUNCS(ftello) @@ -1980,28 +1982,9 @@ #endif #endif], [struct timeval time; - struct timezone dummy; - gettimeofday (&time, &dummy);], + gettimeofday (&time, 0);], emacs_cv_gettimeofday_two_arguments=yes, -dnl The above test loses, e.g. on OSF 5.0 with _XOPEN_SOURCE defined by -dnl AC_SYS_LARGEFILE, because struct timezone is hidden. -dnl Try again assuming a void * second arg. - AC_TRY_LINK([ -#ifdef TIME_WITH_SYS_TIME -#include -#include -#else -#ifdef HAVE_SYS_TIME_H -#include -#else -#include -#endif -#endif], - [struct timeval time; - int dummy; - gettimeofday (&time, &dummy);], - emacs_cv_gettimeofday_two_arguments=yes, - emacs_cv_gettimeofday_two_arguments=no))) + emacs_cv_gettimeofday_two_arguments=no)) if test $emacs_cv_gettimeofday_two_arguments = no; then AC_DEFINE(GETTIMEOFDAY_ONE_ARGUMENT) fi @@ -2076,6 +2059,7 @@ AC_SUBST(X_TOOLKIT_TYPE) AC_SUBST(machfile) AC_SUBST(opsysfile) +AC_SUBST(GETLOADAVG_LIBS) AC_DEFINE_UNQUOTED(EMACS_CONFIGURATION, "${canonical}") AC_DEFINE_UNQUOTED(EMACS_CONFIG_OPTIONS, "${ac_configure_args}")