From: octo Date: Sun, 12 Mar 2006 21:44:08 +0000 (+0000) Subject: Check for sys/types.h when including netinet/ip6.h X-Git-Tag: collectd-3.8.6^2~118 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=6fe070310d30dfc486bd5b27dc361f1f339aa1ce;p=collectd.git Check for sys/types.h when including netinet/ip6.h --- diff --git a/configure.in b/configure.in index 3d640cb7..d5c4775d 100644 --- a/configure.in +++ b/configure.in @@ -104,6 +104,9 @@ AC_CHECK_HEADERS(netinet/ip6.h, [], [], [#if HAVE_STDINT_H # include #endif +#if HAVE_SYS_TYPES_H +# include +#endif #if HAVE_NETINET_IN_SYSTM_H # include #endif @@ -115,6 +118,9 @@ AC_CHECK_HEADERS(netinet/icmp6.h, [], [], [#if HAVE_STDINT_H # include #endif +#if HAVE_SYS_TYPES_H +# include +#endif #if HAVE_NETINET_IN_SYSTM_H # include #endif