mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
Fix previous FLAC pkg-config commit that had some typos.
While there, restructure and remove duplicate code.
This commit is contained in:
parent
8ac5079ada
commit
e56e8caff2
1 changed files with 4 additions and 7 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue