summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2001-12-27 11:55:39 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2001-12-27 11:55:39 +0000
commitf3d2b564cca49331a8f12d1fcc55594126a6cf84 (patch)
treeb1d1a42b8f5c71fd6836cf2f8328c23de66c4950
parent9de2225184c842fa8c5b8d039ba5df66e8fa92ff (diff)
downloadgst-plugins-bad-f3d2b564cca49331a8f12d1fcc55594126a6cf84.tar.gz
gst-plugins-bad-f3d2b564cca49331a8f12d1fcc55594126a6cf84.tar.bz2
gst-plugins-bad-f3d2b564cca49331a8f12d1fcc55594126a6cf84.zip
this might do it
Original commit message from CVS: this might do it
-rw-r--r--configure.ac7
1 files changed, 5 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 74bf6211..3277ee33 100644
--- a/configure.ac
+++ b/configure.ac
@@ -120,8 +120,11 @@ else
HAVE_NASM="yes"
fi
-dnl check for gstreamer
-PKG_CHECK_MODULES(GST, gstreamer >= 0.3.0)
+dnl check for gstreamer; check for uninstalled first
+PKG_CHECK_MODULES(GST, gstreamer-uninstalled >= 0.3.0, HAVE_GST="yes", HAVE_GST="no")
+if test "x$HAVE_GST" = "xno"; then
+ PKG_CHECK_MODULES(GST, gstreamer >= 0.3.0, HAVE_GST="yes", HAVE_GST="no")
+fi
dnl dnl check for gtk-doc
dnl AC_ARG_WITH(html-dir, [ --with-html-dir=PATH path to installed docs ])