Commit bd96e4d7 authored by Peter Korsgaard's avatar Peter Korsgaard
Browse files

mpd: add pulseaudio support

parent d96e977e
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -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
+5 −0
Original line number Diff line number Diff line
@@ -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