summaryrefslogtreecommitdiffstats
path: root/package/rabbitmq-c/Config.in
diff options
context:
space:
mode:
authorFabrice Fontaine <fontaine.fabrice@gmail.com>2019-02-18 12:44:34 +0100
committerArnout Vandecappelle (Essensium/Mind) <arnout@mind.be>2019-02-20 23:27:57 +0100
commit6bc9ded5dd0ff5b51abfd218dba9f8e248f6b563 (patch)
tree69c23ede0414b091901c400677f5d0aebd52545a /package/rabbitmq-c/Config.in
parent2fb86873db4deaa49ac3c247d753a759568cf4a5 (diff)
downloadbuildroot-6bc9ded5dd0ff5b51abfd218dba9f8e248f6b563.tar.gz
buildroot-6bc9ded5dd0ff5b51abfd218dba9f8e248f6b563.zip
package/rabbitmq-c: needs dynamic library
syslog-ng expects that rabbitmq-c is built with openssl support however currently we're disabling openssl on rabbitmq-c in static build. To fix this issue, add a dependency on dynamic library on rabbitmq-c and its reverse dependencies (only BR2_PACKAGE_JANUS_GATEWAY_RABBITMQ as php-amqp already depends on dynamic library) Fixes: - http://autobuild.buildroot.org/results/fce91b98fb199a26ad5f5f726c9bdec4f9d64486 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Diffstat (limited to 'package/rabbitmq-c/Config.in')
-rw-r--r--package/rabbitmq-c/Config.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/package/rabbitmq-c/Config.in b/package/rabbitmq-c/Config.in
index b330c90474..6dbd1467cb 100644
--- a/package/rabbitmq-c/Config.in
+++ b/package/rabbitmq-c/Config.in
@@ -1,5 +1,6 @@
config BR2_PACKAGE_RABBITMQ_C
bool "rabbitmq-c"
+ depends on !BR2_STATIC_LIBS
depends on BR2_TOOLCHAIN_HAS_THREADS
help
This is a C-language AMQP client library for use with v2.0+
@@ -7,5 +8,5 @@ config BR2_PACKAGE_RABBITMQ_C
https://github.com/alanxz/rabbitmq-c
-comment "rabbitmq-c needs a toolchain w/ threads"
- depends on !BR2_TOOLCHAIN_HAS_THREADS
+comment "rabbitmq-c needs a toolchain w/ dynamic library, threads"
+ depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS
OpenPOWER on IntegriCloud