diff options
author | Corubba Smith <corubba@gmx.de> | 2025-03-29 12:07:06 +0100 |
---|---|---|
committer | Florian Westphal <fw@strlen.de> | 2025-03-29 14:43:13 +0100 |
commit | 2f49c9bb6a9e4b7ed26d8e487e372695031aa5f9 (patch) | |
tree | 187e6e8999db69e243d9d525e31ebb1cf689cf1f /configure.ac | |
parent | 3461d6da787a349c868d1dca896cc2c1207a6cd8 (diff) |
ulog: remove input plugin
The ULOG target was removed from the linux kernel with 7200135bc1e6
("netfilter: kill ulog targets") aka v3.17, so remove the input plugin
for it. It's successor NFLOG should be used instead, which has its own
input plugin.
Signed-off-by: Corubba Smith <corubba@gmx.de>
Signed-off-by: Florian Westphal <fw@strlen.de>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/configure.ac b/configure.ac index 3c9249e..dca8a2a 100644 --- a/configure.ac +++ b/configure.ac @@ -37,13 +37,6 @@ AC_CHECK_FUNCS([socket strerror]) AC_SEARCH_LIBS([pthread_create], [pthread], [libpthread_LIBS="$LIBS"; LIBS=""]) AC_SUBST([libpthread_LIBS]) -AC_ARG_ENABLE([ulog], - [AS_HELP_STRING([--enable-ulog], [Enable ulog module [default=yes]])], - [enable_ulog=$enableval], - [enable_ulog=yes]) -AS_IF([test "x$enable_ulog" != "xyes"], [enable_ulog=no]) -AM_CONDITIONAL([BUILD_ULOG], [test "x$enable_ulog" = "xyes"]) - dnl Check for the right nfnetlink version PKG_CHECK_MODULES([LIBNFNETLINK], [libnfnetlink >= 1.0.1]) @@ -297,7 +290,6 @@ Ulogd configuration: NFLOG plugin: ${enable_nflog} NFCT plugin: ${enable_nfct} NFACCT plugin: ${enable_nfacct} - ULOG plugin: ${enable_ulog} Output plugins: PCAP plugin: ${enable_pcap} PGSQL plugin: ${enable_pgsql} |