diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-02-06 13:04:20 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-02-06 13:04:20 +0100 |
commit | 4b7a5c10a8d1fcb6cbb41d92c5ce9306754b32b3 (patch) | |
tree | aee73502d259d2077002a2002e6d44f1c662ed04 | |
parent | 2babbddac9ec60a0be566ede3247dd5868978991 (diff) |
ympd: needs <dlfcn.h>
Add a dependency on !BR2_STATIC_LIBS, since <dlfcn.h> is used. While
we're at it, we also fix the comment which was lacking the BR2_USE_MMU
dependency.
Fixes:
http://autobuild.buildroot.org/results/30853c1011544f8b6a5d3b3852af93bef4c0f5cb/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/ympd/Config.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/package/ympd/Config.in b/package/ympd/Config.in index ba0e5e83c..d0901c71e 100644 --- a/package/ympd/Config.in +++ b/package/ympd/Config.in @@ -3,9 +3,11 @@ config BR2_PACKAGE_YMPD select BR2_PACKAGE_LIBMPDCLIENT depends on BR2_USE_MMU # fork() depends on BR2_TOOLCHAIN_HAS_THREADS + depends on !BR2_STATIC_LIBS help ympd, a standalone MPD Web GUI written in C, utilizing Websockets and Bootstrap/JS -comment "ympd needs a toolchain w/ threads" - depends on !BR2_TOOLCHAIN_HAS_THREADS +comment "ympd needs a toolchain w/ threads, dynamic library" + depends on BR2_USE_MMU + depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS |