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 169123 - [build] false dependence on libxml2 if registry is enabled
[build] false dependence on libxml2 if registry is enabled
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gstreamer (core)
0.8.9
Other All
: Normal minor
: 0.8.10
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2005-03-03 19:52 UTC by Jamey Hicks
Modified: 2005-03-09 08:45 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
does not patch to remove unnecessary check for and link against libxml2 if --disable-loadsave is asserted. (8.29 KB, patch)
2005-03-03 19:53 UTC, Jamey Hicks
none Details | Review
revised patch (2.96 KB, patch)
2005-03-04 03:38 UTC, Jamey Hicks
none Details | Review

Description Jamey Hicks 2005-03-03 19:52:19 UTC
Please describe the problem:
./configure --disable-loadsave  still checks for libxml2 and links against
libxml2 even though registry uses gmarkup instead of xml2.

Steps to reproduce:
1. ./configure --disable-loadsave
2. make && sudo make install
3. ldd /usr/lib/libgstreamer*.so | grep libxml2



Actual results:
Shows dependence on libxml2 that is unneeded.

Expected results:
Should have no dependence on libxml2.


Does this happen every time?
yes

Other information:
Will attach a patch.
Comment 1 Jamey Hicks 2005-03-03 19:53:58 UTC
Created attachment 38219 [details] [review]
does not patch to remove unnecessary check for and link against libxml2 if --disable-loadsave is asserted.

proposed patch
Comment 2 Ronald Bultje 2005-03-03 20:07:21 UTC
We can't rename symbols. I'll apply the configure.ac part, though.
Comment 3 Jamey Hicks 2005-03-04 03:36:07 UTC
It won't build without more than the configure.ac part.  I'll generate a new
patch  without the renaming.
Comment 4 Jamey Hicks 2005-03-04 03:38:14 UTC
Created attachment 38233 [details] [review]
revised patch

Patch revised not to change symbol names.
Also added ifdef's around gst_file_index_plugin_init which is not linked in if
--disable-loadsave is asserted.
Comment 5 Ronald Bultje 2005-03-09 08:45:11 UTC
Thanks, applied.