f560d38dc8
The plugin infrastructure is based on shared objects so it won't build for static-only scenarios. And the daemon uses fork() so MMU is required. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
20 lines
639 B
Plaintext
20 lines
639 B
Plaintext
config BR2_PACKAGE_ULOGD
|
|
bool "ulogd"
|
|
depends on BR2_INET_IPV6
|
|
depends on BR2_LARGEFILE
|
|
depends on !BR2_PREFER_STATIC_LIB
|
|
depends on BR2_USE_MMU
|
|
select BR2_PACKAGE_LIBMNL
|
|
select BR2_PACKAGE_LIBNETFILTER_ACCT
|
|
select BR2_PACKAGE_LIBNETFILTER_CONNTRACK
|
|
select BR2_PACKAGE_LIBNETFILTER_LOG
|
|
select BR2_PACKAGE_LIBNFNETLINK
|
|
help
|
|
ulogd is a userspace logging daemon for netfilter/iptables related logging.
|
|
|
|
http://www.netfilter.org/projects/ulogd/
|
|
|
|
comment "ulogd requires a toolchain with IPV6, LARGEFILE and dynamic library support"
|
|
depends on !BR2_INET_IPV6 || !BR2_LARGEFILE || BR2_PREFER_STATIC_LIB
|
|
depends on BR2_USE_MMU
|