Mercurial > emacs
changeset 29831:1f33a1633537
Check for fcntl.h. Use AC_FUNC_GETLOADAVG, not simple test for
getloadavg and substitute GETLOADAVG_LIBS. Simplify test for
GETTIMEOFDAY_ONE_ARGUMENT.
author | Dave Love <fx@gnu.org> |
---|---|
date | Wed, 21 Jun 2000 14:08:44 +0000 |
parents | 74886b751ce2 |
children | 588de129813a |
files | configure.in |
diffstat | 1 files changed, 7 insertions(+), 23 deletions(-) [+] |
line wrap: on
line diff
--- 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 <sys/time.h> -#include <time.h> -#else -#ifdef HAVE_SYS_TIME_H -#include <sys/time.h> -#else -#include <time.h> -#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}")