diff options
author | Max Kellermann <max@duempel.org> | 2009-03-28 21:39:26 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-03-28 21:39:26 +0100 |
commit | 33aeac4fcbc1f7a53304d1677b5ac01bb4ce3766 (patch) | |
tree | 023354efe03d5a4dd812453259152116f93bdc5f /configure.ac | |
parent | 5164cc1ff811aee5466ef72d9ebb18e282a00bd6 (diff) | |
download | mpd-33aeac4fcbc1f7a53304d1677b5ac01bb4ce3766.tar.gz mpd-33aeac4fcbc1f7a53304d1677b5ac01bb4ce3766.tar.xz mpd-33aeac4fcbc1f7a53304d1677b5ac01bb4ce3766.zip |
Makefile.am: use PULSE_CFLAGS and PULSE_LIBS
Don't add those to MPD_CFLAGS and MPD_LIBS.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index b1e200ff1..3d6ec62af 100644 --- a/configure.ac +++ b/configure.ac @@ -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 |