4db94043cb
Files correlati : Commento : Spostamento in libraries delle librerie esterne di Campo per una maggiore pulizia e organizzazione git-svn-id: svn://10.65.10.50/branches/R_10_00@24150 c028cbd2-c16b-5b4b-a496-9718f37d4682
24 lines
637 B
Plaintext
24 lines
637 B
Plaintext
dnl Perform a check for a GStreamer element using gst-inspect
|
|
dnl Thomas Vander Stichele <thomas at apestaart dot org>
|
|
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],
|
|
[
|
|
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
|
|
AC_MSG_RESULT(found.)
|
|
$2
|
|
else
|
|
AC_MSG_RESULT(not found.)
|
|
$3
|
|
fi
|
|
fi
|
|
])
|