Bug#546626: libgtk2-mozembed-perl: FTBFS with Perl 5.10.1: undefined symbol: XPCOMGlueStartup

Niko Tyni ntyni at debian.org
Mon Sep 14 17:47:32 UTC 2009


Package: libgtk2-mozembed-perl
Version: 0.08-2
Severity: important
User: debian-perl at lists.debian.org
Usertags: perl-5.10.1-transition

This package fails to build with Perl 5.10.1 (currently in experimental.)

The failure mode looks quite strange:

 Generating POD...
 /usr/bin/perl: symbol lookup error: blib/arch/auto/Gtk2/MozEmbed/MozEmbed.so: undefined symbol: XPCOMGlueStartup
 make[1]: *** [build/podindex] Error 127

The Makefiles are different, relevant parts follow:

 # This Makefile is for the Gtk2::MozEmbed extension to perl.
 #
 # It was generated automatically by MakeMaker version
-# 6.42 (Revision: 41145) from the contents of
+# 6.55_02 (Revision: 65502) from the contents of
 # Makefile.PL. Don't edit this file, edit Makefile.PL instead.

[...]

-EXTRALIBS = -L/usr/lib/xulrunner-devel-1.9/lib -lxpcomglue -lstdc++ -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lpangocairo-1.0 -lcairo -lgthread-2.0 -lrt -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lpangoft2-1.0 -lgdk_pixbuf-2.0 -lgio-2.0 -lfreetype -lfontconfig
-LDLOADLIBS = -L/usr/lib/xulrunner-devel-1.9/lib -lxpcomglue -lstdc++ -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lpangocairo-1.0 -lcairo -lgthread-2.0 -lrt -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lpangoft2-1.0 -lgdk_pixbuf-2.0 -lm -lgio-2.0 -lfreetype -lfontconfig
+EXTRALIBS = -L/usr/lib/xulrunner-devel-1.9/lib -lxpcomglue_s -lstdc++ -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lpangocairo-1.0 -lcairo -lgthread-2.0 -lrt -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lpangoft2-1.0 -lgdk_pixbuf-2.0 -lgio-2.0 -lfreetype -lfontconfig
+LDLOADLIBS = -L/usr/lib/xulrunner-devel-1.9/lib -lxpcomglue_s -lstdc++ -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lpangocairo-1.0 -lcairo -lgthread-2.0 -lrt -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lpangoft2-1.0 -lgdk_pixbuf-2.0 -lm -lgio-2.0 -lfreetype -lfontconfig

The XPCOMGlueStartup symbol is present in 
 % objdump -t /usr/lib/xulrunner-devel-1.9/sdk/lib/libxpcomglue.a|grep XPCOMGlueStartup
 000000000000055b g     F .text  0000000000000050 .hidden XPCOMGlueStartup
but not in
 % objdump -t /usr/lib/xulrunner-devel-1.9/sdk/lib/libxpcomglue_s.a|grep XPCOMGlueStartup

It boils down to this:

 % perl -MExtUtils::Liblist -E 'say "$]: " . (ExtUtils::Liblist->ext("-L/usr/lib/xulrunner-devel-1.9/sdk/lib -lxpcomglue"))[0]'                        
 5.010000: -L/usr/lib/xulrunner-devel-1.9/sdk/lib -lxpcomglue
 5.010001: -L/usr/lib/xulrunner-devel-1.9/sdk/lib -lxpcomglue_s

which is due to this change in ExtUtils::MakeMaker 6.45_01:

--- ExtUtils-MakeMaker-6.44/lib/ExtUtils/Liblist/Kid.pm	2008-02-29 00:39:17.000000000 +0000
+++ ExtUtils-MakeMaker-6.45_01/lib/ExtUtils/Liblist/Kid.pm	2008-09-06 12:44:50.000000000 +0100
@@ -9,7 +9,7 @@ use 5.006;
 # Broken out of MakeMaker from version 4.11
 
 use strict;
-our $VERSION = 6.44;
+our $VERSION = 6.45_01;
 
 use Config;
 use Cwd 'cwd';
@@ -127,7 +127,7 @@ sub _unix_os2_ext {
 	    } elsif (-f ($fullname="$thispth/lib$thislib.$so")
 		 && (($Config{'dlsrc'} ne "dl_dld.xs") || ($thislib eq "m"))){
 	    } elsif (-f ($fullname="$thispth/lib${thislib}_s$Config_libext")
-                 && (! $Config{'archname'} =~ /RM\d\d\d-svr4/)
+                 && ($Config{'archname'} !~ /RM\d\d\d-svr4/)
 		 && ($thislib .= "_s") ){ # we must explicitly use _s version
 	    } elsif (-f ($fullname="$thispth/lib$thislib$Config_libext")){
 	    } elsif (-f ($fullname="$thispth/$thislib$Config_libext")){

So, ExtUtils::LibList now prefers the _s variant as it was apparently
meant to do earlier too but didn't (because '!' has a stronger precedence
than '=~', so (! $Config{'archname'} =~ /RM\d\d\d-svr4/) was never true).

Ryan, could you please pick up the ball from here?
-- 
Niko Tyni   ntyni at debian.org
-------------- next part --------------
sbuild (Debian sbuild) 0.59.0 (02 Aug 2009) on sid

????????????????????????????????????????????????????????????????????????????????
? libgtk2-mozembed-perl 0.08-2 (amd64)                       12 Sep 2009 04:19 ?
????????????????????????????????????????????????????????????????????????????????

Package: libgtk2-mozembed-perl
Version: 0.08-2
Architecture: amd64
Start Time: 20090912-0419

????????????????????????????????????????????????????????????????????????????????
? Fetch source files                                                           ?
????????????????????????????????????????????????????????????????????????????????


Check APT
?????????

Checking available source versions...

Download source files with APT
??????????????????????????????

Reading package lists...
Building dependency tree...
Reading state information...
Need to get 27.6kB of source archives.
Get:1 http://ftp.fi.debian.org sid/main libgtk2-mozembed-perl 0.08-2 (dsc) [1511B]
Get:2 http://ftp.fi.debian.org sid/main libgtk2-mozembed-perl 0.08-2 (tar) [21.6kB]
Get:3 http://ftp.fi.debian.org sid/main libgtk2-mozembed-perl 0.08-2 (diff) [4447B]
Fetched 27.6kB in 0s (246kB/s)
Download complete and in download only mode

Check arch
??????????

** Using build dependencies supplied by package:
Build-Depends: debhelper (>= 7), libextutils-depends-perl (>= 0.20), libextutils-pkgconfig-perl (>= 1.03), libgtk2-perl (>= 1.081), perl (>= 5.6.0-12), xulrunner-dev, xvfb, xauth, xfonts-base, libglib2.0-dev, libgtk2.0-dev, quilt

????????????????????????????????????????????????????????????????????????????????
? Install build dependencies                                                   ?
????????????????????????????????????????????????????????????????????????????????

Checking for already installed source dependencies...
debhelper: missing
Using default version 7.4.1
libextutils-depends-perl: missing
Using default version 0.301-1
libextutils-pkgconfig-perl: missing
Using default version 1.12-1
libgtk2-perl: missing
Using default version 1:1.221-2
perl: already installed (5.10.1-1 >= 5.6.0-12 is satisfied)
xulrunner-dev: missing
xvfb: missing
xauth: missing
xfonts-base: missing
libglib2.0-dev: missing
libgtk2.0-dev: missing
quilt: missing
Checking for source dependency conflicts...
Installing positive dependencies: debhelper libextutils-depends-perl libextutils-pkgconfig-perl libgtk2-perl xulrunner-dev xvfb xauth xfonts-base libglib2.0-dev libgtk2.0-dev quilt
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
  defoma diffstat file fontconfig fontconfig-config gettext gettext-base
  html2text intltool-debian liba52-0.7.4 libatk1.0-0 libatk1.0-dev libaudit0
  libavahi-client3 libavahi-common-data libavahi-common3 libcairo-perl
  libcairo2 libcairo2-dev libcroco3 libcups2 libdatrie1 libdbus-1-3
  libdirectfb-1.2-0 libdirectfb-dev libdirectfb-extra libexpat1 libexpat1-dev
  libfontconfig1 libfontconfig1-dev libfontenc1 libfreetype6 libfreetype6-dev
  libglib-perl libglib2.0-0 libgtk2.0-0 libgtk2.0-common libhal1
  libhunspell-1.2-0 libice-dev libice6 libidl0 libjasper1 libjpeg62
  libjpeg62-dev liblcms1 libmagic1 libmozjs-dev libmozjs1d libmpeg3-1
  libmpeg3-dev libnewt0.52 libnspr4-0d libnspr4-dev libnss3-1d libnss3-dev
  libpango-perl libpango1.0-0 libpango1.0-common libpango1.0-dev libpcre3
  libpixman-1-0 libpixman-1-dev libpng12-0 libpng12-dev libpopt0
  libpthread-stubs0 libpthread-stubs0-dev libsm-dev libsm6 libsqlite3-0
  libstartup-notification0 libsysfs-dev libsysfs2 libthai-data libthai0
  libtiff4 libts-0.0-0 libx11-6 libx11-data libx11-dev libxau-dev libxau6
  libxcb-atom1 libxcb-aux0 libxcb-event1 libxcb-render-util0
  libxcb-render-util0-dev libxcb-render0 libxcb-render0-dev libxcb1
  libxcb1-dev libxcomposite-dev libxcomposite1 libxcursor-dev libxcursor1
  libxdamage-dev libxdamage1 libxdmcp-dev libxdmcp6 libxext-dev libxext6
  libxfixes-dev libxfixes3 libxfont1 libxft-dev libxft2 libxi-dev libxi6
  libxinerama-dev libxinerama1 libxml2 libxml2-utils libxmuu1 libxrandr-dev
  libxrandr2 libxrender-dev libxrender1 libxt6 pkg-config po-debconf
  shared-mime-info tsconf ttf-dejavu ttf-dejavu-core ttf-dejavu-extra ucf
  whiptail x11-common x11proto-composite-dev x11proto-core-dev
  x11proto-damage-dev x11proto-fixes-dev x11proto-input-dev x11proto-kb-dev
  x11proto-randr-dev x11proto-render-dev x11proto-xext-dev
  x11proto-xinerama-dev xfonts-encodings xfonts-utils xserver-common
  xtrans-dev xulrunner-1.9 zlib1g-dev
Suggested packages:
  dh-make defoma-doc psfontmgr x-ttcidfont-conf dfontmgr gettext-doc
  libcairo2-doc cups-common libglib2.0-doc libgtk2-perl-doc librsvg2-common
  gvfs libgtk2.0-doc libjasper-runtime liblcms-utils ttf-japanese-gothic
  ttf-japanese-mincho ttf-thryomanes ttf-baekmuk ttf-arphic-gbsn00lp
  ttf-arphic-bsmi00lp ttf-arphic-gkai00mp ttf-arphic-bkai00mp libpango1.0-doc
  imagemagick libmail-box-perl procmail graphviz xfs xserver
  xulrunner-1.9-gnome-support
Recommended packages:
  libfont-freetype-perl curl wget lynx cvs libatk1.0-data dbus libglib2.0-data
  python hicolor-icon-theme libgtk2.0-bin hunspell-en-us hunspell-dictionary
  myspell-dictionary libfribidi0 xml-core libmail-sendmail-perl
The following NEW packages will be installed:
  debhelper defoma diffstat file fontconfig fontconfig-config gettext
  gettext-base html2text intltool-debian liba52-0.7.4 libatk1.0-0
  libatk1.0-dev libaudit0 libavahi-client3 libavahi-common-data
  libavahi-common3 libcairo-perl libcairo2 libcairo2-dev libcroco3 libcups2
  libdatrie1 libdbus-1-3 libdirectfb-1.2-0 libdirectfb-dev libdirectfb-extra
  libexpat1 libexpat1-dev libextutils-depends-perl libextutils-pkgconfig-perl
  libfontconfig1 libfontconfig1-dev libfontenc1 libfreetype6 libfreetype6-dev
  libglib-perl libglib2.0-0 libglib2.0-dev libgtk2-perl libgtk2.0-0
  libgtk2.0-common libgtk2.0-dev libhal1 libhunspell-1.2-0 libice-dev libice6
  libidl0 libjasper1 libjpeg62 libjpeg62-dev liblcms1 libmagic1 libmozjs-dev
  libmozjs1d libmpeg3-1 libmpeg3-dev libnewt0.52 libnspr4-0d libnspr4-dev
  libnss3-1d libnss3-dev libpango-perl libpango1.0-0 libpango1.0-common
  libpango1.0-dev libpcre3 libpixman-1-0 libpixman-1-dev libpng12-0
  libpng12-dev libpopt0 libpthread-stubs0 libpthread-stubs0-dev libsm-dev
  libsm6 libsqlite3-0 libstartup-notification0 libsysfs-dev libsysfs2
  libthai-data libthai0 libtiff4 libts-0.0-0 libx11-6 libx11-data libx11-dev
  libxau-dev libxau6 libxcb-atom1 libxcb-aux0 libxcb-event1
  libxcb-render-util0 libxcb-render-util0-dev libxcb-render0
  libxcb-render0-dev libxcb1 libxcb1-dev libxcomposite-dev libxcomposite1
  libxcursor-dev libxcursor1 libxdamage-dev libxdamage1 libxdmcp-dev libxdmcp6
  libxext-dev libxext6 libxfixes-dev libxfixes3 libxfont1 libxft-dev libxft2
  libxi-dev libxi6 libxinerama-dev libxinerama1 libxml2 libxml2-utils libxmuu1
  libxrandr-dev libxrandr2 libxrender-dev libxrender1 libxt6 pkg-config
  po-debconf quilt shared-mime-info tsconf ttf-dejavu ttf-dejavu-core
  ttf-dejavu-extra ucf whiptail x11-common x11proto-composite-dev
  x11proto-core-dev x11proto-damage-dev x11proto-fixes-dev x11proto-input-dev
  x11proto-kb-dev x11proto-randr-dev x11proto-render-dev x11proto-xext-dev
  x11proto-xinerama-dev xauth xfonts-base xfonts-encodings xfonts-utils
  xserver-common xtrans-dev xulrunner-1.9 xulrunner-dev xvfb zlib1g-dev
0 upgraded, 156 newly installed, 0 to remove and 0 not upgraded.
Need to get 64.4MB of archives.
After this operation, 203MB of additional disk space will be used.
Get:1 http://ftp.fi.debian.org sid/main x11-common 1:7.4+4 [287kB]
Get:2 http://ftp.fi.debian.org sid/main libice6 2:1.0.5-1 [53.4kB]
Get:3 http://ftp.fi.debian.org sid/main x11proto-core-dev 7.0.15-1 [94.8kB]
Get:4 http://ftp.fi.debian.org sid/main libice-dev 2:1.0.5-1 [65.5kB]
Get:5 http://ftp.fi.debian.org sid/main libxau6 1:1.0.4-2 [13.2kB]
Get:6 http://ftp.fi.debian.org sid/main libxdmcp6 1:1.0.2-3 [17.9kB]
Get:7 http://ftp.fi.debian.org sid/main libxcb1 1.4-1 [43.3kB]
Get:8 http://ftp.fi.debian.org sid/main libx11-data 2:1.2.2-1 [217kB]
Get:9 http://ftp.fi.debian.org sid/main libx11-6 2:1.2.2-1 [831kB]
Get:10 http://ftp.fi.debian.org sid/main libxau-dev 1:1.0.4-2 [16.9kB]
Get:11 http://ftp.fi.debian.org sid/main libxdmcp-dev 1:1.0.2-3 [21.4kB]
Get:12 http://ftp.fi.debian.org sid/main x11proto-input-dev 1.5.0-2 [17.5kB]
Get:13 http://ftp.fi.debian.org sid/main x11proto-kb-dev 1.0.3-3 [27.1kB]
Get:14 http://ftp.fi.debian.org sid/main xtrans-dev 1.2.4-1 [67.3kB]
Get:15 http://ftp.fi.debian.org sid/main libpthread-stubs0 0.1-2 [2774B]
Get:16 http://ftp.fi.debian.org sid/main libpthread-stubs0-dev 0.1-2 [3052B]
Get:17 http://ftp.fi.debian.org sid/main libxcb1-dev 1.4-1 [79.7kB]
Get:18 http://ftp.fi.debian.org sid/main libx11-dev 2:1.2.2-1 [1950kB]
Get:19 http://ftp.fi.debian.org sid/main libxext6 2:1.0.4-1 [36.6kB]
Get:20 http://ftp.fi.debian.org sid/main libxfixes3 1:4.0.3-2 [10.8kB]
Get:21 http://ftp.fi.debian.org sid/main libxcomposite1 1:0.4.0-4 [11.8kB]
Get:22 http://ftp.fi.debian.org sid/main x11proto-xext-dev 7.0.4-2 [44.6kB]
Get:23 http://ftp.fi.debian.org sid/main x11proto-fixes-dev 1:4.0-3 [13.8kB]
Get:24 http://ftp.fi.debian.org sid/main libxfixes-dev 1:4.0.3-2 [13.4kB]
Get:25 http://ftp.fi.debian.org sid/main x11proto-composite-dev 1:0.4-2 [12.3kB]
Get:26 http://ftp.fi.debian.org sid/main libxext-dev 2:1.0.4-1 [88.7kB]
Get:27 http://ftp.fi.debian.org sid/main libxcomposite-dev 1:0.4.0-4 [15.2kB]
Get:28 http://ftp.fi.debian.org sid/main libxrender1 1:0.9.4-2 [28.1kB]
Get:29 http://ftp.fi.debian.org sid/main libxcursor1 1:1.1.9-1 [25.6kB]
Get:30 http://ftp.fi.debian.org sid/main x11proto-render-dev 2:0.9.3-2 [7062B]
Get:31 http://ftp.fi.debian.org sid/main libxrender-dev 1:0.9.4-2 [31.9kB]
Get:32 http://ftp.fi.debian.org sid/main libxcursor-dev 1:1.1.9-1 [33.4kB]
Get:33 http://ftp.fi.debian.org sid/main libxdamage1 1:1.1.1-4 [10.5kB]
Get:34 http://ftp.fi.debian.org sid/main x11proto-damage-dev 1:1.2.0-1 [10.2kB]
Get:35 http://ftp.fi.debian.org sid/main libxdamage-dev 1:1.1.1-4 [10.2kB]
Get:36 http://ftp.fi.debian.org sid/main libexpat1 2.0.1-4 [136kB]
Get:37 http://ftp.fi.debian.org sid/main libfreetype6 2.3.9-5 [408kB]
Get:38 http://ftp.fi.debian.org sid/main ucf 3.0021 [67.1kB]
Get:39 http://ftp.fi.debian.org sid/main libnewt0.52 0.52.10-4 [67.8kB]
Get:40 http://ftp.fi.debian.org sid/main libpopt0 1.14-4 [46.4kB]
Get:41 http://ftp.fi.debian.org sid/main whiptail 0.52.10-4 [38.9kB]
Get:42 http://ftp.fi.debian.org sid/main libmagic1 5.03-1 [389kB]
Get:43 http://ftp.fi.debian.org sid/main file 5.03-1 [46.7kB]
Get:44 http://ftp.fi.debian.org sid/main defoma 0.11.10-1 [99.1kB]
Get:45 http://ftp.fi.debian.org sid/main ttf-dejavu-core 2.30-1 [1437kB]
Get:46 http://ftp.fi.debian.org sid/main ttf-dejavu-extra 2.30-1 [3180kB]
Get:47 http://ftp.fi.debian.org sid/main ttf-dejavu 2.30-1 [28.7kB]
Get:48 http://ftp.fi.debian.org sid/main fontconfig-config 2.6.0-4 [184kB]
Get:49 http://ftp.fi.debian.org sid/main libfontconfig1 2.6.0-4 [240kB]
Get:50 http://ftp.fi.debian.org sid/main libxft2 2.1.13-3 [53.8kB]
Get:51 http://ftp.fi.debian.org sid/main libexpat1-dev 2.0.1-4 [226kB]
Get:52 http://ftp.fi.debian.org sid/main zlib1g-dev 1:1.2.3.3.dfsg-15 [164kB]
Get:53 http://ftp.fi.debian.org sid/main libfreetype6-dev 2.3.9-5 [730kB]
Get:54 http://ftp.fi.debian.org sid/main libpcre3 7.8-2 [215kB]
Get:55 http://ftp.fi.debian.org sid/main libglib2.0-0 2.20.5-1 [851kB]
Get:56 http://ftp.fi.debian.org sid/main pkg-config 0.22-1 [55.0kB]
Get:57 http://ftp.fi.debian.org sid/main libfontconfig1-dev 2.6.0-4 [733kB]
Get:58 http://ftp.fi.debian.org sid/main libxft-dev 2.1.13-3 [69.1kB]
Get:59 http://ftp.fi.debian.org sid/main libxi6 2:1.2.1-2 [29.8kB]
Get:60 http://ftp.fi.debian.org sid/main libxi-dev 2:1.2.1-2 [78.8kB]
Get:61 http://ftp.fi.debian.org sid/main libxinerama1 2:1.0.3-2 [10.5kB]
Get:62 http://ftp.fi.debian.org sid/main x11proto-xinerama-dev 1.1.2-5 [5334B]
Get:63 http://ftp.fi.debian.org sid/main libxinerama-dev 2:1.0.3-2 [12.0kB]
Get:64 http://ftp.fi.debian.org sid/main libxrandr2 2:1.3.0-2 [28.2kB]
Get:65 http://ftp.fi.debian.org sid/main x11proto-randr-dev 1.3.0-1 [38.1kB]
Get:66 http://ftp.fi.debian.org sid/main libxrandr-dev 2:1.3.0-2 [35.7kB]
Get:67 http://ftp.fi.debian.org sid/main libxmuu1 2:1.0.4-2 [14.3kB]
Get:68 http://ftp.fi.debian.org sid/main xauth 1:1.0.3-2 [32.9kB]
Get:69 http://ftp.fi.debian.org sid/main gettext-base 0.17-8 [133kB]
Get:70 http://ftp.fi.debian.org sid/main libsqlite3-0 3.6.17-2 [291kB]
Get:71 http://ftp.fi.debian.org sid/main libxml2 2.7.4.dfsg-1 [873kB]
Get:72 http://ftp.fi.debian.org sid/main html2text 1.3.2a-14 [103kB]
Get:73 http://ftp.fi.debian.org sid/main libcroco3 0.6.1-2 [123kB]
Get:74 http://ftp.fi.debian.org sid/main gettext 0.17-8 [2503kB]
Get:75 http://ftp.fi.debian.org sid/main intltool-debian 0.35.0+20060710.1 [30.8kB]
Get:76 http://ftp.fi.debian.org sid/main po-debconf 1.0.16 [224kB]
Get:77 http://ftp.fi.debian.org sid/main debhelper 7.4.1 [359kB]
Get:78 http://ftp.fi.debian.org sid/main diffstat 1.47-1 [24.2kB]
Get:79 http://ftp.fi.debian.org sid/main fontconfig 2.6.0-4 [282kB]
Get:80 http://ftp.fi.debian.org sid/main liba52-0.7.4 0.7.4-11 [28.3kB]
Get:81 http://ftp.fi.debian.org sid/main libatk1.0-0 1.26.0-1 [86.5kB]
Get:82 http://ftp.fi.debian.org sid/main libglib2.0-dev 2.20.5-1 [1044kB]
Get:83 http://ftp.fi.debian.org sid/main libatk1.0-dev 1.26.0-1 [127kB]
Get:84 http://ftp.fi.debian.org sid/main libavahi-common-data 0.6.25-1 [33.1kB]
Get:85 http://ftp.fi.debian.org sid/main libavahi-common3 0.6.25-1 [50.3kB]
Get:86 http://ftp.fi.debian.org sid/main libdbus-1-3 1.2.16-2 [142kB]
Get:87 http://ftp.fi.debian.org sid/main libavahi-client3 0.6.25-1 [55.4kB]
Get:88 http://ftp.fi.debian.org sid/main libsysfs2 2.1.0-6 [29.0kB]
Get:89 http://ftp.fi.debian.org sid/main tsconf 1.0-7 [12.6kB]
Get:90 http://ftp.fi.debian.org sid/main libts-0.0-0 1.0-7 [28.6kB]
Get:91 http://ftp.fi.debian.org sid/main libdirectfb-1.2-0 1.2.8-4 [1169kB]
Get:92 http://ftp.fi.debian.org sid/main libpixman-1-0 0.14.0-1 [150kB]
Get:93 http://ftp.fi.debian.org sid/main libpng12-0 1.2.39-1 [174kB]
Get:94 http://ftp.fi.debian.org sid/main libxcb-render0 1.4-1 [15.6kB]
Get:95 http://ftp.fi.debian.org sid/main libxcb-render-util0 0.3.6-1 [9772B]
Get:96 http://ftp.fi.debian.org sid/main libcairo2 1.8.8-2 [521kB]
Get:97 http://ftp.fi.debian.org sid/main libcairo-perl 1.061-1 [122kB]
Get:98 http://ftp.fi.debian.org sid/main libpng12-dev 1.2.39-1 [263kB]
Get:99 http://ftp.fi.debian.org sid/main libjpeg62 6b-15 [92.2kB]
Get:100 http://ftp.fi.debian.org sid/main libdirectfb-extra 1.2.8-4 [36.1kB]
Get:101 http://ftp.fi.debian.org sid/main libjpeg62-dev 6b-15 [197kB]
Get:102 http://ftp.fi.debian.org sid/main libmpeg3-1 1.5.4-5 [81.6kB]
Get:103 http://ftp.fi.debian.org sid/main libmpeg3-dev 1.5.4-5 [113kB]
Get:104 http://ftp.fi.debian.org sid/main libsysfs-dev 2.1.0-6 [46.6kB]
Get:105 http://ftp.fi.debian.org sid/main libdirectfb-dev 1.2.8-4 [905kB]
Get:106 http://ftp.fi.debian.org sid/main libsm6 2:1.1.1-1 [25.0kB]
Get:107 http://ftp.fi.debian.org sid/main libsm-dev 2:1.1.1-1 [27.9kB]
Get:108 http://ftp.fi.debian.org sid/main libpixman-1-dev 0.14.0-1 [176kB]
Get:109 http://ftp.fi.debian.org sid/main libxcb-render0-dev 1.4-1 [23.0kB]
Get:110 http://ftp.fi.debian.org sid/main libxcb-render-util0-dev 0.3.6-1 [9706B]
Get:111 http://ftp.fi.debian.org sid/main libcairo2-dev 1.8.8-2 [623kB]
Get:112 http://ftp.fi.debian.org sid/main libcups2 1.4.0-5 [213kB]
Get:113 http://ftp.fi.debian.org sid/main libdatrie1 0.2.2-1 [24.9kB]
Get:114 http://ftp.fi.debian.org sid/main libextutils-depends-perl 0.301-1 [14.7kB]
Get:115 http://ftp.fi.debian.org sid/main libextutils-pkgconfig-perl 1.12-1 [10.8kB]
Get:116 http://ftp.fi.debian.org sid/main libfontenc1 1:1.0.4-3 [19.1kB]
Get:117 http://ftp.fi.debian.org sid/main libglib-perl 1:1.222-1 [412kB]
Get:118 http://ftp.fi.debian.org sid/main libgtk2.0-common 2.16.6-1 [6084kB]
Get:119 http://ftp.fi.debian.org sid/main libjasper1 1.900.1-6 [154kB]
Get:120 http://ftp.fi.debian.org sid/main libpango1.0-common 1.24.5-1 [70.6kB]
Get:121 http://ftp.fi.debian.org sid/main libthai-data 0.1.12-1 [196kB]
Get:122 http://ftp.fi.debian.org sid/main libthai0 0.1.12-1 [39.3kB]
Get:123 http://ftp.fi.debian.org sid/main libpango1.0-0 1.24.5-1 [327kB]
Get:124 http://ftp.fi.debian.org sid/main libtiff4 3.9.1-1 [189kB]
Get:125 http://ftp.fi.debian.org sid/main shared-mime-info 0.60-2 [772kB]
Get:126 http://ftp.fi.debian.org sid/main libgtk2.0-0 2.16.6-1 [2340kB]
Get:127 http://ftp.fi.debian.org sid/main libpango-perl 1.221-1 [248kB]
Get:128 http://ftp.fi.debian.org sid/main libgtk2-perl 1:1.221-2 [1180kB]
Get:129 http://ftp.fi.debian.org sid/main libpango1.0-dev 1.24.5-1 [408kB]
Get:130 http://ftp.fi.debian.org sid/main libxml2-utils 2.7.4.dfsg-1 [87.2kB]
Get:131 http://ftp.fi.debian.org sid/main libgtk2.0-dev 2.16.6-1 [3217kB]
Get:132 http://ftp.fi.debian.org sid/main libhal1 0.5.13-3 [94.4kB]
Get:133 http://ftp.fi.debian.org sid/main libhunspell-1.2-0 1.2.8-4 [151kB]
Get:134 http://ftp.fi.debian.org sid/main libidl0 0.8.13-0.1 [97.4kB]
Get:135 http://ftp.fi.debian.org sid/main liblcms1 1.18.dfsg-1 [111kB]
Get:136 http://ftp.fi.debian.org sid/main libnspr4-0d 4.8-1 [136kB]
Get:137 http://ftp.fi.debian.org sid/main libmozjs1d 1.9.0.14-1 [374kB]
Get:138 http://ftp.fi.debian.org sid/main libnspr4-dev 4.8-1 [274kB]
Get:139 http://ftp.fi.debian.org sid/main libmozjs-dev 1.9.0.14-1 [223kB]
Get:140 http://ftp.fi.debian.org sid/main libnss3-1d 3.12.3.1-1 [1069kB]
Get:141 http://ftp.fi.debian.org sid/main libnss3-dev 3.12.3.1-1 [257kB]
Get:142 http://ftp.fi.debian.org sid/main libxcb-atom1 0.3.6-1 [9978B]
Get:143 http://ftp.fi.debian.org sid/main libxcb-aux0 0.3.6-1 [8810B]
Get:144 http://ftp.fi.debian.org sid/main libxcb-event1 0.3.6-1 [9356B]
Get:145 http://ftp.fi.debian.org sid/main libstartup-notification0 0.10-1 [23.2kB]
Get:146 http://ftp.fi.debian.org sid/main libxfont1 1:1.4.0-2 [150kB]
Get:147 http://ftp.fi.debian.org sid/main libxt6 1:1.0.6-1 [191kB]
Get:148 http://ftp.fi.debian.org sid/main quilt 0.48-1 [352kB]
Get:149 http://ftp.fi.debian.org sid/main xfonts-encodings 1:1.0.2-3 [584kB]
Get:150 http://ftp.fi.debian.org sid/main xfonts-utils 1:7.4+2 [87.2kB]
Get:151 http://ftp.fi.debian.org sid/main xfonts-base 1:1.0.0-6 [6161kB]
Get:152 http://ftp.fi.debian.org sid/main xserver-common 2:1.6.3-1 [51.1kB]
Get:153 http://ftp.fi.debian.org sid/main xulrunner-1.9 1.9.0.14-1 [7718kB]
Get:154 http://ftp.fi.debian.org sid/main xulrunner-dev 1.9.0.14-1 [3287kB]
Get:155 http://ftp.fi.debian.org sid/main libaudit0 1.7.13-1 [77.1kB]
Get:156 http://ftp.fi.debian.org sid/main xvfb 2:1.6.3-1 [1569kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 64.4MB in 5s (12.3MB/s)
Selecting previously deselected package x11-common.
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 11113 files and directories currently installed.)
Unpacking x11-common (from .../x11-common_1%3a7.4+4_all.deb) ...
Selecting previously deselected package libice6.
Unpacking libice6 (from .../libice6_2%3a1.0.5-1_amd64.deb) ...
Processing triggers for man-db ...
Setting up x11-common (1:7.4+4) ...
Selecting previously deselected package x11proto-core-dev.
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 11147 files and directories currently installed.)
Unpacking x11proto-core-dev (from .../x11proto-core-dev_7.0.15-1_all.deb) ...
Selecting previously deselected package libice-dev.
Unpacking libice-dev (from .../libice-dev_2%3a1.0.5-1_amd64.deb) ...
Selecting previously deselected package libxau6.
Unpacking libxau6 (from .../libxau6_1%3a1.0.4-2_amd64.deb) ...
Selecting previously deselected package libxdmcp6.
Unpacking libxdmcp6 (from .../libxdmcp6_1%3a1.0.2-3_amd64.deb) ...
Selecting previously deselected package libxcb1.
Unpacking libxcb1 (from .../libxcb1_1.4-1_amd64.deb) ...
Selecting previously deselected package libx11-data.
Unpacking libx11-data (from .../libx11-data_2%3a1.2.2-1_all.deb) ...
Selecting previously deselected package libx11-6.
Unpacking libx11-6 (from .../libx11-6_2%3a1.2.2-1_amd64.deb) ...
Selecting previously deselected package libxau-dev.
Unpacking libxau-dev (from .../libxau-dev_1%3a1.0.4-2_amd64.deb) ...
Selecting previously deselected package libxdmcp-dev.
Unpacking libxdmcp-dev (from .../libxdmcp-dev_1%3a1.0.2-3_amd64.deb) ...
Selecting previously deselected package x11proto-input-dev.
Unpacking x11proto-input-dev (from .../x11proto-input-dev_1.5.0-2_all.deb) ...
Selecting previously deselected package x11proto-kb-dev.
Unpacking x11proto-kb-dev (from .../x11proto-kb-dev_1.0.3-3_all.deb) ...
Selecting previously deselected package xtrans-dev.
Unpacking xtrans-dev (from .../xtrans-dev_1.2.4-1_all.deb) ...
Selecting previously deselected package libpthread-stubs0.
Unpacking libpthread-stubs0 (from .../libpthread-stubs0_0.1-2_amd64.deb) ...
Selecting previously deselected package libpthread-stubs0-dev.
Unpacking libpthread-stubs0-dev (from .../libpthread-stubs0-dev_0.1-2_amd64.deb) ...
Selecting previously deselected package libxcb1-dev.
Unpacking libxcb1-dev (from .../libxcb1-dev_1.4-1_amd64.deb) ...
Selecting previously deselected package libx11-dev.
Unpacking libx11-dev (from .../libx11-dev_2%3a1.2.2-1_amd64.deb) ...
Selecting previously deselected package libxext6.
Unpacking libxext6 (from .../libxext6_2%3a1.0.4-1_amd64.deb) ...
Selecting previously deselected package libxfixes3.
Unpacking libxfixes3 (from .../libxfixes3_1%3a4.0.3-2_amd64.deb) ...
Selecting previously deselected package libxcomposite1.
Unpacking libxcomposite1 (from .../libxcomposite1_1%3a0.4.0-4_amd64.deb) ...
Selecting previously deselected package x11proto-xext-dev.
Unpacking x11proto-xext-dev (from .../x11proto-xext-dev_7.0.4-2_all.deb) ...
Selecting previously deselected package x11proto-fixes-dev.
Unpacking x11proto-fixes-dev (from .../x11proto-fixes-dev_1%3a4.0-3_all.deb) ...
Selecting previously deselected package libxfixes-dev.
Unpacking libxfixes-dev (from .../libxfixes-dev_1%3a4.0.3-2_amd64.deb) ...
Selecting previously deselected package x11proto-composite-dev.
Unpacking x11proto-composite-dev (from .../x11proto-composite-dev_1%3a0.4-2_all.deb) ...
Selecting previously deselected package libxext-dev.
Unpacking libxext-dev (from .../libxext-dev_2%3a1.0.4-1_amd64.deb) ...
Selecting previously deselected package libxcomposite-dev.
Unpacking libxcomposite-dev (from .../libxcomposite-dev_1%3a0.4.0-4_amd64.deb) ...
Selecting previously deselected package libxrender1.
Unpacking libxrender1 (from .../libxrender1_1%3a0.9.4-2_amd64.deb) ...
Selecting previously deselected package libxcursor1.
Unpacking libxcursor1 (from .../libxcursor1_1%3a1.1.9-1_amd64.deb) ...
Selecting previously deselected package x11proto-render-dev.
Unpacking x11proto-render-dev (from .../x11proto-render-dev_2%3a0.9.3-2_all.deb) ...
Selecting previously deselected package libxrender-dev.
Unpacking libxrender-dev (from .../libxrender-dev_1%3a0.9.4-2_amd64.deb) ...
Selecting previously deselected package libxcursor-dev.
Unpacking libxcursor-dev (from .../libxcursor-dev_1%3a1.1.9-1_amd64.deb) ...
Selecting previously deselected package libxdamage1.
Unpacking libxdamage1 (from .../libxdamage1_1%3a1.1.1-4_amd64.deb) ...
Selecting previously deselected package x11proto-damage-dev.
Unpacking x11proto-damage-dev (from .../x11proto-damage-dev_1%3a1.2.0-1_all.deb) ...
Selecting previously deselected package libxdamage-dev.
Unpacking libxdamage-dev (from .../libxdamage-dev_1%3a1.1.1-4_amd64.deb) ...
Selecting previously deselected package libexpat1.
Unpacking libexpat1 (from .../libexpat1_2.0.1-4_amd64.deb) ...
Selecting previously deselected package libfreetype6.
Unpacking libfreetype6 (from .../libfreetype6_2.3.9-5_amd64.deb) ...
Selecting previously deselected package ucf.
Unpacking ucf (from .../archives/ucf_3.0021_all.deb) ...
Moving old data out of the way
Selecting previously deselected package libnewt0.52.
Unpacking libnewt0.52 (from .../libnewt0.52_0.52.10-4_amd64.deb) ...
Selecting previously deselected package libpopt0.
Unpacking libpopt0 (from .../libpopt0_1.14-4_amd64.deb) ...
Selecting previously deselected package whiptail.
Unpacking whiptail (from .../whiptail_0.52.10-4_amd64.deb) ...
Selecting previously deselected package libmagic1.
Unpacking libmagic1 (from .../libmagic1_5.03-1_amd64.deb) ...
Selecting previously deselected package file.
Unpacking file (from .../archives/file_5.03-1_amd64.deb) ...
Selecting previously deselected package defoma.
Unpacking defoma (from .../defoma_0.11.10-1_all.deb) ...
Selecting previously deselected package ttf-dejavu-core.
Unpacking ttf-dejavu-core (from .../ttf-dejavu-core_2.30-1_all.deb) ...
Selecting previously deselected package ttf-dejavu-extra.
Unpacking ttf-dejavu-extra (from .../ttf-dejavu-extra_2.30-1_all.deb) ...
Selecting previously deselected package ttf-dejavu.
Unpacking ttf-dejavu (from .../ttf-dejavu_2.30-1_all.deb) ...
Selecting previously deselected package fontconfig-config.
Unpacking fontconfig-config (from .../fontconfig-config_2.6.0-4_all.deb) ...
Selecting previously deselected package libfontconfig1.
Unpacking libfontconfig1 (from .../libfontconfig1_2.6.0-4_amd64.deb) ...
Selecting previously deselected package libxft2.
Unpacking libxft2 (from .../libxft2_2.1.13-3_amd64.deb) ...
Selecting previously deselected package libexpat1-dev.
Unpacking libexpat1-dev (from .../libexpat1-dev_2.0.1-4_amd64.deb) ...
Selecting previously deselected package zlib1g-dev.
Unpacking zlib1g-dev (from .../zlib1g-dev_1%3a1.2.3.3.dfsg-15_amd64.deb) ...
Selecting previously deselected package libfreetype6-dev.
Unpacking libfreetype6-dev (from .../libfreetype6-dev_2.3.9-5_amd64.deb) ...
Selecting previously deselected package libpcre3.
Unpacking libpcre3 (from .../libpcre3_7.8-2_amd64.deb) ...
Selecting previously deselected package libglib2.0-0.
Unpacking libglib2.0-0 (from .../libglib2.0-0_2.20.5-1_amd64.deb) ...
Selecting previously deselected package pkg-config.
Unpacking pkg-config (from .../pkg-config_0.22-1_amd64.deb) ...
Selecting previously deselected package libfontconfig1-dev.
Unpacking libfontconfig1-dev (from .../libfontconfig1-dev_2.6.0-4_amd64.deb) ...
Selecting previously deselected package libxft-dev.
Unpacking libxft-dev (from .../libxft-dev_2.1.13-3_amd64.deb) ...
Selecting previously deselected package libxi6.
Unpacking libxi6 (from .../libxi6_2%3a1.2.1-2_amd64.deb) ...
Selecting previously deselected package libxi-dev.
Unpacking libxi-dev (from .../libxi-dev_2%3a1.2.1-2_amd64.deb) ...
Selecting previously deselected package libxinerama1.
Unpacking libxinerama1 (from .../libxinerama1_2%3a1.0.3-2_amd64.deb) ...
Selecting previously deselected package x11proto-xinerama-dev.
Unpacking x11proto-xinerama-dev (from .../x11proto-xinerama-dev_1.1.2-5_all.deb) ...
Selecting previously deselected package libxinerama-dev.
Unpacking libxinerama-dev (from .../libxinerama-dev_2%3a1.0.3-2_amd64.deb) ...
Selecting previously deselected package libxrandr2.
Unpacking libxrandr2 (from .../libxrandr2_2%3a1.3.0-2_amd64.deb) ...
Selecting previously deselected package x11proto-randr-dev.
Unpacking x11proto-randr-dev (from .../x11proto-randr-dev_1.3.0-1_all.deb) ...
Selecting previously deselected package libxrandr-dev.
Unpacking libxrandr-dev (from .../libxrandr-dev_2%3a1.3.0-2_amd64.deb) ...
Selecting previously deselected package libxmuu1.
Unpacking libxmuu1 (from .../libxmuu1_2%3a1.0.4-2_amd64.deb) ...
Selecting previously deselected package xauth.
Unpacking xauth (from .../xauth_1%3a1.0.3-2_amd64.deb) ...
Selecting previously deselected package gettext-base.
Unpacking gettext-base (from .../gettext-base_0.17-8_amd64.deb) ...
Selecting previously deselected package libsqlite3-0.
Unpacking libsqlite3-0 (from .../libsqlite3-0_3.6.17-2_amd64.deb) ...
Selecting previously deselected package libxml2.
Unpacking libxml2 (from .../libxml2_2.7.4.dfsg-1_amd64.deb) ...
Selecting previously deselected package html2text.
Unpacking html2text (from .../html2text_1.3.2a-14_amd64.deb) ...
Selecting previously deselected package libcroco3.
Unpacking libcroco3 (from .../libcroco3_0.6.1-2_amd64.deb) ...
Selecting previously deselected package gettext.
Unpacking gettext (from .../gettext_0.17-8_amd64.deb) ...
Selecting previously deselected package intltool-debian.
Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ...
Selecting previously deselected package po-debconf.
Unpacking po-debconf (from .../po-debconf_1.0.16_all.deb) ...
Selecting previously deselected package debhelper.
Unpacking debhelper (from .../debhelper_7.4.1_all.deb) ...
Selecting previously deselected package diffstat.
Unpacking diffstat (from .../diffstat_1.47-1_amd64.deb) ...
Selecting previously deselected package fontconfig.
Unpacking fontconfig (from .../fontconfig_2.6.0-4_amd64.deb) ...
Selecting previously deselected package liba52-0.7.4.
Unpacking liba52-0.7.4 (from .../liba52-0.7.4_0.7.4-11_amd64.deb) ...
Selecting previously deselected package libatk1.0-0.
Unpacking libatk1.0-0 (from .../libatk1.0-0_1.26.0-1_amd64.deb) ...
Selecting previously deselected package libglib2.0-dev.
Unpacking libglib2.0-dev (from .../libglib2.0-dev_2.20.5-1_amd64.deb) ...
Selecting previously deselected package libatk1.0-dev.
Unpacking libatk1.0-dev (from .../libatk1.0-dev_1.26.0-1_amd64.deb) ...
Selecting previously deselected package libavahi-common-data.
Unpacking libavahi-common-data (from .../libavahi-common-data_0.6.25-1_amd64.deb) ...
Selecting previously deselected package libavahi-common3.
Unpacking libavahi-common3 (from .../libavahi-common3_0.6.25-1_amd64.deb) ...
Selecting previously deselected package libdbus-1-3.
Unpacking libdbus-1-3 (from .../libdbus-1-3_1.2.16-2_amd64.deb) ...
Selecting previously deselected package libavahi-client3.
Unpacking libavahi-client3 (from .../libavahi-client3_0.6.25-1_amd64.deb) ...
Selecting previously deselected package libsysfs2.
Unpacking libsysfs2 (from .../libsysfs2_2.1.0-6_amd64.deb) ...
Selecting previously deselected package tsconf.
Unpacking tsconf (from .../archives/tsconf_1.0-7_all.deb) ...
Selecting previously deselected package libts-0.0-0.
Unpacking libts-0.0-0 (from .../libts-0.0-0_1.0-7_amd64.deb) ...
Selecting previously deselected package libdirectfb-1.2-0.
Unpacking libdirectfb-1.2-0 (from .../libdirectfb-1.2-0_1.2.8-4_amd64.deb) ...
Selecting previously deselected package libpixman-1-0.
Unpacking libpixman-1-0 (from .../libpixman-1-0_0.14.0-1_amd64.deb) ...
Selecting previously deselected package libpng12-0.
Unpacking libpng12-0 (from .../libpng12-0_1.2.39-1_amd64.deb) ...
Selecting previously deselected package libxcb-render0.
Unpacking libxcb-render0 (from .../libxcb-render0_1.4-1_amd64.deb) ...
Selecting previously deselected package libxcb-render-util0.
Unpacking libxcb-render-util0 (from .../libxcb-render-util0_0.3.6-1_amd64.deb) ...
Selecting previously deselected package libcairo2.
Unpacking libcairo2 (from .../libcairo2_1.8.8-2_amd64.deb) ...
Selecting previously deselected package libcairo-perl.
Unpacking libcairo-perl (from .../libcairo-perl_1.061-1_amd64.deb) ...
Selecting previously deselected package libpng12-dev.
Unpacking libpng12-dev (from .../libpng12-dev_1.2.39-1_amd64.deb) ...
Selecting previously deselected package libjpeg62.
Unpacking libjpeg62 (from .../libjpeg62_6b-15_amd64.deb) ...
Selecting previously deselected package libdirectfb-extra.
Unpacking libdirectfb-extra (from .../libdirectfb-extra_1.2.8-4_amd64.deb) ...
Selecting previously deselected package libjpeg62-dev.
Unpacking libjpeg62-dev (from .../libjpeg62-dev_6b-15_amd64.deb) ...
Selecting previously deselected package libmpeg3-1.
Unpacking libmpeg3-1 (from .../libmpeg3-1_1.5.4-5_amd64.deb) ...
Selecting previously deselected package libmpeg3-dev.
Unpacking libmpeg3-dev (from .../libmpeg3-dev_1.5.4-5_amd64.deb) ...
Selecting previously deselected package libsysfs-dev.
Unpacking libsysfs-dev (from .../libsysfs-dev_2.1.0-6_amd64.deb) ...
Selecting previously deselected package libdirectfb-dev.
Unpacking libdirectfb-dev (from .../libdirectfb-dev_1.2.8-4_amd64.deb) ...
Selecting previously deselected package libsm6.
Unpacking libsm6 (from .../libsm6_2%3a1.1.1-1_amd64.deb) ...
Selecting previously deselected package libsm-dev.
Unpacking libsm-dev (from .../libsm-dev_2%3a1.1.1-1_amd64.deb) ...
Selecting previously deselected package libpixman-1-dev.
Unpacking libpixman-1-dev (from .../libpixman-1-dev_0.14.0-1_amd64.deb) ...
Selecting previously deselected package libxcb-render0-dev.
Unpacking libxcb-render0-dev (from .../libxcb-render0-dev_1.4-1_amd64.deb) ...
Selecting previously deselected package libxcb-render-util0-dev.
Unpacking libxcb-render-util0-dev (from .../libxcb-render-util0-dev_0.3.6-1_amd64.deb) ...
Selecting previously deselected package libcairo2-dev.
Unpacking libcairo2-dev (from .../libcairo2-dev_1.8.8-2_amd64.deb) ...
Selecting previously deselected package libcups2.
Unpacking libcups2 (from .../libcups2_1.4.0-5_amd64.deb) ...
Selecting previously deselected package libdatrie1.
Unpacking libdatrie1 (from .../libdatrie1_0.2.2-1_amd64.deb) ...
Selecting previously deselected package libextutils-depends-perl.
Unpacking libextutils-depends-perl (from .../libextutils-depends-perl_0.301-1_all.deb) ...
Selecting previously deselected package libextutils-pkgconfig-perl.
Unpacking libextutils-pkgconfig-perl (from .../libextutils-pkgconfig-perl_1.12-1_all.deb) ...
Selecting previously deselected package libfontenc1.
Unpacking libfontenc1 (from .../libfontenc1_1%3a1.0.4-3_amd64.deb) ...
Selecting previously deselected package libglib-perl.
Unpacking libglib-perl (from .../libglib-perl_1%3a1.222-1_amd64.deb) ...
Selecting previously deselected package libgtk2.0-common.
Unpacking libgtk2.0-common (from .../libgtk2.0-common_2.16.6-1_all.deb) ...
Selecting previously deselected package libjasper1.
Unpacking libjasper1 (from .../libjasper1_1.900.1-6_amd64.deb) ...
Selecting previously deselected package libpango1.0-common.
Unpacking libpango1.0-common (from .../libpango1.0-common_1.24.5-1_all.deb) ...
Selecting previously deselected package libthai-data.
Unpacking libthai-data (from .../libthai-data_0.1.12-1_all.deb) ...
Selecting previously deselected package libthai0.
Unpacking libthai0 (from .../libthai0_0.1.12-1_amd64.deb) ...
Selecting previously deselected package libpango1.0-0.
Unpacking libpango1.0-0 (from .../libpango1.0-0_1.24.5-1_amd64.deb) ...
Selecting previously deselected package libtiff4.
Unpacking libtiff4 (from .../libtiff4_3.9.1-1_amd64.deb) ...
Selecting previously deselected package shared-mime-info.
Unpacking shared-mime-info (from .../shared-mime-info_0.60-2_amd64.deb) ...
Selecting previously deselected package libgtk2.0-0.
Unpacking libgtk2.0-0 (from .../libgtk2.0-0_2.16.6-1_amd64.deb) ...
Selecting previously deselected package libpango-perl.
Unpacking libpango-perl (from .../libpango-perl_1.221-1_amd64.deb) ...
Selecting previously deselected package libgtk2-perl.
Unpacking libgtk2-perl (from .../libgtk2-perl_1%3a1.221-2_amd64.deb) ...
Selecting previously deselected package libpango1.0-dev.
Unpacking libpango1.0-dev (from .../libpango1.0-dev_1.24.5-1_amd64.deb) ...
Selecting previously deselected package libxml2-utils.
Unpacking libxml2-utils (from .../libxml2-utils_2.7.4.dfsg-1_amd64.deb) ...
Selecting previously deselected package libgtk2.0-dev.
Unpacking libgtk2.0-dev (from .../libgtk2.0-dev_2.16.6-1_amd64.deb) ...
Selecting previously deselected package libhal1.
Unpacking libhal1 (from .../libhal1_0.5.13-3_amd64.deb) ...
Selecting previously deselected package libhunspell-1.2-0.
Unpacking libhunspell-1.2-0 (from .../libhunspell-1.2-0_1.2.8-4_amd64.deb) ...
Selecting previously deselected package libidl0.
Unpacking libidl0 (from .../libidl0_0.8.13-0.1_amd64.deb) ...
Selecting previously deselected package liblcms1.
Unpacking liblcms1 (from .../liblcms1_1.18.dfsg-1_amd64.deb) ...
Selecting previously deselected package libnspr4-0d.
Unpacking libnspr4-0d (from .../libnspr4-0d_4.8-1_amd64.deb) ...
Selecting previously deselected package libmozjs1d.
Unpacking libmozjs1d (from .../libmozjs1d_1.9.0.14-1_amd64.deb) ...
Selecting previously deselected package libnspr4-dev.
Unpacking libnspr4-dev (from .../libnspr4-dev_4.8-1_amd64.deb) ...
Selecting previously deselected package libmozjs-dev.
Unpacking libmozjs-dev (from .../libmozjs-dev_1.9.0.14-1_amd64.deb) ...
Selecting previously deselected package libnss3-1d.
Unpacking libnss3-1d (from .../libnss3-1d_3.12.3.1-1_amd64.deb) ...
Selecting previously deselected package libnss3-dev.
Unpacking libnss3-dev (from .../libnss3-dev_3.12.3.1-1_amd64.deb) ...
Selecting previously deselected package libxcb-atom1.
Unpacking libxcb-atom1 (from .../libxcb-atom1_0.3.6-1_amd64.deb) ...
Selecting previously deselected package libxcb-aux0.
Unpacking libxcb-aux0 (from .../libxcb-aux0_0.3.6-1_amd64.deb) ...
Selecting previously deselected package libxcb-event1.
Unpacking libxcb-event1 (from .../libxcb-event1_0.3.6-1_amd64.deb) ...
Selecting previously deselected package libstartup-notification0.
Unpacking libstartup-notification0 (from .../libstartup-notification0_0.10-1_amd64.deb) ...
Selecting previously deselected package libxfont1.
Unpacking libxfont1 (from .../libxfont1_1%3a1.4.0-2_amd64.deb) ...
Selecting previously deselected package libxt6.
Unpacking libxt6 (from .../libxt6_1%3a1.0.6-1_amd64.deb) ...
Selecting previously deselected package quilt.
Unpacking quilt (from .../archives/quilt_0.48-1_all.deb) ...
Selecting previously deselected package xfonts-encodings.
Unpacking xfonts-encodings (from .../xfonts-encodings_1%3a1.0.2-3_all.deb) ...
Selecting previously deselected package xfonts-utils.
Unpacking xfonts-utils (from .../xfonts-utils_1%3a7.4+2_amd64.deb) ...
Selecting previously deselected package xfonts-base.
Unpacking xfonts-base (from .../xfonts-base_1%3a1.0.0-6_all.deb) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use '--print-architecture' instead.
Selecting previously deselected package xserver-common.
Unpacking xserver-common (from .../xserver-common_2%3a1.6.3-1_all.deb) ...
Selecting previously deselected package xulrunner-1.9.
Unpacking xulrunner-1.9 (from .../xulrunner-1.9_1.9.0.14-1_amd64.deb) ...
Selecting previously deselected package xulrunner-dev.
Unpacking xulrunner-dev (from .../xulrunner-dev_1.9.0.14-1_amd64.deb) ...
Selecting previously deselected package libaudit0.
Unpacking libaudit0 (from .../libaudit0_1.7.13-1_amd64.deb) ...
Selecting previously deselected package xvfb.
Unpacking xvfb (from .../xvfb_2%3a1.6.3-1_amd64.deb) ...
Processing triggers for man-db ...
Setting up libice6 (2:1.0.5-1) ...
Setting up x11proto-core-dev (7.0.15-1) ...
Setting up libice-dev (2:1.0.5-1) ...
Setting up libxau6 (1:1.0.4-2) ...
Setting up libxdmcp6 (1:1.0.2-3) ...
Setting up libxcb1 (1.4-1) ...
Setting up libx11-data (2:1.2.2-1) ...
Setting up libx11-6 (2:1.2.2-1) ...
Setting up libxau-dev (1:1.0.4-2) ...
Setting up libxdmcp-dev (1:1.0.2-3) ...
Setting up x11proto-input-dev (1.5.0-2) ...
Setting up x11proto-kb-dev (1.0.3-3) ...
Setting up xtrans-dev (1.2.4-1) ...
Setting up libpthread-stubs0 (0.1-2) ...
Setting up libpthread-stubs0-dev (0.1-2) ...
Setting up libxcb1-dev (1.4-1) ...
Setting up libx11-dev (2:1.2.2-1) ...
Setting up libxext6 (2:1.0.4-1) ...
Setting up libxfixes3 (1:4.0.3-2) ...
Setting up libxcomposite1 (1:0.4.0-4) ...
Setting up x11proto-xext-dev (7.0.4-2) ...
Setting up x11proto-fixes-dev (1:4.0-3) ...
Setting up libxfixes-dev (1:4.0.3-2) ...
Setting up x11proto-composite-dev (1:0.4-2) ...
Setting up libxext-dev (2:1.0.4-1) ...
Setting up libxcomposite-dev (1:0.4.0-4) ...
Setting up libxrender1 (1:0.9.4-2) ...
Setting up libxcursor1 (1:1.1.9-1) ...
Setting up x11proto-render-dev (2:0.9.3-2) ...
Setting up libxrender-dev (1:0.9.4-2) ...
Setting up libxcursor-dev (1:1.1.9-1) ...
Setting up libxdamage1 (1:1.1.1-4) ...
Setting up x11proto-damage-dev (1:1.2.0-1) ...
Setting up libxdamage-dev (1:1.1.1-4) ...
Setting up libexpat1 (2.0.1-4) ...
Setting up libfreetype6 (2.3.9-5) ...
Setting up ucf (3.0021) ...
Setting up libnewt0.52 (0.52.10-4) ...
Setting up libpopt0 (1.14-4) ...
Setting up whiptail (0.52.10-4) ...
Setting up libmagic1 (5.03-1) ...
Setting up file (5.03-1) ...
Setting up defoma (0.11.10-1) ...
Setting up ttf-dejavu-core (2.30-1) ...
Setting up ttf-dejavu-extra (2.30-1) ...
Setting up ttf-dejavu (2.30-1) ...
Setting up fontconfig-config (2.6.0-4) ...
Setting up libfontconfig1 (2.6.0-4) ...
Setting up libxft2 (2.1.13-3) ...
Setting up libexpat1-dev (2.0.1-4) ...
Setting up zlib1g-dev (1:1.2.3.3.dfsg-15) ...
Setting up libfreetype6-dev (2.3.9-5) ...
Setting up libpcre3 (7.8-2) ...
Setting up libglib2.0-0 (2.20.5-1) ...
Setting up pkg-config (0.22-1) ...
Setting up libfontconfig1-dev (2.6.0-4) ...
Setting up libxft-dev (2.1.13-3) ...
Setting up libxi6 (2:1.2.1-2) ...
Setting up libxi-dev (2:1.2.1-2) ...
Setting up libxinerama1 (2:1.0.3-2) ...
Setting up x11proto-xinerama-dev (1.1.2-5) ...
Setting up libxinerama-dev (2:1.0.3-2) ...
Setting up libxrandr2 (2:1.3.0-2) ...
Setting up x11proto-randr-dev (1.3.0-1) ...
Setting up libxrandr-dev (2:1.3.0-2) ...
Setting up libxmuu1 (2:1.0.4-2) ...
Setting up xauth (1:1.0.3-2) ...
Setting up gettext-base (0.17-8) ...
Setting up libsqlite3-0 (3.6.17-2) ...
Setting up libxml2 (2.7.4.dfsg-1) ...
Setting up html2text (1.3.2a-14) ...
Setting up libcroco3 (0.6.1-2) ...
Setting up gettext (0.17-8) ...
Setting up intltool-debian (0.35.0+20060710.1) ...
Setting up po-debconf (1.0.16) ...
Setting up debhelper (7.4.1) ...
Setting up diffstat (1.47-1) ...
Setting up fontconfig (2.6.0-4) ...
Updating font configuration of fontconfig...
Cleaning up category cid..
Cleaning up category truetype..
Cleaning up category type1..
Updating category type1..
Updating category truetype..
Updating category cid..
Updating fontconfig cache for /usr/share/fonts/truetype/ttf-dejavu
Cleaning up old fontconfig caches... done.
Regenerating fonts cache... done.
Setting up liba52-0.7.4 (0.7.4-11) ...
Setting up libatk1.0-0 (1.26.0-1) ...
Setting up libglib2.0-dev (2.20.5-1) ...
Setting up libatk1.0-dev (1.26.0-1) ...
Setting up libavahi-common-data (0.6.25-1) ...
Setting up libavahi-common3 (0.6.25-1) ...
Setting up libdbus-1-3 (1.2.16-2) ...
Setting up libavahi-client3 (0.6.25-1) ...
Setting up libsysfs2 (2.1.0-6) ...
Setting up tsconf (1.0-7) ...
Setting up libts-0.0-0 (1.0-7) ...
Setting up libdirectfb-1.2-0 (1.2.8-4) ...
Setting up libpixman-1-0 (0.14.0-1) ...
Setting up libpng12-0 (1.2.39-1) ...
Setting up libxcb-render0 (1.4-1) ...
Setting up libxcb-render-util0 (0.3.6-1) ...
Setting up libcairo2 (1.8.8-2) ...
Setting up libcairo-perl (1.061-1) ...
Setting up libpng12-dev (1.2.39-1) ...
Setting up libjpeg62 (6b-15) ...
Setting up libdirectfb-extra (1.2.8-4) ...
Setting up libjpeg62-dev (6b-15) ...
Setting up libmpeg3-1 (1.5.4-5) ...
Setting up libmpeg3-dev (1.5.4-5) ...
Setting up libsysfs-dev (2.1.0-6) ...
Setting up libdirectfb-dev (1.2.8-4) ...
Setting up libsm6 (2:1.1.1-1) ...
Setting up libsm-dev (2:1.1.1-1) ...
Setting up libpixman-1-dev (0.14.0-1) ...
Setting up libxcb-render0-dev (1.4-1) ...
Setting up libxcb-render-util0-dev (0.3.6-1) ...
Setting up libcairo2-dev (1.8.8-2) ...
Setting up libcups2 (1.4.0-5) ...
Setting up libdatrie1 (0.2.2-1) ...
Setting up libextutils-depends-perl (0.301-1) ...
Setting up libextutils-pkgconfig-perl (1.12-1) ...
Setting up libfontenc1 (1:1.0.4-3) ...
Setting up libglib-perl (1:1.222-1) ...
Setting up libgtk2.0-common (2.16.6-1) ...
Setting up libjasper1 (1.900.1-6) ...
Setting up libpango1.0-common (1.24.5-1) ...
Cleaning up font configuration of pango...
Updating font configuration of pango...
Cleaning up category xfont..
Updating category xfont..
*** You don't have any defomized font packages.
*** So we are trying to force to generate pangox.aliases...
Setting up libthai-data (0.1.12-1) ...
Setting up libthai0 (0.1.12-1) ...
Setting up libpango1.0-0 (1.24.5-1) ...
Setting up libtiff4 (3.9.1-1) ...
Setting up shared-mime-info (0.60-2) ...
Setting up libgtk2.0-0 (2.16.6-1) ...
Setting up libpango-perl (1.221-1) ...
Setting up libgtk2-perl (1:1.221-2) ...
Setting up libpango1.0-dev (1.24.5-1) ...
Setting up libxml2-utils (2.7.4.dfsg-1) ...
Setting up libgtk2.0-dev (2.16.6-1) ...
Setting up libhal1 (0.5.13-3) ...
Setting up libhunspell-1.2-0 (1.2.8-4) ...
Setting up libidl0 (0.8.13-0.1) ...
Setting up liblcms1 (1.18.dfsg-1) ...
Setting up libnspr4-0d (4.8-1) ...
Setting up libmozjs1d (1.9.0.14-1) ...
Setting up libnspr4-dev (4.8-1) ...
Setting up libmozjs-dev (1.9.0.14-1) ...
Setting up libnss3-1d (3.12.3.1-1) ...
Setting up libnss3-dev (3.12.3.1-1) ...
Setting up libxcb-atom1 (0.3.6-1) ...
Setting up libxcb-aux0 (0.3.6-1) ...
Setting up libxcb-event1 (0.3.6-1) ...
Setting up libstartup-notification0 (0.10-1) ...
Setting up libxfont1 (1:1.4.0-2) ...
Setting up libxt6 (1:1.0.6-1) ...
Setting up quilt (0.48-1) ...
Setting up xfonts-encodings (1:1.0.2-3) ...
Setting up xfonts-utils (1:7.4+2) ...
Setting up xfonts-base (1:1.0.0-6) ...
dpkg: warning: obsolete option '--print-installation-architecture', please use '--print-architecture' instead.
Setting up xserver-common (2:1.6.3-1) ...
Setting up xulrunner-1.9 (1.9.0.14-1) ...
Setting up xulrunner-dev (1.9.0.14-1) ...
Setting up libaudit0 (1.7.13-1) ...
Setting up xvfb (2:1.6.3-1) ...
Removing negative dependencies: 
Checking correctness of source dependencies...
Kernel: Linux 2.6.26-2-xen-amd64 amd64 (x86_64)
Toolchain package versions: libc6-dev_2.9-26 linux-libc-dev_2.6.30-6 g++-4.3_4.3.4-2 gcc-4.3_4.3.4-2 binutils_2.19.90.20090909-1 libstdc++6_4.4.1-3 libstdc++6-4.3-dev_4.3.4-2

????????????????????????????????????????????????????????????????????????????????
? Build                                                                        ?
????????????????????????????????????????????????????????????????????????????????


Unpack source
?????????????

gpgv: keyblock resource `/home/niko/.gnupg/trustedkeys.gpg': file open error
gpgv: Signature made Thu Apr 30 15:10:50 2009 UTC using DSA key ID 00F3CFE4
gpgv: Can't check signature: public key not found
dpkg-source: warning: failed to verify signature on ./libgtk2-mozembed-perl_0.08-2.dsc
dpkg-source: info: extracting libgtk2-mozembed-perl in libgtk2-mozembed-perl-0.08
dpkg-source: info: unpacking libgtk2-mozembed-perl_0.08.orig.tar.gz
dpkg-source: info: applying libgtk2-mozembed-perl_0.08-2.diff.gz

Check disc space
????????????????


dpkg-buildpackage
?????????????????

dpkg-buildpackage: set CFLAGS to default value: -g -O2
dpkg-buildpackage: set CPPFLAGS to default value: 
dpkg-buildpackage: set LDFLAGS to default value: 
dpkg-buildpackage: set FFLAGS to default value: -g -O2
dpkg-buildpackage: set CXXFLAGS to default value: -g -O2
dpkg-buildpackage: source package libgtk2-mozembed-perl
dpkg-buildpackage: source version 0.08-2
dpkg-buildpackage: host architecture amd64
 /usr/bin/fakeroot debian/rules clean
QUILT_PATCHES=debian/patches quilt --quiltrc /dev/null pop -a -R || test $? = 2 
No patch removed
rm -rf .pc debian/stamp-patched
dh clean
   dh_testdir
   dh_auto_clean
   dh_clean
 debian/rules build
QUILT_PATCHES=debian/patches quilt --quiltrc /dev/null push -a || test $? = 2
Applying patch whatis-entry
patching file xs/GtkMozEmbed.xs

Applying patch use-the-right-xul
patching file Makefile.PL
patching file xs/GtkMozEmbed.xs
patching file gtkmozembed2perl.h

Applying patch dont-pollute-HOME
patching file t/GtkMozEmbed.t

Now at patch dont-pollute-HOME
touch debian/stamp-patched
dh --before dh_auto_test build
   dh_testdir
   dh_auto_configure
Including generated API documentation...
Compiling against mozilla-gtkmozembed-embedding
WARNING: EXTRA_META is not a known parameter.
Checking if your kit is complete...
Looks good
'CREATE_PACKLIST' is not a known MakeMaker parameter name.
'EXTRA_META' is not a known MakeMaker parameter name.
Unrecognized argument in LIBS ignored: '-pthread'
Writing Makefile for Gtk2::MozEmbed
   dh_auto_build
make[1]: Entering directory `/build/niko-libgtk2-mozembed-perl_0.08-2-amd64-939ZsS/libgtk2-mozembed-perl-0.08'
cp gtkmozembed2perl.h blib/arch/Gtk2/MozEmbed/Install/gtkmozembed2perl.h
cp build/IFiles.pm blib/arch/Gtk2/MozEmbed/Install/Files.pm
cp build/gtkmozembed2perl-autogen.h blib/arch/Gtk2/MozEmbed/Install/gtkmozembed2perl-autogen.h
cp MozEmbed.pm blib/lib/Gtk2/MozEmbed.pm
cp /build/niko-libgtk2-mozembed-perl_0.08-2-amd64-939ZsS/libgtk2-mozembed-perl-0.08/build/gtkmozembed2perl.typemap blib/arch/Gtk2/MozEmbed/Install/gtkmozembed2perl.typemap
cp /build/niko-libgtk2-mozembed-perl_0.08-2-amd64-939ZsS/libgtk2-mozembed-perl-0.08/gtkmozembed.typemap blib/arch/Gtk2/MozEmbed/Install/gtkmozembed.typemap
[ XS xs/GtkMozEmbed.xs ]
[ CC xs/GtkMozEmbed.c ]
In file included from /usr/include/xulrunner-1.9/unstable/nsrootidl.h:11,
                 from /usr/include/xulrunner-1.9/unstable/nsISupports.h:10,
                 from /usr/include/xulrunner-1.9/unstable/nsIWebBrowser.h:10,
                 from /usr/include/xulrunner-1.9/unstable/gtkmozembed_internal.h:41,
                 from /usr/include/xulrunner-1.9/unstable/gtkmozembed_glue.cpp:43,
                 from xs/GtkMozEmbed.xs:23:
/usr/include/xulrunner-1.9/unstable/nscore.h:117:1: warning: "NS_HIDDEN" redefined
In file included from ./gtkmozembed2perl.h:34,
                 from xs/GtkMozEmbed.xs:21:
/usr/include/xulrunner-1.9/unstable/gtkmozembed.h:57:1: warning: this is the location of the previous definition
In file included from /usr/include/xulrunner-1.9/unstable/nsrootidl.h:11,
                 from /usr/include/xulrunner-1.9/unstable/nsISupports.h:10,
                 from /usr/include/xulrunner-1.9/unstable/nsIWebBrowser.h:10,
                 from /usr/include/xulrunner-1.9/unstable/gtkmozembed_internal.h:41,
                 from /usr/include/xulrunner-1.9/unstable/gtkmozembed_glue.cpp:43,
                 from xs/GtkMozEmbed.xs:23:
/usr/include/xulrunner-1.9/unstable/nscore.h:206:1: warning: "NS_IMPORT_" redefined
In file included from ./gtkmozembed2perl.h:34,
                 from xs/GtkMozEmbed.xs:21:
/usr/include/xulrunner-1.9/unstable/gtkmozembed.h:64:1: warning: this is the location of the previous definition
In file included from /usr/include/xulrunner-1.9/unstable/nsrootidl.h:11,
                 from /usr/include/xulrunner-1.9/unstable/nsISupports.h:10,
                 from /usr/include/xulrunner-1.9/unstable/nsIWebBrowser.h:10,
                 from /usr/include/xulrunner-1.9/unstable/gtkmozembed_internal.h:41,
                 from /usr/include/xulrunner-1.9/unstable/gtkmozembed_glue.cpp:43,
                 from xs/GtkMozEmbed.xs:23:
/usr/include/xulrunner-1.9/unstable/nscore.h:208:1: warning: "NS_EXPORT_" redefined
In file included from ./gtkmozembed2perl.h:34,
                 from xs/GtkMozEmbed.xs:21:
/usr/include/xulrunner-1.9/unstable/gtkmozembed.h:63:1: warning: this is the location of the previous definition
xs/GtkMozEmbed.xs: In function 'void boot_Gtk2__MozEmbed(PerlInterpreter*, CV*)':
xs/GtkMozEmbed.xs:176: warning: deprecated conversion from string constant to 'char*'
Running Mkbootstrap for Gtk2::MozEmbed ()
chmod 644 MozEmbed.bs
rm -f blib/arch/auto/Gtk2/MozEmbed/MozEmbed.so
[ LD blib/arch/auto/Gtk2/MozEmbed/MozEmbed.so ]
chmod 755 blib/arch/auto/Gtk2/MozEmbed/MozEmbed.so
cp MozEmbed.bs blib/arch/auto/Gtk2/MozEmbed/MozEmbed.bs
chmod 644 blib/arch/auto/Gtk2/MozEmbed/MozEmbed.bs
Generating POD...
/usr/bin/perl: symbol lookup error: blib/arch/auto/Gtk2/MozEmbed/MozEmbed.so: undefined symbol: XPCOMGlueStartup
make[1]: *** [build/podindex] Error 127
make[1]: Leaving directory `/build/niko-libgtk2-mozembed-perl_0.08-2-amd64-939ZsS/libgtk2-mozembed-perl-0.08'
dh_auto_build: make returned exit code 2
make: *** [build-stamp] Error 1
dpkg-buildpackage: error: debian/rules build gave error exit status 2
????????????????????????????????????????????????????????????????????????????????
Build finished at 20090912-0421
FAILED [dpkg-buildpackage died]
Purging /var/lib/schroot/mount/sid-b40efd91-42ad-4afa-a06d-69dd6cba3141/build/niko-libgtk2-mozembed-perl_0.08-2-amd64-939ZsS
????????????????????????????????????????????????????????????????????????????????
Not removing build depends: cloned chroot in use
????????????????????????????????????????????????????????????????????????????????
Finished at 20090912-0421
Build needed 00:02:12, 836k disc space


More information about the pkg-perl-maintainers mailing list