From a1b392b4156db984ab2b695a4a70d113f70cb9b8 Mon Sep 17 00:00:00 2001 From: Matthieu Crapet Date: Wed, 5 Feb 2014 14:18:57 +0100 Subject: configure: add --without-ipulog option to disable libipulog build This is a compat library used for netfilter ULOG target. ULOG only works with IPv4. NFLOG has replaced ULOG. Signed-off-by: Matthieu Crapet Signed-off-by: Pablo Neira Ayuso --- configure.ac | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 189a753..88ff7ab 100644 --- a/configure.ac +++ b/configure.ac @@ -24,6 +24,11 @@ case "$host" in *) AC_MSG_ERROR([Linux only, dude!]);; 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]) + dnl Dependencies PKG_CHECK_MODULES([LIBNFNETLINK], [libnfnetlink >= 0.0.41]) -- cgit v1.2.3