summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorNicolas Dichtel <nicolas.dichtel@6wind.com>2013-03-06 05:00:31 +0000
committerPablo Neira Ayuso <pablo@netfilter.org>2013-12-30 23:50:28 +0100
commit98ffe9f8a5aa730fed0a5b2f2ac337ca2511700e (patch)
tree79ed854e98a91a490f6f50db55dbcabb7337bf64 /configure.ac
parent275283f176152a84212a37bb043d610077c7435b (diff)
iptables: fix compilation when lib[mnl|nftables] are not in standard path
There was several problems: a typo in the configure option a typo in CFLAGS addon for libmnl and libnftables paths to lib were missing on link Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
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 eb2c367b..cbbf66df 100644
--- a/configure.ac
+++ b/configure.ac
@@ -123,7 +123,7 @@ PKG_CHECK_MODULES([libmnl], [libmnl >= 1.0],
[mnl=1], [mnl=0])
AM_CONDITIONAL([HAVE_LIBMNL], [test "$mnl" = 1])
-PKG_CHECK_MODULES([libnfables], [libnftables >= 1.0],
+PKG_CHECK_MODULES([libnftables], [libnftables >= 1.0],
[nftables=1], [nftables=0])
AM_CONDITIONAL([HAVE_LIBNFTABLES], [test "$nftables" = 1])