From bb6afa9a774bc4ef277b6c208fece94308f02068 Mon Sep 17 00:00:00 2001 From: Jonathan Rajotte Date: Mon, 23 Feb 2015 22:29:23 -0500 Subject: [PATCH] Configure: add missing check of headers Signed-off-by: Jonathan Rajotte Signed-off-by: Mathieu Desnoyers --- configure.ac | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure.ac b/configure.ac index 1ea744c..d847da7 100644 --- a/configure.ac +++ b/configure.ac @@ -61,6 +61,9 @@ AC_CHECK_FUNCS( [bzero gettimeofday munmap sched_getcpu strtoul sysconf gettid memeset strerror] ) +# Check for headers +AC_CHECK_HEADERS([limits.h stddef.h sys/time.h]) + # Find arch type AS_CASE([$host_cpu], [i386], [ARCHTYPE="x86" && SUBARCHTYPE="x86compat"], -- 2.34.1