From 00fdcf27f5ff234d67f865600dd95489f127a0a3 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Sun, 5 Nov 2006 15:52:33 +0000 Subject: [PATCH] r9478@Kushana: nickm | 2006-11-05 10:52:29 -0500 add includes to AC_CHECK_MEMBERS test for timeval.tv_sec. svn:r8906 --- configure.in | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/configure.in b/configure.in index e92eb5e74..abfd1b863 100644 --- a/configure.in +++ b/configure.in @@ -503,7 +503,13 @@ fi AC_FUNC_FSEEKO -AC_CHECK_MEMBERS([struct timeval.tv_sec]) +AC_CHECK_MEMBERS([struct timeval.tv_sec], , , +[#ifdef HAVE_SYS_TYPES_H +#include +#endif +#ifdef HAVE_SYS_TIME_H +#include +#endif]) dnl In case we aren't given a working stdint.h, we'll need to grow our own. dnl Watch out.