Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/freebsd/poudriere.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2014-03-24 02:39:20 +0400
committerBaptiste Daroussin <bapt@FreeBSD.org>2014-03-24 02:39:20 +0400
commit44ae32f97d54bc6154d354a592eab319ad7bd4bd (patch)
treee8a31eb89bda386983fcc67f9e6e702602877271 /configure.ac
parent8a8ba9845e26608a08ffb6c875f00c628eecc49a (diff)
Reapply [1ca3c5a] and fix by adding the missing bits to configure.ac
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac20
1 files changed, 20 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 020afa15..d6c197a3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,6 +9,26 @@ AC_PROG_RANLIB
AC_CHECK_FUNCS([strftime_l])
+AC_CHECK_HEADERS_ONCE([sys/types.h])
+AC_CHECK_HEADERS_ONCE([sys/stat.h])
+AC_CHECK_HEADERS_ONCE([sys/param.h])
+AC_CHECK_HEADERS_ONCE([sys/mman.h])
+AC_CHECK_HEADERS_ONCE([stdlib.h])
+AC_CHECK_HEADERS_ONCE([stddef.h])
+AC_CHECK_HEADERS_ONCE([stdarg.h])
+AC_CHECK_HEADERS_ONCE([stdbool.h])
+AC_CHECK_HEADERS_ONCE([stdint.h])
+AC_CHECK_HEADERS_ONCE([string.h])
+AC_CHECK_HEADERS_ONCE([unistd.h])
+AC_CHECK_HEADERS_ONCE([ctype.h])
+AC_CHECK_HEADERS_ONCE([errno.h])
+AC_CHECK_HEADERS_ONCE([limits.h])
+AC_CHECK_HEADERS_ONCE([libgen.h])
+AC_CHECK_HEADERS_ONCE([stdio.h])
+AC_CHECK_HEADERS_ONCE([float.h])
+AC_CHECK_HEADERS_ONCE([math.h])
+AC_CHECK_HEADERS_ONCE([fcntl.h])
+
AC_CONFIG_FILES(Makefile)
AC_OUTPUT([src/etc/rc.d/poudriered])