aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-03-28 21:38:53 +0100
committerMax Kellermann <max@duempel.org>2009-03-28 21:38:53 +0100
commit5164cc1ff811aee5466ef72d9ebb18e282a00bd6 (patch)
tree93e6891adcbc217d19bcec861c825aad8001c124 /configure.ac
parent50c53e4b24085174fbe8267d4da2b51711543374 (diff)
downloadmpd-5164cc1ff811aee5466ef72d9ebb18e282a00bd6.tar.gz
mpd-5164cc1ff811aee5466ef72d9ebb18e282a00bd6.tar.xz
mpd-5164cc1ff811aee5466ef72d9ebb18e282a00bd6.zip
Makefile.am: use JACK_CFLAGS and JACK_LIBS
Don't add those to MPD_CFLAGS and MPD_LIBS.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac7
1 files changed, 2 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac
index 76741cac1..b1e200ff1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -700,11 +700,8 @@ AM_CONDITIONAL(HAVE_ALSA, test x$enable_alsa = xyes)
if test x$enable_jack = xyes; then
PKG_CHECK_MODULES([JACK],
[jack >= 0.4],
- [enable_jack=yes;
- AC_DEFINE([HAVE_JACK], 1,
- [Define to enable JACK support])]
- MPD_LIBS="$MPD_LIBS $JACK_LIBS"
- MPD_CFLAGS="$MPD_CFLAGS $JACK_CFLAGS",
+ [AC_DEFINE([HAVE_JACK], 1,
+ [Define to enable JACK support])],
enable_jack=no)
fi