summaryrefslogtreecommitdiffstats
path: root/gst-element-check.m4
diff options
context:
space:
mode:
authorRonald S. Bultje <rbultje@ronald.bitfreak.net>2003-04-07 21:34:30 +0000
committerRonald S. Bultje <rbultje@ronald.bitfreak.net>2003-04-07 21:34:30 +0000
commit13cf1785d813f23c5cfae18a98568058ed94dfa7 (patch)
tree3df886e601eda5ee680356516fac565713c96723 /gst-element-check.m4
parentf2f86939c3dd8382217ba14f7342a9a15da11ef6 (diff)
downloadgst-plugins-bad-13cf1785d813f23c5cfae18a98568058ed94dfa7.tar.gz
gst-plugins-bad-13cf1785d813f23c5cfae18a98568058ed94dfa7.tar.bz2
gst-plugins-bad-13cf1785d813f23c5cfae18a98568058ed94dfa7.zip
Port some changes from 0.6.0/0.6.1 back to HEAD (.pc files moved to pkg-config/, .m4 file moved from plugins to core)
Original commit message from CVS: Port some changes from 0.6.0/0.6.1 back to HEAD (.pc files moved to pkg-config/, .m4 file moved from plugins to core)
Diffstat (limited to 'gst-element-check.m4')
-rw-r--r--gst-element-check.m420
1 files changed, 0 insertions, 20 deletions
diff --git a/gst-element-check.m4 b/gst-element-check.m4
deleted file mode 100644
index f900dace..00000000
--- a/gst-element-check.m4
+++ /dev/null
@@ -1,20 +0,0 @@
-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 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_MSG_CHECKING(GStreamer element $1)
- if [ $GST_INSPECT $1 > /dev/null 2> /dev/null ]; then
- AC_MSG_RESULT(found.)
- $2
- else
- AC_MSG_RESULT(not found.)
- $3
- fi
- fi
-])