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 590432 - It's only possible to build the mad plugin when building id3tag as well
It's only possible to build the mad plugin when building id3tag as well
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins-ugly
git master
Other All
: Normal normal
: 0.10.13
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2009-08-01 06:58 UTC by Marvin Schmidt
Modified: 2009-08-04 08:45 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
make mad and id3tag configure checks independent (1.64 KB, patch)
2009-08-01 07:02 UTC, Marvin Schmidt
committed Details | Review

Description Marvin Schmidt 2009-08-01 06:58:34 UTC
Please describe the problem:
The configure check for the mad plugin depends on HAVE_ID3TAG which is only set if the id3tag is requested. This will cause the mad plugin not to be built if the id3tag is disabled.

Steps to reproduce:
1. ./configure --disable-id3tag --enable-mad
2. 
3. 


Actual results:
configure: *** Plug-ins with dependencies that will NOT be built:
	[...]
	id3tag
	mad
        [...]

Expected results:
The mad plugin to be built and the id3tag not to be built

Does this happen every time?
Yes

Other information:
Comment 1 Marvin Schmidt 2009-08-01 07:02:06 UTC
Created attachment 139670 [details] [review]
make mad and id3tag configure checks independent

Instead of relying on having HAVE_ID3TAG set, it'll check itself
Comment 2 Sebastian Dröge (slomo) 2009-08-04 08:45:17 UTC
ommit 228e19fb19c64a7a3cf1ace56593c3d0a4ff3db9
Author: Marvin Schmidt <marvin_schmidt@gmx.net>
Date:   Sat Aug 1 08:43:21 2009 +0200

    mad: make check for mad independent of the check for id3tag
    
    Fixes bug #590432.