summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhil Sutter <phil@nwl.cc>2023-09-30 01:35:48 +0200
committerPhil Sutter <phil@nwl.cc>2023-09-30 01:39:34 +0200
commit54526ee6ecb8bf775557a5afe1b42520ae5f3817 (patch)
treea7225b7324d7fc31e7f3688cffc5162c546f6666
parentcb884bf73a4d8585a7739702ca690fdc590341ba (diff)
build: Bump dependency on libnftnl
Recently added support for broute table emulation requires libnftnl version 1.2.6. Fixes: 73611d5582e72 ("ebtables-nft: add broute table emulation") Signed-off-by: Phil Sutter <phil@nwl.cc>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 488c01eb..b6247ce7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -134,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