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 529336 - libtool 2 breaks gtk+ build
libtool 2 breaks gtk+ build
Status: RESOLVED FIXED
Product: gtk+
Classification: Platform
Component: .General
2.12.x
Other Linux
: Normal normal
: ---
Assigned To: gtk-bugs
gtk-bugs
: 525934 (view as bug list)
Depends on:
Blocks:
 
 
Reported: 2008-04-22 08:35 UTC by Ross Burton
Modified: 2010-09-19 05:09 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Patch to remove one libtool call (526 bytes, patch)
2008-04-22 10:14 UTC, Ross Burton
none Details | Review
Revised patch (1.29 KB, patch)
2008-04-22 15:35 UTC, Ross Burton
none Details | Review
Gentoo libtool patch for 2.12.9 and later (920 bytes, patch)
2008-06-15 05:01 UTC, Jose M. daLuz
none Details | Review
Allow libtool 2.x in autogen.sh (428 bytes, patch)
2008-07-24 18:32 UTC, Christian Dywan
committed Details | Review

Description Ross Burton 2008-04-22 08:35:11 UTC
I know that GTK+ currently demands libtool 1.4 or 1.5, but at some point libtool 2.x (currently 2.2.2) will replace 1.x, and the GTK+ build system will break.

Currently the configure script runs libtool during it's execution:

pixbuf_libtool_config="${CONFIG_SHELL-/bin/sh} ./libtool --config"

With libtool 2.x, the libtool script isn't created until *after* the configure script has been executed, so this won't work.
Comment 1 Ross Burton 2008-04-22 10:14:11 UTC
Created attachment 109676 [details] [review]
Patch to remove one libtool call

This patch removes one of the libtool calls, as libtool.m4 initialises $deplibs_check_method for you there is no need to set it by calling libtool.

The same logic can probably be applied to the other invocations, but I want to check them carefully.
Comment 2 Ross Burton 2008-04-22 14:48:01 UTC
Hm this patch may not work for libtool 1.5.  It does for me, but it's not documented to work, so this is probably best left for a future 2.2 port.
Comment 3 Ross Burton 2008-04-22 15:12:41 UTC
I've been corrected on the libtool list, with libtool 1.4 onwards you can check the value of any libtool variable directly, so this patch is safe for libtool 1.4.
Comment 4 Ross Burton 2008-04-22 15:19:42 UTC
Does anyone know what this is all about:

    dnl Now we check to see if our libtool supports shared lib deps
    dnl (in a rather ugly way even)
    if $dynworks; then
        pixbuf_libtool_config="${CONFIG_SHELL-/bin/sh} ./libtool --config"
        pixbuf_deplibs_check=`$pixbuf_libtool_config | \
            grep '^[[a-z_]]*check[[a-z_]]*_method=[['\''"]]' | \
            sed 's/.*[['\''"]]\(.*\)[['\''"]]$/\1/'`
        if test "x$pixbuf_deplibs_check" = "xnone" || \
           test "x$pixbuf_deplibs_check" = "xunknown" || \
           test "x$pixbuf_deplibs_check" = "x"; then
            dynworks=false
        fi
    fi

The only line in the output which matches for me is deplibs_check_method:

deplibs_check_method=""

So why doesn't GTK+ just check $deplibs_check_method with a case statement?
Comment 5 Ross Burton 2008-04-22 15:35:07 UTC
Created attachment 109697 [details] [review]
Revised patch

Considering the weird grep/sed logic is over 6 years old, I'm pretty certain it's cruft.  This patch just checks $deplibs_check_method.

If it isn't cruft, people will start moaning because they suddenly have no pixbuf loaders. :)
Comment 6 Owen Taylor 2008-04-22 17:01:04 UTC
No idea at this point ... I suspect I copied that code from elsewhere...
likely the standalone gdk-pixbuf... the usage of CONFIG_SHELL etc doesn't
look like me.

(Note that the first use of deplibs_check_method is several years newer
than the second more complicated version... this is obscured by some
reformatting.)

This definitely needs careful testing, since if either test breaks
the result won't be "no pixbuf loaders", it will be "subtle broken
builds that cause ABI problems in the future."
Comment 7 Ross Burton 2008-04-22 17:13:02 UTC
I'm curious as to how this leads to ABI breakages.  When these tests failed for us (due to libtool 2.2 being used) the primary damage was no modules.  I've verified that for my system the patches produce the same results, but what would the potential ABI breakages be so I can check for them?
Comment 8 Jose M. daLuz 2008-06-15 05:00:44 UTC
Gentoo has been dealing with libtool 2.2.x breakage for a while now. gtk+ versions up to 2.12.10 in Portage build successfully with 2.2.x. You might want to query the Gentoo Gnome herd on the details, gnome@gentoo.org.

I can attach the obvious patch that's used, but there may be more to it than this one patch. 
Comment 9 Jose M. daLuz 2008-06-15 05:01:38 UTC
Created attachment 112763 [details] [review]
Gentoo libtool patch for 2.12.9 and later
Comment 10 Jose M. daLuz 2008-07-22 23:39:13 UTC
As of 2.13.5, gtk+ now builds with libtool 2.2.4 -- thanks very much! Now I can finally get back to testing Gnome 2.23 packages, something I've missed.
Comment 11 Christian Dywan 2008-07-24 18:32:00 UTC
Created attachment 115190 [details] [review]
Allow libtool 2.x in autogen.sh

What about the autogen.sh script? I suspect it should not abort if libtool is something else than 1.4 or 1.5 anymore. This patch therefore allows for 2.x versions.
Comment 12 Christian Dywan 2008-07-24 18:33:30 UTC
The same is valid for glib as well btw, the required change is the same. Not sure if there was a separate bug about that.
Comment 13 Behdad Esfahbod 2008-07-24 19:21:21 UTC
That's why I changed Pango to simply use gnome-autogen.sh.
Comment 14 Christian Dywan 2008-07-24 21:22:42 UTC
(In reply to comment #13)
> That's why I changed Pango to simply use gnome-autogen.sh.

Which actually is a way of moving gtk towards gnometk, since suddenly you need an extra gnome package that you don't normally need to build it.
Comment 15 Behdad Esfahbod 2008-07-24 21:43:24 UTC
(In reply to comment #14)
> (In reply to comment #13)
> > That's why I changed Pango to simply use gnome-autogen.sh.
> 
> Which actually is a way of moving gtk towards gnometk, since suddenly you need
> an extra gnome package that you don't normally need to build it.

Not to build it, to bootstrap it.  You already need that for Pango, if you didn't notice...
Comment 16 Christian Dywan 2008-07-24 23:13:30 UTC
(In reply to comment #15)
> (In reply to comment #14)
> > (In reply to comment #13)
> > > That's why I changed Pango to simply use gnome-autogen.sh.
> > 
> > Which actually is a way of moving gtk towards gnometk, since suddenly you need
> > an extra gnome package that you don't normally need to build it.
> 
> Not to build it, to bootstrap it.  You already need that for Pango, if you
> didn't notice...

In fact I rarely need to build Pango from svn, since I'm only working on Gtk and Glib, so apparently I did not notice.

Anyway, it's just my opinion that libraries that are independant from Gnome should try to avoid hard dependencies there, be it bootstrap or building. For me boostrap is part of the build requirements if I'm working with trunk and I don't have a Gnome install everywhere.
Comment 17 Simos Xenitellis 2008-11-12 23:33:26 UTC
*** Bug 525934 has been marked as a duplicate of this bug. ***
Comment 18 Matthias Clasen 2010-09-19 05:09:30 UTC
We require libtool 2.2 in autogen.sh nowadays