summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2010-09-07 19:59:28 +0100
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2010-09-07 20:04:12 +0100
commit080e025f0789715c5762d716fadc7df51be5da3d (patch)
tree3bac7a4f65f8130c4302a6afb76572467b58b01d
parent9d1da9796c321de936e730a57943a21125d393a0 (diff)
gst-check.m4: drop REQUIRED arg to AG_GST_CHECK_GST_PLUGINS_{GOOD,UGLY,BAD,FFMPEG}
Since .pc files for these modules only exist in uninstalled setups, if at all, it doesn't really make sense to *require* their presence (or that particular version). Code (e.g. unit tests) still needs to check element/plugin availability and versions at runtime, since that's what's required for installed setups anyway.
-rw-r--r--m4/gst-check.m416
1 files changed, 8 insertions, 8 deletions
diff --git a/m4/gst-check.m4 b/m4/gst-check.m4
index 2ad00f2..3fd3acf 100644
--- a/m4/gst-check.m4
+++ b/m4/gst-check.m4
@@ -150,7 +150,7 @@ AC_DEFUN([AG_GST_CHECK_GST_PLUGINS_BASE],
])
dnl ===========================================================================
-dnl AG_GST_CHECK_GST_PLUGINS_GOOD([GST-MAJORMINOR], [MIN-VERSION], [REQUIRED])
+dnl AG_GST_CHECK_GST_PLUGINS_GOOD([GST-MAJORMINOR], [MIN-VERSION])
dnl
dnl Will set GST_PLUGINS_GOOD_DIR for use in Makefile.am. Note that this will
dnl only be set in an uninstalled setup, since -good ships no .pc file and in
@@ -159,7 +159,7 @@ dnl ===========================================================================
AC_DEFUN([AG_GST_CHECK_GST_PLUGINS_GOOD],
[
AG_GST_CHECK_MODULES(GST_PLUGINS_GOOD, gstreamer-plugins-good-[$1], [$2],
- [GStreamer Good Plugins], [$3])
+ [GStreamer Good Plugins], [no])
if test "x$HAVE_GST_PLUGINS_GOOD" = "xyes"; then
dnl check for where good plugins got installed
@@ -178,7 +178,7 @@ AC_DEFUN([AG_GST_CHECK_GST_PLUGINS_GOOD],
])
dnl ===========================================================================
-dnl AG_GST_CHECK_GST_PLUGINS_UGLY([GST-MAJORMINOR], [MIN-VERSION], [REQUIRED])
+dnl AG_GST_CHECK_GST_PLUGINS_UGLY([GST-MAJORMINOR], [MIN-VERSION])
dnl
dnl Will set GST_PLUGINS_UGLY_DIR for use in Makefile.am. Note that this will
dnl only be set in an uninstalled setup, since -bad ships no .pc file and in
@@ -187,7 +187,7 @@ dnl ===========================================================================
AC_DEFUN([AG_GST_CHECK_GST_PLUGINS_UGLY],
[
AG_GST_CHECK_MODULES(GST_PLUGINS_UGLY, gstreamer-plugins-ugly-[$1], [$2],
- [GStreamer Ugly Plugins], [$3])
+ [GStreamer Ugly Plugins], [no])
if test "x$HAVE_GST_PLUGINS_UGLY" = "xyes"; then
dnl check for where ugly plugins got installed
@@ -206,7 +206,7 @@ AC_DEFUN([AG_GST_CHECK_GST_PLUGINS_UGLY],
])
dnl ===========================================================================
-dnl AG_GST_CHECK_GST_PLUGINS_BAD([GST-MAJORMINOR], [MIN-VERSION], [REQUIRED])
+dnl AG_GST_CHECK_GST_PLUGINS_BAD([GST-MAJORMINOR], [MIN-VERSION])
dnl
dnl Will set GST_PLUGINS_BAD_DIR for use in Makefile.am. Note that this will
dnl only be set in an uninstalled setup, since -ugly ships no .pc file and in
@@ -215,7 +215,7 @@ dnl ===========================================================================
AC_DEFUN([AG_GST_CHECK_GST_PLUGINS_BAD],
[
AG_GST_CHECK_MODULES(GST_PLUGINS_BAD, gstreamer-plugins-bad-[$1], [$2],
- [GStreamer Bad Plugins], [$3])
+ [GStreamer Bad Plugins], [no])
if test "x$HAVE_GST_PLUGINS_BAD" = "xyes"; then
dnl check for where bad plugins got installed
@@ -234,7 +234,7 @@ AC_DEFUN([AG_GST_CHECK_GST_PLUGINS_BAD],
])
dnl ===========================================================================
-dnl AG_GST_CHECK_GST_PLUGINS_FFMPEG([GST-MAJORMINOR], [MIN-VERSION], [REQUIRED])
+dnl AG_GST_CHECK_GST_PLUGINS_FFMPEG([GST-MAJORMINOR], [MIN-VERSION])
dnl
dnl Will set GST_PLUGINS_FFMPEG_DIR for use in Makefile.am. Note that this will
dnl only be set in an uninstalled setup, since -ffmpeg ships no .pc file and in
@@ -243,7 +243,7 @@ dnl ===========================================================================
AC_DEFUN([AG_GST_CHECK_GST_PLUGINS_FFMPEG],
[
AG_GST_CHECK_MODULES(GST_PLUGINS_FFMPEG, gstreamer-plugins-ffmpeg-[$1], [$2],
- [GStreamer FFmpeg Plugins], [$3])
+ [GStreamer FFmpeg Plugins], [no])
if test "x$HAVE_GST_PLUGINS_FFMPEG" = "xyes"; then
dnl check for where ffmpeg plugins got installed