From: gnome-perl (bugzilla.gnome.org) <bug...@bu...> - 2006-05-12 01:14:53
|
Do not reply to this via email (we are currently unable to handle email responses and they get discarded). You can add comments to this bug at http://bugzilla.gnome.org/show_bug.cgi?id=3D341339 gnome-perl | Gtk2 | Ver: unspecified ------- Comment #7 from Sergei Steshenko 2006-05-12 01:14 UTC ------- (In reply to comment #6) > (In reply to comment #4) > > I do not think gdb backtrace command is showing anything useful. >=20 > It looks like the stack is hosed, or at least gdb can't grok it. >=20 > > Loaded symbols for > > /usr/lib/perl5/vendor_perl/5.8.7/i386-linux/auto/Glib/Glib.so > ... > > Loaded symbols for /usr/lib/libgobject-2.0.so.0 > ... > > Loaded symbols for blib/arch/auto/Gtk2/Gtk2.so > ... > > Loaded symbols for > > /mnt/removable4/sergei/build_work/install/gtk+-2.8.17/lib/libgtk-x11-= 2.0.so.0 >=20 > This, however, may be hinting at the problem. >=20 > Do you also have a > /mnt/removable4/sergei/build_work/install/glib-2.x.xx/lib/libgobject-2.= 0.so.0?=20 > Is that the one that your gtk+ should be linking against? What are the > versions of the one in /usr/lib and the one in /.../build_work/../glib.= .. ? >=20 > It's possible that there is some evil and nasty thing going on with ver= sion > mismatches. >=20 > I'm guessing it's something like this: your environment doesn't includ= e a > PERL5LIB setting to tell perl where to find the same Glib that you conf= igured > to build against at Makefile.PL time. Therefore, perl finds the one in= the > perl standard library. When it loads that module, it also loads the li= bglib > and libgobject against which it is linked. IIRC, perl links extensions= with > -rpath, so it will find the one in /usr/lib instead of looking through > LD_LIBRARY_PATH. Then perl finds the uninstalled Gtk2.so in blib, and = loads > the libgtk+ against which it was linked, which is in your build/install > location. The gtk+ library expects to be used with a newer gobject tha= n is > loaded, and when Glib::GenPod attempts to query the gobject type system= to get > information for the docs, something goes boom. >=20 >=20 > To test this theory, could you try setting PERL5LIB to include the prop= er paths > and rerunning "make"? >=20 I am not sure I understand "where you are heading". My script is intended to build the following: gtk2 (the "C" library) and all its dependencies; wxwidgets based on the above; wxperl based on the above gtk2-perl based on the above. All builing occurs under /mnt/removable4/sergei/build_work/build : " ls -F /mnt/removable4/sergei/build_work/build atk-1.10.3/ Cairo-0.03.unpackage.log Glib-1.120.tar.gz = =20 Gtk2-1.121/ gtk+-2.8.17.unpackage.log Wx-0.26.tar.gz atk-1.10.3.tar.gz cairo-1.0.4/ Glib-1.120.unpackage= .log =20 Gtk2-1.121.tar.gz pango-1.12.1/ Wx-0.26.unpackage.l= og atk-1.10.3.unpackage.log cairo-1.0.4.tar.gz glib-2.10.1/ = =20 Gtk2-1.121.unpackage.log pango-1.12.1.tar.gz wxGTK-2.6.3/ Cairo-0.03/ cairo-1.0.4.unpackage.log glib-2.10.1.tar.gz = =20 gtk+-2.8.17/ pango-1.12.1.unpackage.log wxGTK-2.6.3.tar.gz Cairo-0.03.tar.gz Glib-1.120/ glib-2.10.1.unpackag= e.log=20 gtk+-2.8.17.tar.gz Wx-0.26/ wxGTK-2.6.3.unpacka= ge.log [47] 3:48 se...@co...:/ibm/home/sergei> "; all installation occurs under /mnt/removable4/sergei/build_work/install : " ls -F /mnt/removable4/sergei/build_work/install atk-1.10.3/ Cairo-0.03/ cairo-1.0.4/ Glib-1.120/ glib-2.10.1/ gtk+-2= .8.17/ pango-1.12.1/ Wx-0.26/ wxGTK-2.6.3/ ". So the answer to: " Do you also have a /mnt/removable4/sergei/build_work/install/glib-2.x.xx/lib/libgobject-2.0.= so.0? " is: " find /mnt/removable4/sergei/build_work/install/glib-2* -type f | grep "\.= so" /mnt/removable4/sergei/build_work/install/glib-2.10.1/lib/libglib-2.0.so.= 0.1000.1 /mnt/removable4/sergei/build_work/install/glib-2.10.1/lib/libgobject-2.0.= so.0.1000.1 /mnt/removable4/sergei/build_work/install/glib-2.10.1/lib/libgmodule-2.0.= so.0.1000.1 /mnt/removable4/sergei/build_work/install/glib-2.10.1/lib/libgthread-2.0.= so.0.1000.1 ". There is only glib-2.10.1 under /mnt/removable4/sergei/build_work/install/ and no other versions of glib. No, I'm not using PERL5LIB environment variable - after working for A Ver= y Well Known Semiconductor Company which used to have development environme= nt with more than 400 environment variables, and the environment couldn't fi= t into standard shells, and they had to recompile them from scratch, and I had mysterious failure which could be reproduced only adding apparently unrelated environment varibales (i.e. the failured were to environment ov= erlap or screwup) I have a very strong to environment variables. Actually, I had it before, the above experience just made it even stronge= r. For me usage of environment variables is an indication that no decent mechanism was thought of. I believe I found (dirty) workaround for the problem: 1) a sh wrapper around Perl in current directory " #!/bin/sh -f /usr/bin/perl5.8.7 -I /mnt/removable4/sergei/build_work/install/Glib-1.120/lib/perl5/site_perl/= 5.8.7/i386-linux "$@" 2) replacing in my case /usr/bin/perl5.8.7 with the above './perl' - both actions will be performed automatically by my build script; the ac= tual set of -I <path> will be generated per Perl module to be built. The build script is recursive; the directories under /mnt/removable4/sergei/build_work/install reflect what can already be successfully built. Anyway, IIRC, the Gtk modules documentation mentions PERL5LIB as a possib= ility, not as a must. So, I am pursuing a command line options option - again, in many places in Makefile the supplied -I <path> are correctly reflected. Do you want me to upload my script ? It is run as /ibm/home/sergei/gtk_wx_perl_builder/20060510/bin/build.pl > & build.log = & (the script directory maybe any, it's self-contained directory structure). It produces detailed log file, so one can see every command line executed through Perl 'system'. Environment is set only in the forked processess, e.g.: " build.pl :INFO: building 'Gtk2' target build.pl :INFO: unpackaging Gtk2-1.121.tar.gz, log file will be '/mnt/removable4/sergei/build_work/build/Gtk2-1.121.unpackage.log' build.pl :INFO: executing =3D=3D> \cd /mnt/removable4/sergei/build_work/b= uild; tar zxvf Gtk2-1.121.tar.gz 1>Gtk2-1.121.unpackage.log 2>&1 build.pl :INFO: it has been found that this 'Gtk2' target depends on the following targets: Glib atk cairo glib gtk+ pango build.pl :WARNING: have no other choice, but to start heuristic dependenc= y search for LD_LIBRARY_PATH environment variable contents build.pl :INFO: checking *.pc files $pkgconfig_dir=3D/mnt/removable4/sergei/build_work/install/Glib-1.120/lib= /pkgconfig for $next_level_target=3DGlib build.pl :WARNING: '/mnt/removable4/sergei/build_work/install/Glib-1.120/lib/pkgconfig' dire= ctory does not exist build.pl :INFO: checking *.pc files $pkgconfig_dir=3D/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib= /pkgconfig for $next_level_target=3Datk build.pl :INFO: found 'atk.pc' file, assuming 'atk' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=3D/mnt/removable4/sergei/build_work/install/Glib-1.120/l= ib/pkgconfig:/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkg= config:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfi= g:/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib/pkgconfig:/mn= t/removable4/sergei/build_work/install/gtk+-2.8.17/lib/pkgconfig:/mnt/rem= ovable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L atk' comm= and build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib -L/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib =20 build.pl :INFO: checking *.pc files $pkgconfig_dir=3D/mnt/removable4/sergei/build_work/install/cairo-1.0.4/li= b/pkgconfig for $next_level_target=3Dcairo build.pl :INFO: found 'cairo.pc' file, assuming 'cairo' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=3D/mnt/removable4/sergei/build_work/install/Glib-1.120/l= ib/pkgconfig:/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkg= config:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfi= g:/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib/pkgconfig:/mn= t/removable4/sergei/build_work/install/gtk+-2.8.17/lib/pkgconfig:/mnt/rem= ovable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L cairo' co= mmand build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib -L/usr/X11R6/= lib =20 build.pl :INFO: checking *.pc files $pkgconfig_dir=3D/mnt/removable4/sergei/build_work/install/glib-2.10.1/li= b/pkgconfig for $next_level_target=3Dglib build.pl :INFO: found 'glib-2.0.pc' file, assuming 'glib-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=3D/mnt/removable4/sergei/build_work/install/Glib-1.120/l= ib/pkgconfig:/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkg= config:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfi= g:/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib/pkgconfig:/mn= t/removable4/sergei/build_work/install/gtk+-2.8.17/lib/pkgconfig:/mnt/rem= ovable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L glib-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib =20 build.pl :INFO: found 'gobject-2.0.pc' file, assuming 'gobject-2.0' libra= ry build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=3D/mnt/removable4/sergei/build_work/install/Glib-1.120/l= ib/pkgconfig:/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkg= config:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfi= g:/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib/pkgconfig:/mn= t/removable4/sergei/build_work/install/gtk+-2.8.17/lib/pkgconfig:/mnt/rem= ovable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gobject-2= .0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib =20 build.pl :INFO: found 'gmodule-2.0.pc' file, assuming 'gmodule-2.0' libra= ry build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=3D/mnt/removable4/sergei/build_work/install/Glib-1.120/l= ib/pkgconfig:/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkg= config:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfi= g:/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib/pkgconfig:/mn= t/removable4/sergei/build_work/install/gtk+-2.8.17/lib/pkgconfig:/mnt/rem= ovable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gmodule-2= .0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib =20 build.pl :INFO: found 'gmodule-export-2.0.pc' file, assuming 'gmodule-export-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=3D/mnt/removable4/sergei/build_work/install/Glib-1.120/l= ib/pkgconfig:/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkg= config:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfi= g:/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib/pkgconfig:/mn= t/removable4/sergei/build_work/install/gtk+-2.8.17/lib/pkgconfig:/mnt/rem= ovable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gmodule-export-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib =20 build.pl :INFO: found 'gmodule-no-export-2.0.pc' file, assuming 'gmodule-no-export-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=3D/mnt/removable4/sergei/build_work/install/Glib-1.120/l= ib/pkgconfig:/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkg= config:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfi= g:/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib/pkgconfig:/mn= t/removable4/sergei/build_work/install/gtk+-2.8.17/lib/pkgconfig:/mnt/rem= ovable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gmodule-no-export-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib =20 build.pl :INFO: found 'gthread-2.0.pc' file, assuming 'gthread-2.0' libra= ry build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=3D/mnt/removable4/sergei/build_work/install/Glib-1.120/l= ib/pkgconfig:/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkg= config:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfi= g:/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib/pkgconfig:/mn= t/removable4/sergei/build_work/install/gtk+-2.8.17/lib/pkgconfig:/mnt/rem= ovable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gthread-2= .0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib =20 build.pl :INFO: checking *.pc files $pkgconfig_dir=3D/mnt/removable4/sergei/build_work/install/gtk+-2.8.17/li= b/pkgconfig for $next_level_target=3Dgtk+ build.pl :INFO: found 'gdk-pixbuf-xlib-2.0.pc' file, assuming 'gdk-pixbuf-xlib-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=3D/mnt/removable4/sergei/build_work/install/Glib-1.120/l= ib/pkgconfig:/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkg= config:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfi= g:/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib/pkgconfig:/mn= t/removable4/sergei/build_work/install/gtk+-2.8.17/lib/pkgconfig:/mnt/rem= ovable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gdk-pixbuf-xlib-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib -L/mnt/removable4/sergei/build_work/install/gtk+-2.8.17/lib =20 build.pl :INFO: found 'gdk-pixbuf-2.0.pc' file, assuming 'gdk-pixbuf-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=3D/mnt/removable4/sergei/build_work/install/Glib-1.120/l= ib/pkgconfig:/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkg= config:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfi= g:/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib/pkgconfig:/mn= t/removable4/sergei/build_work/install/gtk+-2.8.17/lib/pkgconfig:/mnt/rem= ovable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gdk-pixbu= f-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib -L/mnt/removable4/sergei/build_work/install/gtk+-2.8.17/lib =20 build.pl :INFO: found 'gdk-x11-2.0.pc' file, assuming 'gdk-x11-2.0' libra= ry build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=3D/mnt/removable4/sergei/build_work/install/Glib-1.120/l= ib/pkgconfig:/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkg= config:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfi= g:/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib/pkgconfig:/mn= t/removable4/sergei/build_work/install/gtk+-2.8.17/lib/pkgconfig:/mnt/rem= ovable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gdk-x11-2= .0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib -L/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib -L/mnt/removable4/sergei/build_work/install/gtk+-2.8.17/lib -L/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib -L/usr/X11R6= /lib =20 build.pl :INFO: found 'gtk+-x11-2.0.pc' file, assuming 'gtk+-x11-2.0' lib= rary build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=3D/mnt/removable4/sergei/build_work/install/Glib-1.120/l= ib/pkgconfig:/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkg= config:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfi= g:/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib/pkgconfig:/mn= t/removable4/sergei/build_work/install/gtk+-2.8.17/lib/pkgconfig:/mnt/rem= ovable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gtk+-x11-= 2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib -L/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib -L/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib -L/mnt/removable4/sergei/build_work/install/gtk+-2.8.17/lib -L/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib -L/usr/X11R6= /lib =20 build.pl :INFO: found 'gdk-2.0.pc' file, assuming 'gdk-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=3D/mnt/removable4/sergei/build_work/install/Glib-1.120/l= ib/pkgconfig:/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkg= config:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfi= g:/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib/pkgconfig:/mn= t/removable4/sergei/build_work/install/gtk+-2.8.17/lib/pkgconfig:/mnt/rem= ovable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gdk-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib -L/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib -L/mnt/removable4/sergei/build_work/install/gtk+-2.8.17/lib -L/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib -L/usr/X11R6= /lib =20 build.pl :INFO: found 'gtk+-2.0.pc' file, assuming 'gtk+-2.0' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=3D/mnt/removable4/sergei/build_work/install/Glib-1.120/l= ib/pkgconfig:/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkg= config:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfi= g:/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib/pkgconfig:/mn= t/removable4/sergei/build_work/install/gtk+-2.8.17/lib/pkgconfig:/mnt/rem= ovable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L gtk+-2.0' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib -L/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib -L/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib -L/mnt/removable4/sergei/build_work/install/gtk+-2.8.17/lib -L/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib -L/usr/X11R6= /lib =20 build.pl :INFO: checking *.pc files $pkgconfig_dir=3D/mnt/removable4/sergei/build_work/install/pango-1.12.1/l= ib/pkgconfig for $next_level_target=3Dpango build.pl :INFO: found 'pango.pc' file, assuming 'pango' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=3D/mnt/removable4/sergei/build_work/install/Glib-1.120/l= ib/pkgconfig:/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkg= config:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfi= g:/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib/pkgconfig:/mn= t/removable4/sergei/build_work/install/gtk+-2.8.17/lib/pkgconfig:/mnt/rem= ovable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L pango' co= mmand build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib -L/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib =20 build.pl :INFO: found 'pangocairo.pc' file, assuming 'pangocairo' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=3D/mnt/removable4/sergei/build_work/install/Glib-1.120/l= ib/pkgconfig:/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkg= config:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfi= g:/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib/pkgconfig:/mn= t/removable4/sergei/build_work/install/gtk+-2.8.17/lib/pkgconfig:/mnt/rem= ovable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L pangocair= o' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib -L/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib -L/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib -L/usr/X11R6= /lib =20 build.pl :INFO: found 'pangox.pc' file, assuming 'pangox' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=3D/mnt/removable4/sergei/build_work/install/Glib-1.120/l= ib/pkgconfig:/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkg= config:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfi= g:/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib/pkgconfig:/mn= t/removable4/sergei/build_work/install/gtk+-2.8.17/lib/pkgconfig:/mnt/rem= ovable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L pangox' c= ommand build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib -L/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib =20 build.pl :INFO: found 'pangoxft.pc' file, assuming 'pangoxft' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=3D/mnt/removable4/sergei/build_work/install/Glib-1.120/l= ib/pkgconfig:/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkg= config:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfi= g:/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib/pkgconfig:/mn= t/removable4/sergei/build_work/install/gtk+-2.8.17/lib/pkgconfig:/mnt/rem= ovable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L pangoxft' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib -L/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib =20 build.pl :INFO: found 'pangoft2.pc' file, assuming 'pangoft2' library build.pl :INFO: going to grab STDOUT from 'PKG_CONFIG_PATH=3D/mnt/removable4/sergei/build_work/install/Glib-1.120/l= ib/pkgconfig:/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkg= config:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfi= g:/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib/pkgconfig:/mn= t/removable4/sergei/build_work/install/gtk+-2.8.17/lib/pkgconfig:/mnt/rem= ovable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; pkg-config --print-errors --libs-only-L pangoft2' command build.pl :INFO: STDOUT of the above command was: -L/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib -L/mnt/removable4/sergei/build_work/install/pango-1.12.1/lib =20 build.pl :INFO: for 'Gtk2' target directories with .pm files of targets i= t depends on are: /mnt/removable4/sergei/build_work/install/Glib-1.120/lib/perl5/site_perl/= 5.8.7/i386-linux build.pl :INFO: 'perl Makefile.pl' for 'Gtk2' target is about to be run, = log file will be '/mnt/removable4/sergei/build_work/build/Gtk2-1.121/Makefile.PL.log' build.pl executing =3D=3D> cd /mnt/removable4/sergei/build_work/build/Gtk= 2-1.121; PATH=3D/mnt/removable4/sergei/build_work/install/Glib-1.120/bin:/mnt/remo= vable4/sergei/build_work/install/atk-1.10.3/bin:/mnt/removable4/sergei/bu= ild_work/install/cairo-1.0.4/bin:/mnt/removable4/sergei/build_work/instal= l/glib-2.10.1/bin:/mnt/removable4/sergei/build_work/install/gtk+-2.8.17/b= in:/mnt/removable4/sergei/build_work/install/pango-1.12.1/bin:/usr/sbin:/= sbin:/usr/local/bin:/usr/bin:/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin/= :/usr/games:/ibm/home/sergei/bin:/usr/lib/ssh; export PATH; LD_LIBRARY_PATH=3D/mnt/removable4/sergei/build_work/install/atk-1.10.3/li= b:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib:/mnt/removabl= e4/sergei/build_work/install/glib-2.10.1/lib:/mnt/removable4/sergei/build= _work/install/gtk+-2.8.17/lib:/mnt/removable4/sergei/build_work/install/p= ango-1.12.1/lib:/usr/X11R6/lib; export LD_LIBRARY_PATH; PKG_CONFIG_PATH=3D/mnt/removable4/sergei/build_work/install/Glib-1.120/li= b/pkgconfig:/mnt/removable4/sergei/build_work/install/atk-1.10.3/lib/pkgc= onfig:/mnt/removable4/sergei/build_work/install/cairo-1.0.4/lib/pkgconfig= :/mnt/removable4/sergei/build_work/install/glib-2.10.1/lib/pkgconfig:/mnt= /removable4/sergei/build_work/install/gtk+-2.8.17/lib/pkgconfig:/mnt/remo= vable4/sergei/build_work/install/pango-1.12.1/lib/pkgconfig; export PKG_CONFIG_PATH; /usr/bin/perl5.8.7 -w -I . -I /mnt/removable4/sergei/build_work/install/Glib-1.120/lib/perl5/site_perl/= 5.8.7/i386-linux Makefile.PL --debug PREFIX=3D/mnt/removable4/sergei/build_work/install/Gt= k2-1.121 1>Makefile.PL.log 2>&1 build.pl :INFO: 'make' for 'Gtk2' target is about to be run, log file wil= l be '/mnt/removable4/sergei/build_work/build/Gtk2-1.121/make.log' build.pl executing =3D=3D> cd /mnt/removable4/sergei/build_work/build/Gtk= 2-1.121; PATH=3D/mnt/removable4/sergei/build_work/install/Glib-1.120/bin:/mnt/remo= vable4/sergei/build_work/install/atk-1.10.3/bin:/mnt/removable4/sergei/bu= ild_work/install/cairo-1.0.4/bin:/mnt/removable4/sergei/build_work/instal= l/glib-2.10.1/bin:/mnt/removable4/sergei/build_work/install/gtk+-2.8.17/b= in:/mnt/removable4/sergei/build_work/install/pango-1.12.1/bin:/usr/sbin:/= sbin:/usr/local/bin:/usr/bin:/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin/= :/usr/games:/ibm/home/sergei/bin:/usr/lib/ssh; export PATH; make 1>make.log 2>&1 build.pl :ERROR: 'make' for 'Gtk2' target failed, see '/mnt/removable4/sergei/build_work/build/Gtk2-1.121/make.log' log file fo= r details " --=20 Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=3Demail ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. |