diff mbox

[1/2] poco: needs threads

Message ID 00f6f81991bf095cfd67cff42e32a4881435236b.1363162371.git.baruch@tkos.co.il
State Accepted
Commit 55700e9871d6f74c280aaf399a7b3d91252640ba
Headers show

Commit Message

Baruch Siach March 13, 2013, 8:15 a.m. UTC
Fixes
http://autobuild.buildroot.net/results/98f8ae541939bd7b44601d3ee039bbc84becea84.

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 package/poco/Config.in |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

Comments

Peter Korsgaard March 13, 2013, 10:07 p.m. UTC | #1
>>>>> "Baruch" == Baruch Siach <baruch@tkos.co.il> writes:

 Baruch> Fixes
 Baruch> http://autobuild.buildroot.net/results/98f8ae541939bd7b44601d3ee039bbc84becea84.

Committed both, thanks.
diff mbox

Patch

diff --git a/package/poco/Config.in b/package/poco/Config.in
index 20a8f2d..b823071 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