check for net/route.h and sys/sysctl.h
This commit is contained in:
parent
4d5456c7de
commit
3235473bc8
|
@ -404,6 +404,7 @@ AC_CHECK_HEADERS([ \
|
||||||
sys/strtio.h \
|
sys/strtio.h \
|
||||||
sys/statvfs.h \
|
sys/statvfs.h \
|
||||||
sys/sysmacros.h \
|
sys/sysmacros.h \
|
||||||
|
sys/sysctl.h \
|
||||||
sys/time.h \
|
sys/time.h \
|
||||||
sys/timers.h \
|
sys/timers.h \
|
||||||
time.h \
|
time.h \
|
||||||
|
@ -427,6 +428,11 @@ AC_CHECK_HEADERS([sys/capsicum.h], [], [], [
|
||||||
#endif
|
#endif
|
||||||
])
|
])
|
||||||
|
|
||||||
|
# net/route.h requires sys/socket.h
|
||||||
|
AC_CHECK_HEADERS([net/route.h], [], [], [
|
||||||
|
#include <sys/socket.h>
|
||||||
|
])
|
||||||
|
|
||||||
# lastlog.h requires sys/time.h to be included first on Solaris
|
# lastlog.h requires sys/time.h to be included first on Solaris
|
||||||
AC_CHECK_HEADERS([lastlog.h], [], [], [
|
AC_CHECK_HEADERS([lastlog.h], [], [], [
|
||||||
#ifdef HAVE_SYS_TIME_H
|
#ifdef HAVE_SYS_TIME_H
|
||||||
|
|
Loading…
Reference in New Issue