aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-07-14 21:29:01 +0200
committerMax Kellermann <max@duempel.org>2009-07-14 21:29:01 +0200
commita620e936cc92440c4cf0a0fada700fe801b6c1a1 (patch)
treea16f1adbdbf3188469fe8b78436d55dce2fa2e59 /configure.ac
parentd897170455c2542940ea7144c5a0bed4578fbe1e (diff)
Makefile.am: use WAVPACK_CFLAGS and WAVPACK_LIBS
Don't append these 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 667f53b5..81ff2f25 100644
--- a/configure.ac
+++ b/configure.ac
@@ -829,11 +829,8 @@ AM_CONDITIONAL(HAVE_MPCDEC, test x$enable_mpc = xyes)
if test x$enable_wavpack = xyes; then
PKG_CHECK_MODULES([WAVPACK], [wavpack],
- [enable_wavpack=yes;
- AC_DEFINE([HAVE_WAVPACK], 1,
- [Define to enable WavPack support])]
- MPD_LIBS="$MPD_LIBS $WAVPACK_LIBS"
- MPD_CFLAGS="$MPD_CFLAGS $WAVPACK_CFLAGS",
+ [AC_DEFINE([HAVE_WAVPACK], 1,
+ [Define to enable WavPack support])],
enable_wavpack=no)
fi