summaryrefslogtreecommitdiffstats
path: root/contrib/bmake/configure.in
diff options
context:
space:
mode:
authorsjg <sjg@FreeBSD.org>2015-12-08 01:29:07 +0000
committersjg <sjg@FreeBSD.org>2015-12-08 01:29:07 +0000
commitf25d8749d49c2dac52891bc0b98559f77826a558 (patch)
tree318e0c200a044475b5d659b07c75b7cdd77b14e1 /contrib/bmake/configure.in
parent26eb4f225d52c3489b3178b0095927b181f82178 (diff)
downloadFreeBSD-src-f25d8749d49c2dac52891bc0b98559f77826a558.zip
FreeBSD-src-f25d8749d49c2dac52891bc0b98559f77826a558.tar.gz
Merge bmake-20151201
Diffstat (limited to 'contrib/bmake/configure.in')
-rw-r--r--contrib/bmake/configure.in15
1 files changed, 12 insertions, 3 deletions
diff --git a/contrib/bmake/configure.in b/contrib/bmake/configure.in
index ae3e425..c4b6808 100644
--- a/contrib/bmake/configure.in
+++ b/contrib/bmake/configure.in
@@ -1,11 +1,11 @@
dnl
dnl RCSid:
-dnl $Id: configure.in,v 1.54 2015/10/10 04:17:10 sjg Exp $
+dnl $Id: configure.in,v 1.56 2015/10/25 05:20:48 sjg Exp $
dnl
dnl Process this file with autoconf to produce a configure script
dnl
AC_PREREQ(2.50)
-AC_INIT([bmake], [20151009], [sjg@NetBSD.org])
+AC_INIT([bmake], [20151022], [sjg@NetBSD.org])
AC_CONFIG_HEADERS(config.h)
dnl make srcdir absolute
@@ -101,10 +101,19 @@ AC_HEADER_STDC
AC_HEADER_SYS_WAIT
AC_HEADER_DIRENT
dnl Keep this list sorted
+AC_CHECK_HEADERS(sys/param.h)
+dnl On BSDi at least we really need sys/param.h for sys/sysctl.h
+AC_CHECK_HEADERS([sys/sysctl.h], [], [],
+[#ifdef HAVE_SYS_PARAM_H
+# include <sys/param.h>
+# endif
+])
+
AC_CHECK_HEADERS( \
ar.h \
err.h \
fcntl.h \
+ libgen.h \
limits.h \
paths.h \
poll.h \
@@ -113,7 +122,6 @@ AC_CHECK_HEADERS( \
sys/mman.h \
sys/select.h \
sys/socket.h \
- sys/sysctl.h \
sys/time.h \
sys/uio.h \
unistd.h \
@@ -143,6 +151,7 @@ AC_C_CONST
AC_TYPE_OFF_T
AC_TYPE_PID_T
AC_TYPE_SIZE_T
+AC_TYPE_UINT32_T
AC_DECL_SYS_SIGLIST
AC_HEADER_TIME
AC_STRUCT_TM
OpenPOWER on IntegriCloud