Original commit message from CVS:
2005-04-06 Andy Wingo <wingo@pobox.com>
* configure.ac: Add check and AC_SUBST for libgstbase.
+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:
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")
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