summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorFelix Janda <felix.janda@posteo.de>2015-05-15 20:40:31 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2015-05-20 14:18:12 +0200
commit93116b4c1ab9a6ce56eb912ceb63a1b2fe0a7784 (patch)
treef4f2e4f01d3c079fffabbcd8b2788bedaee4dcdd /configure.ac
parente5b27688d9b2640c38928313424802400e0143cd (diff)
configure: Make it possible to build libipulog
commit a1b392b4156db984ab2b695a4a70d113f70cb9b8 had unintentionally disabled building of libipulog unconditionally Signed-off-by: Felix Janda <felix.janda@posteo.de> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac5
1 files changed, 2 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 88ff7ab..cdcbc90 100644
--- a/configure.ac
+++ b/configure.ac
@@ -25,9 +25,8 @@ case "$host" in
esac
AC_ARG_WITH([ipulog],
- AC_HELP_STRING([--without-ipulog], [don't build libipulog compat library]),
- [ipulog_skip=1], [ipulog_skip=0])
-AM_CONDITIONAL([BUILD_IPULOG], [test $ipulog_skip = 0])
+ AC_HELP_STRING([--without-ipulog], [don't build libipulog compat library]))
+AM_CONDITIONAL([BUILD_IPULOG], [test "x$with_ipulog" != xno])
dnl Dependencies
PKG_CHECK_MODULES([LIBNFNETLINK], [libnfnetlink >= 0.0.41])