From 93116b4c1ab9a6ce56eb912ceb63a1b2fe0a7784 Mon Sep 17 00:00:00 2001 From: Felix Janda Date: Fri, 15 May 2015 20:40:31 +0200 Subject: configure: Make it possible to build libipulog commit a1b392b4156db984ab2b695a4a70d113f70cb9b8 had unintentionally disabled building of libipulog unconditionally Signed-off-by: Felix Janda Signed-off-by: Pablo Neira Ayuso --- configure.ac | 5 ++--- 1 file 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]) -- cgit v1.2.3