mpd: add pulseaudio support

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Peter Korsgaard 2011-10-20 16:21:47 +02:00
parent d96e977e37
commit bd96e4d70e
2 changed files with 11 additions and 0 deletions

View File

@ -30,6 +30,12 @@ config BR2_PACKAGE_MPD_AO
help
Enable libao output support.
config BR2_PACKAGE_MPD_PULSEAUDIO
bool "pulseaudio"
select BR2_PACKAGE_PULSEAUDIO
help
Enable pulseaudio output support.
config BR2_PACKAGE_MPD_BZIP2
bool "bzip2"
select BR2_PACKAGE_BZIP2

View File

@ -22,6 +22,11 @@ MPD_DEPENDENCIES += libao
MPD_CONF_OPT += --enable-ao
endif
ifeq ($(BR2_PACKAGE_MPD_PULSEAUDIO),y)
MPD_DEPENDENCIES += pulseaudio
MPD_CONF_OPT += --enable-pulse
endif
ifeq ($(BR2_PACKAGE_MPD_BZIP2),y)
MPD_DEPENDENCIES += bzip2
MPD_CONF_OPT += --enable-bzip2