poco: needs threads
authorBaruch Siach <baruch@tkos.co.il>
Tue, 12 Mar 2013 22:15:48 +0000 (22:15 +0000)
committerPeter Korsgaard <jacmet@sunsite.dk>
Wed, 13 Mar 2013 22:06:44 +0000 (23:06 +0100)
Fixes
http://autobuild.buildroot.net/results/98f8ae541939bd7b44601d3ee039bbc84becea84.

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
package/poco/Config.in

index 20a8f2dfa50c66ff56af439420c453ef767fdc1f..b8230717b4fa4a8379a9a409fb88533837bf9bef 100644 (file)
@@ -2,6 +2,7 @@ config BR2_PACKAGE_POCO
        bool "poco"
        depends on BR2_INSTALL_LIBSTDCPP
        depends on BR2_USE_WCHAR
+       depends on BR2_TOOLCHAIN_HAS_THREADS
        select BR2_PACKAGE_ZLIB
        select BR2_PACKAGE_PCRE
        help
@@ -57,5 +58,6 @@ config BR2_PACKAGE_POCO_DATA_MYSQL
 
 endif # BR2_PACKAGE_POCO
 
-comment "poco requires a toolchain with WCHAR and C++ support"
-       depends on !BR2_USE_WCHAR || !BR2_INSTALL_LIBSTDCPP
+comment "poco requires a toolchain with WCHAR, threads, and C++ support"
+       depends on !BR2_USE_WCHAR || !BR2_INSTALL_LIBSTDCPP \
+               || !BR2_TOOLCHAIN_HAS_THREADS