From: Baruch Siach Date: Thu, 1 May 2014 13:16:20 +0000 (+0300) Subject: smack: needs threads X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9b48e4f19d13415a36a4df6b32c23d3c816261e4;p=buildroot.git smack: needs threads Fixes: http://autobuild.buildroot.net/results/38a/38a558be589784bcc700a0e83e2e1e14eed66d83/ Signed-off-by: Baruch Siach Signed-off-by: Peter Korsgaard --- diff --git a/package/smack/Config.in b/package/smack/Config.in index 3f26caecd6..ffbe73c2af 100644 --- a/package/smack/Config.in +++ b/package/smack/Config.in @@ -1,6 +1,7 @@ config BR2_PACKAGE_SMACK bool "smack" depends on !BR2_PREFER_STATIC_LIB # dlfcn.h + depends on BR2_TOOLCHAIN_HAS_THREADS depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0 help User space programs and libraries for SMACK. @@ -29,5 +30,6 @@ config BR2_PACKAGE_SMACK https://github.com/smack-team/smack -comment "smack needs a toolchain w/ dynamic library, headers >= 3.0" - depends on BR2_PREFER_STATIC_LIB || !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0 +comment "smack needs a toolchain w/ dynamic library, threads, headers >= 3.0" + depends on BR2_PREFER_STATIC_LIB || !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0 \ + || !BR2_TOOLCHAIN_HAS_THREADS