ulogd: needs mmu and shared objects
authorGustavo Zacarias <gustavo@zacarias.com.ar>
Tue, 10 Sep 2013 19:26:16 +0000 (16:26 -0300)
committerPeter Korsgaard <jacmet@sunsite.dk>
Thu, 12 Sep 2013 22:20:08 +0000 (00:20 +0200)
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>
package/ulogd/Config.in

index 7dc4f1112382b6ada3b84b578e31e6977c3629d4..a524056aad4b42563f722acf06ac76b3343a8847 100644 (file)
@@ -2,6 +2,8 @@ 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
@@ -12,5 +14,6 @@ config BR2_PACKAGE_ULOGD
 
          http://www.netfilter.org/projects/ulogd/
 
-comment "ulogd requires a toolchain with IPV6 and LARGEFILE support"
-       depends on !BR2_INET_IPV6 || !BR2_LARGEFILE
+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