diff mbox

[libnetfilter_log] Make it possible to build libipulog

Message ID 20150515184031.GA16749@euler
State Accepted
Delegated to: Pablo Neira
Headers show

Commit Message

Felix Janda May 15, 2015, 6:40 p.m. UTC
commit a1b392b4156db984ab2b695a4a70d113f70cb9b8 had unintentionally
disabled building of libipulog unconditionally

Signed-off-by: Felix Janda <felix.janda@posteo.de>
---
 configure.ac | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

Comments

Pablo Neira Ayuso May 20, 2015, 12:21 p.m. UTC | #1
On Fri, May 15, 2015 at 08:40:31PM +0200, Felix Janda wrote:
> commit a1b392b4156db984ab2b695a4a70d113f70cb9b8 had unintentionally
> disabled building of libipulog unconditionally

Applied, thanks.
--
To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/configure.ac b/configure.ac
index 88ff7ab..c4cc662 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])