]> git.ipfire.org Git - thirdparty/iptables.git/blobdiff - configure.ac
man: Do not escape exclamation marks
[thirdparty/iptables.git] / configure.ac
index bc2ed47b78653744e7ed03aa59d24f352e5c3985..d99fa3b95bd75498b3636bf87bab2e3f5f848c87 100644 (file)
@@ -1,5 +1,5 @@
 
-AC_INIT([iptables], [1.8.9])
+AC_INIT([iptables], [1.8.10])
 
 # See libtool.info "Libtool's versioning system"
 libxtables_vcurrent=19
@@ -113,14 +113,15 @@ AM_CONDITIONAL([ENABLE_SYNCONF], [test "$enable_nfsynproxy" = "yes"])
 AM_CONDITIONAL([ENABLE_NFTABLES], [test "$enable_nftables" = "yes"])
 AM_CONDITIONAL([ENABLE_CONNLABEL], [test "$enable_connlabel" = "yes"])
 
-if test "x$enable_bpfc" = "xyes" || test "x$enable_nfsynproxy" = "xyes"; then
-       AC_CHECK_LIB(pcap, pcap_compile,, AC_MSG_ERROR(missing libpcap library required by bpf compiler or nfsynproxy tool))
-fi
-
 PKG_CHECK_MODULES([libnfnetlink], [libnfnetlink >= 1.0],
        [nfnetlink=1], [nfnetlink=0])
 AM_CONDITIONAL([HAVE_LIBNFNETLINK], [test "$nfnetlink" = 1])
 
+if test "x$enable_bpfc" = "xyes" || test "x$enable_nfsynproxy" = "xyes"; then
+       PKG_CHECK_MODULES([libpcap], [libpcap], [], [
+               AC_MSG_ERROR(missing libpcap library required by bpf compiler or nfsynproxy tool)])
+fi
+
 if test "x$enable_nftables" = "xyes"; then
        PKG_CHECK_MODULES([libmnl], [libmnl >= 1.0], [mnl=1], [mnl=0])
 
@@ -133,7 +134,7 @@ if test "x$enable_nftables" = "xyes"; then
                exit 1
        fi
 
-       PKG_CHECK_MODULES([libnftnl], [libnftnl >= 1.1.6], [nftables=1], [nftables=0])
+       PKG_CHECK_MODULES([libnftnl], [libnftnl >= 1.2.6], [nftables=1], [nftables=0])
 
        if test "$nftables" = 0;
        then