From 7a90d1836c96d2bd9322bfaf3689fb19983604bc Mon Sep 17 00:00:00 2001 From: ejurgensen Date: Fri, 25 Aug 2017 20:25:07 +0200 Subject: [PATCH 1/1] forked-daapd: Fix build error due to misdetected pulseaudio MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit configure finds libpulse and then tries to include the header, but fails, because pulseaudio isn't a dependency in the Makefile. This change disables pulseaudio support so configure won't do this. It wasn't the intention with version update 25.0 of forked-daapd to extend with pulseaudio support, but maybe do that later. Signed-off-by: Espen Jürgensen --- sound/forked-daapd/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/sound/forked-daapd/Makefile b/sound/forked-daapd/Makefile index 863cea39e8..da371a717e 100644 --- a/sound/forked-daapd/Makefile +++ b/sound/forked-daapd/Makefile @@ -56,6 +56,7 @@ CONFIGURE_ARGS += \ --enable-chromecast \ --enable-verification \ --disable-spotify \ + --without-pulseaudio \ --without-libevent_pthreads TARGET_CFLAGS += $(FPIC) -- 2.30.2