summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorTomasz Bursztyka <tomasz.bursztyka@linux.intel.com>2014-01-20 17:56:41 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2014-01-20 17:01:56 +0100
commita4e1098169a67716a81316c36ce22ddcb33df1c0 (patch)
treef5b639a67053803bb4ad068a85356659bfc8fa97 /configure.ac
parent4182478977685b0cbe71eb3d75f004f23a775d6c (diff)
nft: Use new libnftnl library name against former libnftables
Adapt the current code to use the new library name libnftnl. Signed-off-by: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index cbbf66df..ac7c9c00 100644
--- a/configure.ac
+++ b/configure.ac
@@ -123,9 +123,9 @@ PKG_CHECK_MODULES([libmnl], [libmnl >= 1.0],
[mnl=1], [mnl=0])
AM_CONDITIONAL([HAVE_LIBMNL], [test "$mnl" = 1])
-PKG_CHECK_MODULES([libnftables], [libnftables >= 1.0],
+PKG_CHECK_MODULES([libnftnl], [libnftnl >= 1.0],
[nftables=1], [nftables=0])
-AM_CONDITIONAL([HAVE_LIBNFTABLES], [test "$nftables" = 1])
+AM_CONDITIONAL([HAVE_LIBNFTNL], [test "$nftables" = 1])
AM_PROG_LEX
AC_PROG_YACC