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_STATIC_LIBS
|
||||
|
||||
config BR2_PACKAGE_MPD_SHOUTCAST
|
||||
bool "shoutcast"
|
||||
select BR2_PACKAGE_LIBSHOUT
|
||||
help
|
||||
Enable shoutcast streaming output support.
|
||||
|
||||
comment "Miscellaneous plugins"
|
||||
|
||||
config BR2_PACKAGE_MPD_AVAHI_SUPPORT
|
||||
|
@ -195,6 +195,13 @@ else
|
||||
MPD_CONF_OPTS += --disable-pulse
|
||||
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)
|
||||
MPD_DEPENDENCIES += yajl
|
||||
MPD_CONF_OPTS += --enable-soundcloud
|
||||
|
Loading…
Reference in New Issue
Block a user