summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--package/sconeserver/Config.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/package/sconeserver/Config.in b/package/sconeserver/Config.in
index 4083aa7dce..f03af8dd22 100644
--- a/package/sconeserver/Config.in
+++ b/package/sconeserver/Config.in
@@ -2,6 +2,7 @@ menuconfig BR2_PACKAGE_SCONESERVER
bool "sconeserver"
depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
+ depends on !BR2_STATIC_LIBS # dlopen()
select BR2_PACKAGE_PCRE
help
Sconeserver is a modular, object-orientated and extremely versatile
@@ -102,5 +103,6 @@ comment "ui module requires X.org"
endif # BR2_PACKAGE_SCONESERVER
-comment "sconeserver needs a toolchain w/ C++, NPTL"
- depends on !(BR2_INSTALL_LIBSTDCPP && BR2_TOOLCHAIN_HAS_THREADS_NPTL)
+comment "sconeserver needs a toolchain with dynamic library, C++, NPTL"
+ depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS_NPTL \
+ || BR2_STATIC_LIBS
OpenPOWER on IntegriCloud