Commit 33aeac4f authored by Max Kellermann's avatar Max Kellermann

Makefile.am: use PULSE_CFLAGS and PULSE_LIBS

Don't add those to MPD_CFLAGS and MPD_LIBS.
parent 5164cc1f
......@@ -449,12 +449,14 @@ OUTPUT_CFLAGS = \
$(AO_CFLAGS) \
$(ALSA_CFLAGS) \
$(JACK_CFLAGS) \
$(PULSE_CFLAGS) \
$(SHOUT_CFLAGS)
OUTPUT_LIBS = \
$(AO_LIBS) \
$(ALSA_LIBS) \
$(JACK_LIBS) \
$(PULSE_LIBS) \
$(SHOUT_LIBS)
OUTPUT_API_SRC = \
......
......@@ -660,10 +660,8 @@ AM_CONDITIONAL(HAVE_OSS, test x$enable_oss = xyes)
if test x$enable_pulse = xyes; then
PKG_CHECK_MODULES([PULSE], [libpulse-simple],
[enable_pulse=yes;AC_DEFINE([HAVE_PULSE], 1,
[Define to enable PulseAudio support])]
MPD_LIBS="$MPD_LIBS $PULSE_LIBS"
MPD_CFLAGS="$MPD_CFLAGS $PULSE_CFLAGS",
[AC_DEFINE([HAVE_PULSE], 1,
[Define to enable PulseAudio support])],
[enable_pulse=no;AC_MSG_WARN([PulseAudio not found -- disabling])])
fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment