From: Pierre Ossman Date: Thu, 13 Jul 2006 13:34:51 +0000 (+0200) Subject: Fix capsed name in configure X-Git-Tag: v1.0.12rc2~1 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=5aa038cf705951c3732c0319997ae919b501f201;p=alsa-plugins.git Fix capsed name in configure The name in configure.in used a different capitalisation than the name in the corresponding Makefile.am. Change it so that both use just lowercase. Signed-off-by: Pierre Ossman --- diff --git a/configure.in b/configure.in index 3f3142e..053543f 100644 --- a/configure.in +++ b/configure.in @@ -16,7 +16,7 @@ AC_CHECK_LIB(asound, snd_pcm_ioplug_create,, PKG_CHECK_MODULES(JACK, jack >= 0.98, [HAVE_JACK=yes], [HAVE_JACK=no]) AM_CONDITIONAL(HAVE_JACK, test x$HAVE_JACK = xyes) -PKG_CHECK_MODULES(PulseAudio, [libpulse >= 0.9.2], [HAVE_PULSE=yes], [HAVE_PULSE=no]) +PKG_CHECK_MODULES(pulseaudio, [libpulse >= 0.9.2], [HAVE_PULSE=yes], [HAVE_PULSE=no]) AM_CONDITIONAL(HAVE_PULSE, test x$HAVE_PULSE = xyes) PKG_CHECK_MODULES(samplerate, [samplerate], [HAVE_SAMPLERATE=yes], [HAVE_SAMPLERATE=no])