summaryrefslogtreecommitdiffstats
path: root/package/poco
diff options
context:
space:
mode:
authorBaruch Siach <baruch@tkos.co.il>2013-03-12 22:15:48 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2013-03-13 23:06:44 +0100
commit55700e9871d6f74c280aaf399a7b3d91252640ba (patch)
tree267706f428a0b5df0fb98124a4bbd50f78410490 /package/poco
parenta7fbcd013be42075a3c98056bcb82a471c2ff7a3 (diff)
downloadbuildroot-novena-55700e9871d6f74c280aaf399a7b3d91252640ba.tar.gz
buildroot-novena-55700e9871d6f74c280aaf399a7b3d91252640ba.zip
poco: needs threads
Fixes http://autobuild.buildroot.net/results/98f8ae541939bd7b44601d3ee039bbc84becea84. Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/poco')
-rw-r--r--package/poco/Config.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/package/poco/Config.in b/package/poco/Config.in
index 20a8f2dfa..b8230717b 100644
--- a/package/poco/Config.in
+++ b/package/poco/Config.in
@@ -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