summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorPhil Sutter <phil@nwl.cc>2020-06-03 11:41:55 +0200
committerPhil Sutter <phil@nwl.cc>2020-06-03 12:29:03 +0200
commit50564b7adda0853c52b68bfd48115c577436bf1c (patch)
treee75f920f2ec5c06d5d5e543b4a9d3bb6b59436a6 /configure.ac
parent15f8a82a89650d51186778e86bf23fb458f32db9 (diff)
build: bump dependency on libnftnl
Recently added full among match support depends on concatenated ranges in nftables sets, a feature which was not available in libnftnl before version 1.1.6. Fixes: c33bae9c6c7a4 ("ebtables: among: Support mixed MAC and MAC/IP entries") Signed-off-by: Phil Sutter <phil@nwl.cc>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 02f6481c..d2f63694 100644
--- a/configure.ac
+++ b/configure.ac
@@ -131,7 +131,7 @@ if test "x$enable_nftables" = "xyes"; then
exit 1
fi
- PKG_CHECK_MODULES([libnftnl], [libnftnl >= 1.1.5], [nftables=1], [nftables=0])
+ PKG_CHECK_MODULES([libnftnl], [libnftnl >= 1.1.6], [nftables=1], [nftables=0])
if test "$nftables" = 0;
then