After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 587306 - configure.ac check for gst-inspect should also check for gst-instpect-0.10
configure.ac check for gst-inspect should also check for gst-instpect-0.10
Status: RESOLVED FIXED
Product: gstreamermm
Classification: Bindings
Component: general
git master
Other Linux
: Normal enhancement
: ---
Assigned To: gtkmm-forge
gtkmm-forge
Depends on:
Blocks:
 
 
Reported: 2009-06-29 13:20 UTC by David King
Modified: 2011-01-16 23:37 UTC
See Also:
GNOME target: ---
GNOME version: 2.27/2.28


Attachments
patch to fix configure.ac check for gst-inspect (1.32 KB, patch)
2009-06-29 13:21 UTC, David King
none Details | Review
removes unnecessary check for gst-inspect (1.63 KB, patch)
2009-06-29 13:48 UTC, David King
committed Details | Review

Description David King 2009-06-29 13:20:53 UTC
The gst-inspect tool is required by gstreamermm to check for plugins at configure-time. Some distributions only supply a versioned gst-inspect binary, e.g. gst-inspect-0.10 rather than gst-inspect. The gstreamermm configure.ac only checks for gst-inspect.
Comment 1 David King 2009-06-29 13:21:47 UTC
Created attachment 137556 [details] [review]
patch to fix configure.ac check for gst-inspect
Comment 2 Murray Cumming 2009-06-29 13:31:32 UTC
I wonder why it checks for plugins at configure time, from a tarball, assuming that's what you mean.
Comment 3 David King 2009-06-29 13:48:30 UTC
(In reply to comment #2)
> I wonder why it checks for plugins at configure time, from a tarball, assuming
> that's what you mean.

Actually, gstreamermm _used_ to check for plugins at configure-time, but this was changed pre-0.10.2. The configure.ac code for checking of gst-inspect can thus be safely removed, as nothing else uses GST_INSPECT (I checked with regexxer).
Comment 4 David King 2009-06-29 13:48:59 UTC
Created attachment 137559 [details] [review]
removes unnecessary check for gst-inspect
Comment 5 José Alburquerque 2009-06-29 17:39:55 UTC
Thanks for this.  PLease commit it to master.  Thanks.
Comment 6 José Alburquerque 2009-06-30 16:45:02 UTC
Pushed to master:

2009-06-30  David King  <davidk@openismus.com>

	* configure.ac: Don't check for gst-inspect as it is not needed, since
	the presence of plugins is checked at runtime and not configure-time.
	Bug #587306.