summaryrefslogtreecommitdiff
path: root/package/cppcms
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2014-05-13 00:09:19 +0200
committerPeter Korsgaard <peter@korsgaard.com>2014-05-13 00:18:04 +0200
commitf015ad1c7b7453b38b19356882d434254f23b9cf (patch)
tree7e06bc08512e31ccc7bd09f1aafe1113dc2e556e /package/cppcms
parent4ee7714460fe5f7821371baef8f6dff1f37fbef1 (diff)
cppcms: needs NPTL support
cppcms uses some thread functions that are not available in certain uClibc thread implementations. Even though a bit more restrictive than necessary, adding a NPTL dependency is the easiest solution, and is quite logical for a relatively large and complex package such as cppcms. Fixes: http://autobuild.buildroot.net/results/a26/a26574419aacbea4140dfca1d503bcab599edd71/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/cppcms')
-rw-r--r--package/cppcms/Config.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/package/cppcms/Config.in b/package/cppcms/Config.in
index 688d8f20c..614abeb55 100644
--- a/package/cppcms/Config.in
+++ b/package/cppcms/Config.in
@@ -4,7 +4,7 @@ config BR2_PACKAGE_CPPCMS
select BR2_PACKAGE_PCRE
select BR2_PACKAGE_LIBGCRYPT
depends on BR2_INSTALL_LIBSTDCPP
- depends on BR2_TOOLCHAIN_HAS_THREADS
+ depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
depends on !BR2_PREFER_STATIC_LIB # dlopen()
help
CppCMS is a Free High Performance Web Development Framework
@@ -39,6 +39,6 @@ comment "icu support needs a toolchain w/ wchar"
endif
-comment "cppcms needs a toolchain w/ C++, threads, dynamic library"
- depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
+comment "cppcms needs a toolchain w/ C++, NPTL, dynamic library"
+ depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS_NPTL || \
BR2_PREFER_STATIC_LIB