aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xconfigure1.in13
1 files changed, 12 insertions, 1 deletions
diff --git a/configure1.in b/configure1.in
index 175584fabc8..c11f88ac645 100755
--- a/configure1.in
+++ b/configure1.in
@@ -1209,6 +1209,17 @@ AC_COMPILE_CHECK(struct utimbuf, [#ifdef TIME_WITH_SYS_TIME
1209 1209
1210dnl checks for typedefs 1210dnl checks for typedefs
1211AC_RETSIGTYPE 1211AC_RETSIGTYPE
1212AC_COMPILE_CHECK(struct timeval, [#ifdef TIME_WITH_SYS_TIME
1213#include <sys/time.h>
1214#include <time.h>
1215#else
1216#ifdef HAVE_SYS_TIME_H
1217#include <sys/time.h>
1218#else
1219#include <time.h>
1220#endif
1221#endif], [static struct timeval x; x.tv_sec = x.tv_usec;],
1222 AC_DEFINE(HAVE_TIMEVAL))
1212 1223
1213dnl checks for structure members 1224dnl checks for structure members
1214AC_STRUCT_TM 1225AC_STRUCT_TM
@@ -1545,7 +1556,7 @@ AC_ALLOCA
1545AC_HAVE_LIBRARY(-lm) 1556AC_HAVE_LIBRARY(-lm)
1546AC_HAVE_FUNCS(gettimeofday gethostname dup2 rename closedir mkdir rmdir \ 1557AC_HAVE_FUNCS(gettimeofday gethostname dup2 rename closedir mkdir rmdir \
1547random lrand48 bcopy bcmp logb frexp fmod drem ftime res_init setsid \ 1558random lrand48 bcopy bcmp logb frexp fmod drem ftime res_init setsid \
1548strerror fpathconf) 1559strerror fpathconf select)
1549 1560
1550ok_so_far=true 1561ok_so_far=true
1551AC_FUNC_CHECK(socket, , ok_so_far=) 1562AC_FUNC_CHECK(socket, , ok_so_far=)