aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Schmidt2007-07-13 11:46:00 -0500
committerJan Schmidt2007-07-13 11:46:00 -0500
commit4eb0f04d5e88fcf72808274414094325144fc45c (patch)
tree398b91ba68ff510c7d33931528174857b847947a /configure.ac
parente0fce0535d3f26f5c04b1ccce8110d36e8aa31f0 (diff)
downloadgst-plugins-bad0-10-4eb0f04d5e88fcf72808274414094325144fc45c.tar.gz
gst-plugins-bad0-10-4eb0f04d5e88fcf72808274414094325144fc45c.tar.xz
gst-plugins-bad0-10-4eb0f04d5e88fcf72808274414094325144fc45c.zip
Remove bogus check for libcheck, since we check for gstreamer-check and it pulls in the required info from there, and...
Original commit message from CVS: * configure.ac: * tests/Makefile.am: Remove bogus check for libcheck, since we check for gstreamer-check and it pulls in the required info from there, and we weren't actually _using_ the information for libcheck ourselves anyway.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac8
1 files changed, 2 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac
index 892634dfe..becd80158 100644
--- a/configure.ac
+++ b/configure.ac
@@ -187,16 +187,12 @@ AG_GST_CHECK_GST_GDP($GST_MAJORMINOR, [$GST_REQ])
187AG_GST_CHECK_GST_CHECK($GST_MAJORMINOR, [$GST_REQ], no) 187AG_GST_CHECK_GST_CHECK($GST_MAJORMINOR, [$GST_REQ], no)
188AG_GST_CHECK_GST_CONTROLLER($GST_MAJORMINOR, [$GST_REQ]) 188AG_GST_CHECK_GST_CONTROLLER($GST_MAJORMINOR, [$GST_REQ])
189AG_GST_CHECK_GST_PLUGINS_BASE($GST_MAJORMINOR, [$GSTPB_REQ], no) 189AG_GST_CHECK_GST_PLUGINS_BASE($GST_MAJORMINOR, [$GSTPB_REQ], no)
190AM_CONDITIONAL(HAVE_GST_CHECK, test "x$HAVE_GST_CHECK" = "xyes")
191
190GSTPB_PLUGINS_DIR=`$PKG_CONFIG gstreamer-plugins-base-$GST_MAJORMINOR --variable pluginsdir` 192GSTPB_PLUGINS_DIR=`$PKG_CONFIG gstreamer-plugins-base-$GST_MAJORMINOR --variable pluginsdir`
191AC_SUBST(GSTPB_PLUGINS_DIR) 193AC_SUBST(GSTPB_PLUGINS_DIR)
192AC_MSG_NOTICE(Using GStreamer Base Plugins in $GSTPB_PLUGINS_DIR) 194AC_MSG_NOTICE(Using GStreamer Base Plugins in $GSTPB_PLUGINS_DIR)
193 195
194dnl FIXME: get rid of this by making sure gstreamer-check brings it in
195dnl check for "check", unit testing library/header
196PKG_CHECK_MODULES(CHECK, check >= 0.9.2,
197 AM_CONDITIONAL(HAVE_CHECK, true),
198 AM_CONDITIONAL(HAVE_CHECK, false)
199)
200dnl Check for documentation xrefs 196dnl Check for documentation xrefs
201GLIB_PREFIX="`$PKG_CONFIG --variable=prefix glib-2.0`" 197GLIB_PREFIX="`$PKG_CONFIG --variable=prefix glib-2.0`"
202GST_PREFIX="`$PKG_CONFIG --variable=prefix gstreamer-$GST_MAJORMINOR`" 198GST_PREFIX="`$PKG_CONFIG --variable=prefix gstreamer-$GST_MAJORMINOR`"