summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2015-11-08 16:05:21 +0100
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2015-11-08 16:05:21 +0100
commit54fde8949373d6e010eefaf1e1fa8edc19cb4d4f (patch)
treef0cdd47c13418e63cf34edbe62cefbda3cf4e23e
parent226d23c3f9a77bdf432ef240ae917a20a012edb8 (diff)
mongrel2: uses dlopen(), needs dynamic library support
Fixes: http://autobuild.buildroot.net/results/c5e/c5ecfe4a5ad3712d65293de517a24e76c4376c57/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r--package/mongrel2/Config.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/package/mongrel2/Config.in b/package/mongrel2/Config.in
index 1afba7715..1c7b4950b 100644
--- a/package/mongrel2/Config.in
+++ b/package/mongrel2/Config.in
@@ -1,9 +1,10 @@
-comment "mongrel2 needs a toolchain w/ C++, threads, wchar"
+comment "mongrel2 needs a toolchain w/ C++, threads, wchar, dynamic library"
depends on BR2_UCLIBC_VERSION_SNAPSHOT || \
BR2_TOOLCHAIN_USES_GLIBC || \
BR2_arm
depends on !BR2_INSTALL_LIBSTDCPP || \
- !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR
+ !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR || \
+ BR2_STATIC_LIBS
config BR2_PACKAGE_MONGREL2
bool "mongrel2"
@@ -12,6 +13,7 @@ config BR2_PACKAGE_MONGREL2
depends on BR2_INSTALL_LIBSTDCPP # zeromq
depends on BR2_TOOLCHAIN_HAS_THREADS # zeromq
depends on BR2_USE_WCHAR # zeromq -> util-linux
+ depends on !BR2_STATIC_LIBS # uses dlopen()
# {get,make,swap}context functions present in
# {e,}glibc and in uClibc's master branch. Source has arm workaround
depends on BR2_UCLIBC_VERSION_SNAPSHOT || \