mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 06:06:32 +00:00
mpd: add optional support for libshout
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
1442ff3c19
commit
fd4f88dc5f
@ -262,6 +262,12 @@ comment "pulseaudio support needs a toolchain w/ dynamic library"
|
|||||||
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
||||||
depends on BR2_STATIC_LIBS
|
depends on BR2_STATIC_LIBS
|
||||||
|
|
||||||
|
config BR2_PACKAGE_MPD_SHOUTCAST
|
||||||
|
bool "shoutcast"
|
||||||
|
select BR2_PACKAGE_LIBSHOUT
|
||||||
|
help
|
||||||
|
Enable shoutcast streaming output support.
|
||||||
|
|
||||||
comment "Miscellaneous plugins"
|
comment "Miscellaneous plugins"
|
||||||
|
|
||||||
config BR2_PACKAGE_MPD_AVAHI_SUPPORT
|
config BR2_PACKAGE_MPD_AVAHI_SUPPORT
|
||||||
|
@ -195,6 +195,13 @@ else
|
|||||||
MPD_CONF_OPTS += --disable-pulse
|
MPD_CONF_OPTS += --disable-pulse
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_MPD_SHOUTCAST),y)
|
||||||
|
MPD_DEPENDENCIES += libshout
|
||||||
|
MPD_CONF_OPTS += --enable-shout
|
||||||
|
else
|
||||||
|
MPD_CONF_OPTS += --disable-shout
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_MPD_SOUNDCLOUD),y)
|
ifeq ($(BR2_PACKAGE_MPD_SOUNDCLOUD),y)
|
||||||
MPD_DEPENDENCIES += yajl
|
MPD_DEPENDENCIES += yajl
|
||||||
MPD_CONF_OPTS += --enable-soundcloud
|
MPD_CONF_OPTS += --enable-soundcloud
|
||||||
|
Loading…
x
Reference in New Issue
Block a user