summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 1bb1667)
raw | patch | inline | side by side (parent: 1bb1667)
author | Andrew Elwell <Andrew.Elwell@gmail.com> | |
Sun, 26 Feb 2012 21:32:08 +0000 (22:32 +0100) | ||
committer | Florian Forster <octo@collectd.org> | |
Tue, 28 Feb 2012 08:13:30 +0000 (09:13 +0100) |
./configure --enable-iptables was failing on fedora as iptc_init
wasn't found. This patches configure.in to also look in ip4tc
Signed-off-by: Florian Forster <octo@collectd.org>
wasn't found. This patches configure.in to also look in ip4tc
Signed-off-by: Florian Forster <octo@collectd.org>
configure.in | patch | blob | history |
diff --git a/configure.in b/configure.in
index 0acad7064b5747b44cc61d80edf0d5d27b42ad97..02a6361b6d0140b9173291f97564291b02182981 100644 (file)
--- a/configure.in
+++ b/configure.in
AC_CHECK_TYPES([iptc_handle_t, ip6tc_handle_t], [], [])
fi
# Check for the iptc_init symbol in the library.
+# This could be in iptc or ip4tc
if test "x$with_libiptc" = "xpkgconfig"
then
- AC_CHECK_LIB(iptc, iptc_init,
+ AC_SEARCH_LIBS(iptc_init, [iptc ip4tc],
[with_libiptc="pkgconfig"],
[with_libiptc="no"],
[$with_libiptc_libs])