Fix previous FLAC pkg-config commit that had some typos.

While there, restructure and remove duplicate code.
This commit is contained in:
Antti Harri 2011-07-09 22:59:49 +03:00
parent 8ac5079ada
commit e56e8caff2

View file

@ -4,15 +4,12 @@ AC_ARG_ENABLE(flac,
HAVE_FLAC=no
if test "x$enable_flac" != "xno"; then
if test "x$PKG_CONFIG" != "x"; then
PKG_CHECK_MODULES([FLAC], [flac], HAVE_FLAC=yes, HAVE_JACK=no)
if test "x$HAVE_FLAC" = "xyes"; then
AC_DEFINE(HAVE_JACK, 1, [Define if you have libFLAC])
fi
PKG_CHECK_MODULES([FLAC], [flac], HAVE_FLAC=yes, HAVE_FLAC=no)
else
AM_PATH_LIBFLAC(HAVE_FLAC=yes, HAVE_FLAC=no)
if test "x$HAVE_FLAC" = xyes; then
AC_DEFINE(HAVE_FLAC, 1, [define this if you have flac libs])
fi
fi
if test "x$HAVE_FLAC" = xyes; then
AC_DEFINE(HAVE_FLAC, 1, [define this if you have flac libs])
fi
fi
AM_CONDITIONAL(HAVE_FLAC, test "x$HAVE_FLAC" = "xyes")