summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2002-10-23 08:53:44 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2002-10-23 08:53:44 +0000
commit945a43139b558088e45f21628c8f31388b223025 (patch)
tree3e86b6d3639f660ab0affee2fc73708fe5a60c63
parent77351078d761513faa9c2a87793c041368ef77d5 (diff)
downloadgstreamer-plugins-bad-945a43139b558088e45f21628c8f31388b223025.tar.gz
.m4 to check for presence of an element let me know if this works
Original commit message from CVS: .m4 to check for presence of an element let me know if this works
-rw-r--r--Makefile.am3
-rw-r--r--gst-element-check.m420
-rw-r--r--gst-plugins.spec.in1
3 files changed, 24 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am
index 12232654b..5852f46b8 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -13,6 +13,9 @@ endif
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = gstreamer-libs.pc
+aclocaldir = $(datadir)/aclocal
+aclocal_DATA = gst-element-check.m4
+
SUBDIRS=gst-libs gst sys $(EXT_DIR) examples tools $(GCONF_DIR) testsuite
DIST_SUBDIRS=gst-libs gst sys ext examples tools gconf testsuite
diff --git a/gst-element-check.m4 b/gst-element-check.m4
new file mode 100644
index 000000000..f900dace7
--- /dev/null
+++ b/gst-element-check.m4
@@ -0,0 +1,20 @@
+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
+])
diff --git a/gst-plugins.spec.in b/gst-plugins.spec.in
index 627fb3864..febb8059f 100644
--- a/gst-plugins.spec.in
+++ b/gst-plugins.spec.in
@@ -124,6 +124,7 @@ GStreamer support libraries header files.
%{_includedir}/gst-plugins-%{version}/gst/resample/resample.h
%{_includedir}/gst-plugins-%{version}/gst/riff/riff.h
%{_includedir}/gst-plugins-%{version}/gst/video/video.h
+%{_datadir}/aclocal/gst-element-check.m4
%{_libdir}/pkgconfig/gstreamer-libs.pc
# Here are all the packages depending on external libs #