configure.ac: Add check and AC_SUBST for libgstbase.

Original commit message from CVS:
2005-04-06  Andy Wingo  <wingo@pobox.com>

* configure.ac: Add check and AC_SUBST for libgstbase.
This commit is contained in:
Andy Wingo 2005-04-06 11:17:14 +00:00
parent 1dae961cbf
commit 29aea8a7cd
2 changed files with 14 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2005-04-06 Andy Wingo <wingo@pobox.com>
* configure.ac: Add check and AC_SUBST for libgstbase.
2005-03-31 Wim Taymans <wim@fluendo.com>
* examples/seeking/Makefile.am:

View file

@ -213,7 +213,7 @@ GST_CHECK_FEATURE(GCONF, [GConf libraries], , [
dnl check for gstreamer
dnl uninstalled is selected preferentially -- see pkg-config(1)
GST_REQ=0.8.90.1
GST_REQ=0.9.0
PKG_CHECK_MODULES(GST, gstreamer-$GST_MAJORMINOR >= $GST_REQ,
HAVE_GST="yes", HAVE_GST="no")
@ -237,6 +237,15 @@ fi
AC_SUBST(GST_CONTROL_LIBS)
PKG_CHECK_MODULES(GST_BASE, gstreamer-base-$GST_MAJORMINOR >= $GST_REQ,
HAVE_GST_BASE="yes", HAVE_GST_BASE="no")
if test "x$HAVE_GST_BASE" = "xno"; then
AC_MSG_ERROR(no libgstbase found)
fi
AC_SUBST(GST_BASE_LIBS)
dnl Determine endianness
AC_C_BIGENDIAN