diff --git a/CHANGES b/CHANGES index e88922d..0c1826b 100644 --- a/CHANGES +++ b/CHANGES @@ -322,6 +322,9 @@ porting: David Arnstein contributed a patch for NetBSD 5.1 including stdbool.h support and appropriate files in Config/ + Lauri Tirkkonen contributed a patch regarding netinet/if_ether.h + on Illumos + new features: added option max-children that limits the number of concurrent child processes. Thanks to Sam Liddicott for providing the patch. diff --git a/configure.in b/configure.in index d6ec038..8e59df0 100644 --- a/configure.in +++ b/configure.in @@ -313,7 +313,12 @@ if test "$WITH_INTERFACE"; then AC_CHECK_HEADER(netinet/if_ether.h, AC_DEFINE(HAVE_NETINET_IF_ETHER_H), [WITH_INTERFACE=; - AC_MSG_WARN([include file netinet/if_ether.h not found, disabling interface])]) + AC_MSG_WARN([include file netinet/if_ether.h not found, disabling interface])], + [AC_INCLUDES_DEFAULT + #if HAVE_NET_IF_H && HAVE_NETINET_IN_H + #include + #include + #endif]) fi if test "$WITH_INTERFACE"; then AC_DEFINE(WITH_INTERFACE)