mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 18:51:11 +00:00
Call gst-inspect-$VERSION instead of gst-inspect. Fixes #168659.
Original commit message from CVS: * Makefile.am: * configure.ac: * gst-element-check.m4: * gst-element-check.m4.in: Call gst-inspect-$VERSION instead of gst-inspect. Fixes #168659.
This commit is contained in:
parent
09226e160e
commit
4554864e65
5 changed files with 12 additions and 25 deletions
|
@ -1,3 +1,11 @@
|
|||
2005-03-10 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* Makefile.am:
|
||||
* configure.ac:
|
||||
* gst-element-check.m4:
|
||||
* gst-element-check.m4.in:
|
||||
Call gst-inspect-$VERSION instead of gst-inspect. Fixes #168659.
|
||||
|
||||
2005-03-10 Jean de Largentaye <jlargentaye@gmail.com>
|
||||
|
||||
Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
|
|
@ -52,7 +52,8 @@ win32 = $(shell cat $(top_srcdir)/win32/MANIFEST)
|
|||
debug:
|
||||
echo $(win32)
|
||||
EXTRA_DIST = \
|
||||
gstreamer.spec gstreamer.spec.in gst-element-check.m4 \
|
||||
gstreamer.spec gstreamer.spec.in \
|
||||
gst-element-check.m4 gst-element-check.m4.in \
|
||||
configure.ac autogen.sh depcomp \
|
||||
REQUIREMENTS ABOUT-NLS DOCBUILDING DEVEL RELEASE \
|
||||
$(win32) \
|
||||
|
|
|
@ -728,6 +728,7 @@ pkgconfig/gstreamer.pc
|
|||
pkgconfig/gstreamer-uninstalled.pc
|
||||
pkgconfig/gstreamer-control.pc
|
||||
pkgconfig/gstreamer-control-uninstalled.pc
|
||||
gst-element-check.m4
|
||||
gstreamer.spec,
|
||||
echo "$infomessages", infomessages="$infomessages"
|
||||
)
|
||||
|
|
|
@ -1,23 +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: 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
|
||||
])
|
|
@ -7,7 +7,7 @@ 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, [])
|
||||
AC_CHECK_PROG(GST_INSPECT, gst-inspect-@GST_MAJORMINOR@, gst-inspect-@GST_MAJORMINOR@, [])
|
||||
fi
|
||||
|
||||
if test "x$GST_INSPECT" != "x"; then
|
||||
|
|
Loading…
Reference in a new issue