From 49ae4437da105b0d4cec4e4ced3f005e79d3f06a Mon Sep 17 00:00:00 2001 From: Tim-Philipp Müller Date: Wed, 7 May 2008 08:03:51 +0000 Subject: configure.ac: Error out if we don't have the required core/base versions. Original commit message from CVS: * configure.ac: Error out if we don't have the required core/base versions. --- ChangeLog | 5 +++++ configure.ac | 10 +++++----- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index b5d77f6d..be27d562 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-05-07 Tim-Philipp Müller + + * configure.ac: + Error out if we don't have the required core/base versions. + 2008-05-06 Sebastian Dröge Patch by: Thijs Vermeir diff --git a/configure.ac b/configure.ac index 0752247b..92ca1ce1 100644 --- a/configure.ac +++ b/configure.ac @@ -192,12 +192,12 @@ fi dnl checks for gstreamer dnl uninstalled is selected preferentially -- see pkg-config(1) -AG_GST_CHECK_GST($GST_MAJORMINOR, [$GST_REQ]) -AG_GST_CHECK_GST_BASE($GST_MAJORMINOR, [$GST_REQ]) -AG_GST_CHECK_GST_GDP($GST_MAJORMINOR, [$GST_REQ]) -AG_GST_CHECK_GST_CONTROLLER($GST_MAJORMINOR, [$GST_REQ]) +AG_GST_CHECK_GST($GST_MAJORMINOR, [$GST_REQ], yes) +AG_GST_CHECK_GST_BASE($GST_MAJORMINOR, [$GST_REQ], yes) +AG_GST_CHECK_GST_GDP($GST_MAJORMINOR, [$GST_REQ], yes) +AG_GST_CHECK_GST_CONTROLLER($GST_MAJORMINOR, [$GST_REQ], yes) AG_GST_CHECK_GST_CHECK($GST_MAJORMINOR, [$GST_REQ], no) -AG_GST_CHECK_GST_PLUGINS_BASE($GST_MAJORMINOR, [$GSTPB_REQ]) +AG_GST_CHECK_GST_PLUGINS_BASE($GST_MAJORMINOR, [$GSTPB_REQ], yes) GST_TOOLS_DIR=`pkg-config --variable=toolsdir gstreamer-$GST_MAJORMINOR` if test -z $GST_TOOLS_DIR; then -- cgit