mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
fixes for new pkg-config files in gst-plugins-base
Original commit message from CVS: fixes for new pkg-config files in gst-plugins-base
This commit is contained in:
parent
c412fa00a7
commit
a9c26bea9f
1 changed files with 7 additions and 6 deletions
13
configure.ac
13
configure.ac
|
@ -256,15 +256,16 @@ AC_SUBST(GST_INTERFACES_LIBS)
|
||||||
AC_SUBST(GST_INTERFACES_CFLAGS)
|
AC_SUBST(GST_INTERFACES_CFLAGS)
|
||||||
|
|
||||||
dnl check for gstreamer-interfaces; uinstalled is selected preferentially
|
dnl check for gstreamer-interfaces; uinstalled is selected preferentially
|
||||||
PKG_CHECK_MODULES(GST_PLUGINS_LIBS, gstreamer-libs-$GST_MAJORMINOR >= $GST_REQ,
|
PKG_CHECK_MODULES(GST_PLUGINS_BASE,
|
||||||
HAVE_GST_PLUGINS="yes", HAVE_GST_PLUGINS="no")
|
gstreamer-plugins-base-$GST_MAJORMINOR >= $GST_REQ,
|
||||||
|
HAVE_GST_PLUGINS_BASE="yes", HAVE_GST_PLUGINS_BASE="no")
|
||||||
|
|
||||||
if test "x$HAVE_GST_PLUGINS" = "xno"; then
|
if test "x$HAVE_GST_PLUGINS_BASE" = "xno"; then
|
||||||
AC_MSG_ERROR(no GStreamer Plugins Libs found)
|
AC_MSG_ERROR(no GStreamer Base Plugins development files found)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
AC_SUBST(GST_PLUGINS_LIBS_LIBS)
|
AC_SUBST(GST_PLUGINS_BASE_LIBS)
|
||||||
AC_SUBST(GST_PLUGINS_LIBS_CFLAGS)
|
AC_SUBST(GST_PLUGINS_BASE_CFLAGS)
|
||||||
|
|
||||||
dnl Determine endianness
|
dnl Determine endianness
|
||||||
AC_C_BIGENDIAN
|
AC_C_BIGENDIAN
|
||||||
|
|
Loading…
Reference in a new issue