mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-30 12:49:40 +00:00
configure: Fix libexif pkg-config check
There's no exif plugin so don't use AG_GST_CHECK_FEATURE. Fixes bug #647564.
This commit is contained in:
parent
3a0c6c6d60
commit
5af34d15f3
1 changed files with 6 additions and 8 deletions
14
configure.ac
14
configure.ac
|
@ -243,6 +243,12 @@ if test "x$HAVE_X11" = "xyes"; then
|
|||
AC_DEFINE(HAVE_X11, 1, [Define if you have X11 library])
|
||||
fi
|
||||
|
||||
dnl exif (used on jifmux tests) ****
|
||||
PKG_CHECK_MODULES(EXIF, libexif >= 0.6.16, HAVE_EXIF="yes", HAVE_EXIF="no")
|
||||
AC_SUBST(EXIF_LIBS)
|
||||
AC_SUBST(EXIF_CFLAGS)
|
||||
AM_CONDITIONAL(USE_EXIF, test "x$HAVE_EXIF" = "xyes")
|
||||
|
||||
dnl Orc
|
||||
ORC_CHECK([0.4.7])
|
||||
|
||||
|
@ -820,14 +826,6 @@ AG_GST_CHECK_FEATURE(RESINDVD, [resindvd plugin], resindvd, [
|
|||
])
|
||||
])
|
||||
|
||||
dnl **** exif (used on jifmux tests) ****
|
||||
translit(dnm, m, l) AM_CONDITIONAL(USE_EXIF, true)
|
||||
AG_GST_CHECK_FEATURE(EXIF, [exif], exif, [
|
||||
PKG_CHECK_MODULES(EXIF, libexif >= 0.6.16, HAVE_EXIF="yes", [
|
||||
HAVE_EXIF="no"
|
||||
])
|
||||
])
|
||||
|
||||
dnl **** Free AAC Encoder (FAAC) ****
|
||||
translit(dnm, m, l) AM_CONDITIONAL(USE_FAAC, true)
|
||||
AG_GST_CHECK_FEATURE(FAAC, [AAC encoder plug-in], faac, [
|
||||
|
|
Loading…
Reference in a new issue