Makefile.am: use JACK_CFLAGS and JACK_LIBS

Don't add those to MPD_CFLAGS and MPD_LIBS.
This commit is contained in:
Max Kellermann 2009-03-28 21:38:53 +01:00
parent 50c53e4b24
commit 5164cc1ff8
2 changed files with 4 additions and 5 deletions

View File

@ -448,11 +448,13 @@ endif
OUTPUT_CFLAGS = \
$(AO_CFLAGS) \
$(ALSA_CFLAGS) \
$(JACK_CFLAGS) \
$(SHOUT_CFLAGS)
OUTPUT_LIBS = \
$(AO_LIBS) \
$(ALSA_LIBS) \
$(JACK_LIBS) \
$(SHOUT_LIBS)
OUTPUT_API_SRC = \

View File

@ -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