From: Gustavo Zacarias Date: Mon, 23 Apr 2012 03:31:37 +0000 (+0000) Subject: mpd: add audiofile support X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d9d4d960aab258f8a9df703cda262a6678414ecc;p=buildroot.git mpd: add audiofile support Signed-off-by: Gustavo Zacarias Signed-off-by: Peter Korsgaard --- diff --git a/package/multimedia/mpd/Config.in b/package/multimedia/mpd/Config.in index 27bd309b43..c7c0cd71a2 100644 --- a/package/multimedia/mpd/Config.in +++ b/package/multimedia/mpd/Config.in @@ -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 diff --git a/package/multimedia/mpd/mpd.mk b/package/multimedia/mpd/mpd.mk index 095bad6fbc..43d429bc5f 100644 --- a/package/multimedia/mpd/mpd.mk +++ b/package/multimedia/mpd/mpd.mk @@ -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