mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-04 16:39:39 +00:00
d2499c35b3
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)
20 lines
565 B
Text
20 lines
565 B
Text
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
|
|
])
|