diff options
author | J. Alexander Treuman <jat@spatialrift.net> | 2007-06-24 21:31:08 +0000 |
---|---|---|
committer | J. Alexander Treuman <jat@spatialrift.net> | 2007-06-24 21:31:08 +0000 |
commit | 08ca0ae2e849129d3bf456f414b1a9e85b38e6cb (patch) | |
tree | b21e88b88b6a145501348880896a7f044f4d1e06 | |
parent | f31b7b46774a0c22ac41a81a948f232af9402ea3 (diff) | |
download | mpd-08ca0ae2e849129d3bf456f414b1a9e85b38e6cb.tar.gz mpd-08ca0ae2e849129d3bf456f414b1a9e85b38e6cb.tar.xz mpd-08ca0ae2e849129d3bf456f414b1a9e85b38e6cb.zip |
Check for pkg-config unconditionally. It might not be needed if we disable
a ton of optional functionality, but it's getting hard to keep track of it
all. So let's just be lazy.
git-svn-id: https://svn.musicpd.org/mpd/trunk@6653 09075e82-0dd4-0310-85a5-a0d7c8717e4f
-rw-r--r-- | configure.ac | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index afc95603e..6753dc98b 100644 --- a/configure.ac +++ b/configure.ac @@ -182,11 +182,7 @@ if test x$enable_oss = xyes; then AC_CHECK_HEADER(sys/soundcard.h,[enable_oss=yes;AC_DEFINE(HAVE_OSS,1,[Define to enable OSS])],[AC_MSG_WARN(Soundcard headers not found -- disabling OSS support);enable_oss=no]) fi -if test x$enable_pulse = xyes || test x$enable_jack = xyes || - test x$enable_lsr = xyes || test x$with_zeroconf != xno || - test x$enable_wavpack = xyes; then - PKG_PROG_PKG_CONFIG -fi +PKG_PROG_PKG_CONFIG if test x$enable_pulse = xyes; then PKG_CHECK_MODULES([PULSE], [libpulse-simple], |