summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 619cdcd)
raw | patch | inline | side by side (parent: 619cdcd)
author | Florian Forster <octo@collectd.org> | |
Thu, 11 Jun 2015 15:32:07 +0000 (16:32 +0100) | ||
committer | Florian Forster <octo@collectd.org> | |
Thu, 11 Jun 2015 15:33:13 +0000 (16:33 +0100) |
Fixes: #348
configure.ac | patch | blob | history |
diff --git a/configure.ac b/configure.ac
index 11c113491a1a2682ec965b6a41b7eb6acde3e15c..22c883893b053ee85206f71e60b117dcb5684291 100644 (file)
--- a/configure.ac
+++ b/configure.ac
#endif
])
-AC_CHECK_TYPES([struct ip6_ext], [], [],
+have_ip6_ext="no"
+AC_CHECK_TYPES([struct ip6_ext], [have_ip6_ext="yes"], [have_ip6_ext="no"],
[#if HAVE_STDINT_H
# include <stdint.h>
#endif
#endif
])
+if test "x$have_ip6_ext" = "xno"; then
+ SAVE_CFLAGS="$CFLAGS"
+ CFLAGS="$CFLAGS -DSOLARIS2=8"
+
+ AC_CHECK_TYPES([struct ip6_ext],
+ [have_ip6_ext="yes, with -DSOLARIS2=8"],
+ [have_ip6_ext="no"],
+[#if HAVE_STDINT_H
+# include <stdint.h>
+#endif
+#if HAVE_SYS_TYPES_H
+# include <sys/types.h>
+#endif
+#if HAVE_NETINET_IN_SYSTM_H
+# include <netinet/in_systm.h>
+#endif
+#if HAVE_NETINET_IN_H
+# include <netinet/in.h>
+#endif
+#if HAVE_NETINET_IP6_H
+# include <netinet/ip6.h>
+#endif
+])
+
+ if test "x$have_ip6_ext" = "xno"; then
+ CFLAGS="$SAVE_CFLAGS"
+ fi
+fi
+
# For cpu modules
AC_CHECK_HEADERS(sys/dkstat.h)
if test "x$ac_system" = "xDarwin"
AC_CHECK_HEADERS(netinet/ip_compat.h)
-AC_CHECK_MEMBER([struct ip6_ext.ip6e_len], [],
-[
-# Solaris needs special definition to have ip6_ext defined
- # Invalidate cache so we can retest
- AS_UNSET([ac_cv_member_struct_ip6_ext_ip6e_len])
-
- SAVE_CFLAGS="$CFLAGS"
- CFLAGS="$CFLAGS -DSOLARIS2=8"
- AC_CHECK_MEMBER([struct ip6_ext.ip6e_len],[c_cv_ip6_ext_needs_d_solaris2_8=yes], [],
-[[#if HAVE_NETINET_IP_COMPAT_H
-# include <netinet/ip_compat.h>
-#endif
-]])
- CFLAGS="$SAVE_CFLAGS"
-],[[#if HAVE_NETINET_IP_COMPAT_H
-# include <netinet/ip_compat.h>
-#endif
-]])
-
-AC_MSG_CHECKING([if struct ip6_ext.ip6e_len reauired -DSOLARIS2=8])
-if test "x$c_cv_ip6_ext_needs_d_solaris2_8" = "xyes"
-then
- AC_MSG_RESULT([yes])
- CFLAGS="$CFLAGS -DSOLARIS2=8"
-else
- AC_MSG_RESULT([no])
-fi
-
have_net_pfvar_h="no"
AC_CHECK_HEADERS(net/pfvar.h,
[have_net_pfvar_h="yes"],