mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
configure: Fix the CELT check to actually succeed if CELT >= 0.5 is available
Also remove the AC_MSG_RESULTS([no]), pkg-config does this for us already.
This commit is contained in:
parent
1509833141
commit
dd26f378b0
1 changed files with 6 additions and 3 deletions
|
@ -573,20 +573,23 @@ translit(dnm, m, l) AM_CONDITIONAL(USE_CELT, true)
|
|||
AG_GST_CHECK_FEATURE(CELT, [celt], celt, [
|
||||
PKG_CHECK_MODULES(CELT, celt >= 0.5.0, [
|
||||
AC_DEFINE([HAVE_CELT], 1, [Define if libcelt 0.5 is installed])
|
||||
HAVE_CELT="yes"
|
||||
], [
|
||||
AC_MSG_RESULT(no)
|
||||
HAVE_CELT="no"
|
||||
])
|
||||
|
||||
PKG_CHECK_MODULES(CELT_0_7, celt >= 0.7.0, [
|
||||
AC_DEFINE([HAVE_CELT_0_7], 1, [Define if libcelt 0.7 is installed])
|
||||
], [
|
||||
AC_MSG_RESULT(no)
|
||||
dnl to prevent an error
|
||||
true
|
||||
])
|
||||
|
||||
PKG_CHECK_MODULES(CELT_0_8, celt >= 0.8.0, [
|
||||
AC_DEFINE([HAVE_CELT_0_8], 1, [Define if libcelt 0.8 is installed])
|
||||
], [
|
||||
AC_MSG_RESULT(no)
|
||||
dnl to prevent an error
|
||||
true
|
||||
])
|
||||
AC_SUBST(CELT_CFLAGS)
|
||||
AC_SUBST(CELT_LIBS)
|
||||
|
|
Loading…
Reference in a new issue