Only check for gst-inspect if we haven't already found it in previous element check...
authorTim-Philipp Müller <tim@centricular.net>
Tue, 25 Jan 2005 14:03:12 +0000 (14:03 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Tue, 25 Jan 2005 14:03:12 +0000 (14:03 +0000)
Original commit message from CVS:
Only check for gst-inspect if we haven't already found it in previous element check runs

ChangeLog
gst-element-check.m4
gst-element-check.m4.in

index 235b24f..734de3d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-01-25  Tim-Philipp Müller  <tim at centricular dot net>
+
+       * gst-element-check.m4:
+         Only check for gst-inspect if we haven't already
+         found it in previous element check runs
+
 2005-01-25  Stefan Kost  <ensonic@users.sf.net>
 
        * docs/gst/Makefile.am:
index 005d584..e608f19 100644 (file)
@@ -1,12 +1,15 @@
 dnl Perform a check for a GStreamer element using gst-inspect
 dnl Thomas Vander Stichele <thomas at apestaart dot org>
-dnl Last modification: 23/10/2002
+dnl Last modification: 25/01/2005
 
 dnl AM_GST_ELEMENT_CHECK(ELEMENT-NAME, ACTION-IF-FOUND, ACTION-IF-NOT-FOUND)
 
 AC_DEFUN([AM_GST_ELEMENT_CHECK],
 [
-  AC_CHECK_PROG(GST_INSPECT, gst-inspect, gst-inspect, [])
+  if test "x$GST_INSPECT" == "x"; then
+    AC_CHECK_PROG(GST_INSPECT, gst-inspect, gst-inspect, [])
+  fi
+
   if test "x$GST_INSPECT" != "x"; then
     AC_MSG_CHECKING(GStreamer element $1)
     if [ $GST_INSPECT $1 > /dev/null 2> /dev/null ]; then
index 005d584..e608f19 100644 (file)
@@ -1,12 +1,15 @@
 dnl Perform a check for a GStreamer element using gst-inspect
 dnl Thomas Vander Stichele <thomas at apestaart dot org>
-dnl Last modification: 23/10/2002
+dnl Last modification: 25/01/2005
 
 dnl AM_GST_ELEMENT_CHECK(ELEMENT-NAME, ACTION-IF-FOUND, ACTION-IF-NOT-FOUND)
 
 AC_DEFUN([AM_GST_ELEMENT_CHECK],
 [
-  AC_CHECK_PROG(GST_INSPECT, gst-inspect, gst-inspect, [])
+  if test "x$GST_INSPECT" == "x"; then
+    AC_CHECK_PROG(GST_INSPECT, gst-inspect, gst-inspect, [])
+  fi
+
   if test "x$GST_INSPECT" != "x"; then
     AC_MSG_CHECKING(GStreamer element $1)
     if [ $GST_INSPECT $1 > /dev/null 2> /dev/null ]; then