Sha256: df78675b63fbe95bcc6ae2d234c8233442da72733f26e5b0189b502a29e426ea
Contents?: true
Size: 628 Bytes
Versions: 17
Compression:
Stored size: 628 Bytes
Contents
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-0.10, gst-inspect-0.10, []) fi if test "x$GST_INSPECT" != "x"; then AC_MSG_CHECKING(GStreamer 0.10 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 ])
Version data entries
17 entries across 17 versions & 1 rubygems