mpd: add audiofile support
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
a1c9bdd643
commit
d9d4d960aa
@ -30,6 +30,13 @@ config BR2_PACKAGE_MPD_AO
|
||||
help
|
||||
Enable libao output support.
|
||||
|
||||
config BR2_PACKAGE_MPD_AUDIOFILE
|
||||
bool "audiofile"
|
||||
select BR2_PACKAGE_AUDIOFILE
|
||||
help
|
||||
Enable audiofile input/streaming support.
|
||||
Select this if you want to play back WAV files.
|
||||
|
||||
config BR2_PACKAGE_MPD_PULSEAUDIO
|
||||
bool "pulseaudio"
|
||||
select BR2_PACKAGE_PULSEAUDIO
|
||||
|
@ -21,6 +21,11 @@ MPD_DEPENDENCIES += libao
|
||||
MPD_CONF_OPT += --enable-ao
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_MPD_AUDIOFILE),y)
|
||||
MPD_DEPENDENCIES += audiofile
|
||||
MPD_CONF_OPT += --enable-audiofile
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_MPD_PULSEAUDIO),y)
|
||||
MPD_DEPENDENCIES += pulseaudio
|
||||
MPD_CONF_OPT += --enable-pulse
|
||||
|
Loading…
Reference in New Issue
Block a user