6e1174c268
gmrender-resurrect uses <error.h>, which isn't available on musl configuration, so let's disable this package in such situations. Fixes: http://autobuild.buildroot.net/results/96a280a8115cd01d64670e4caf2471d3ee4581d9/ (and numerous similar build failures) Cc: kei-k@ca2.so-net.ne.jp <kei-k@ca2.so-net.ne.jp> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
20 lines
696 B
Plaintext
20 lines
696 B
Plaintext
config BR2_PACKAGE_GMRENDER_RESURRECT
|
|
bool "gmrender-resurrect"
|
|
depends on BR2_USE_WCHAR # gstreamer1 -> libglib2
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # gstreamer1 -> libglib2, libupnp
|
|
depends on BR2_USE_MMU # gstreamer1
|
|
# uses <error.h>
|
|
depends on !BR2_TOOLCHAIN_USES_MUSL
|
|
select BR2_PACKAGE_GSTREAMER1
|
|
select BR2_PACKAGE_GST1_PLUGINS_BASE # run-time only
|
|
select BR2_PACKAGE_LIBUPNP
|
|
help
|
|
UPnP (DLNA) media renderer based on gstreamer
|
|
|
|
https://github.com/hzeller/gmrender-resurrect
|
|
|
|
comment "gmrender-resurrect needs an (e)glibc or uClibc toolchain w/ wchar, threads"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
BR2_TOOLCHAIN_USES_MUSL
|