summaryrefslogtreecommitdiff
path: root/package/squeezelite
diff options
context:
space:
mode:
authorGustavo Zacarias <gustavo@zacarias.com.ar>2016-01-07 10:00:27 -0300
committerPeter Korsgaard <peter@korsgaard.com>2016-01-08 19:11:54 +0100
commit1da563a7fa5eb9f4cf2644cbbbc1411dae45d3d3 (patch)
tree9db7d2316a9a654b1e1f08f6540d452a9bfc58a1 /package/squeezelite
parentb19f51a964dc857522081f54bd9abeaaaf765440 (diff)
squeezelite: uses dlopen/dlfcn, needs dynamic libraries
Fixes: http://autobuild.buildroot.net/results/382/38201ac27b2813f0e9784d63b7aecd0cad06efdf/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/squeezelite')
-rw-r--r--package/squeezelite/Config.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/package/squeezelite/Config.in b/package/squeezelite/Config.in
index 6befee17a..1c2960ea6 100644
--- a/package/squeezelite/Config.in
+++ b/package/squeezelite/Config.in
@@ -3,6 +3,7 @@ config BR2_PACKAGE_SQUEEZELITE
depends on BR2_USE_WCHAR # flac
depends on BR2_TOOLCHAIN_HAS_THREADS # alsa-lib
depends on BR2_USE_MMU # mpg123
+ depends on !BR2_STATIC_LIBS # dlopen
select BR2_PACKAGE_ALSA_LIB
select BR2_PACKAGE_ALSA_LIB_MIXER
select BR2_PACKAGE_FLAC
@@ -35,6 +36,7 @@ config BR2_PACKAGE_SQUEEZELITE_VISEXPORT
endif
-comment "squeezelite needs a toolchain w/ wchar, threads"
+comment "squeezelite needs a toolchain w/ wchar, threads, dynamic library"
depends on BR2_USE_MMU
- depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
+ depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS \
+ || BR2_STATIC_LIBS