Package: iceweasel Version: 18.0-1 Severity: important Tags: patch Hello,
the experimental iceweasel currently FTBFS on !linux, because the mincore call has improper types (and strong error flags are enabled). See the attached patch which should fix it. Samuel -- Package-specific info: -- Extensions information Name: Default theme Location: /usr/lib/iceweasel/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd} Package: iceweasel Status: enabled Name: Live HTTP headers Location: ${PROFILE_EXTENSIONS}/{8f8fe09b-0bd3-4470-bc1b-8cad42b8203a} Status: enabled -- Plugins information Name: Gnome Shell Integration Location: /usr/lib/mozilla/plugins/libgnome-shell-browser-plugin.so Package: gnome-shell Status: enabled Name: Google Talk Plugin Location: /opt/google/talkplugin/libnpgoogletalk.so Package: google-talkplugin Status: enabled Name: Google Talk Plugin Video Accelerator Location: /opt/google/talkplugin/libnpgtpo3dautoplugin.so Package: google-talkplugin Status: enabled Name: Java(TM) Plug-in 1.6.0_26 Location: /usr/lib/jvm/java-6-sun-1.6.0.26/jre/lib/amd64/libnpjp2.so Package: sun-java6-bin Status: disabled Name: Shockwave Flash Location: /usr/lib/flashplugin-nonfree/libflashplayer.so Status: enabled Name: Silverlight Plug-In Location: /usr/lib/moon/plugin/libmoonloader.so Package: moonlight-plugin-core Status: enabled Name: Skype Buttons for Kopete Location: /usr/lib/mozilla/plugins/skypebuttons.so Package: kopete Status: enabled -- Addons package information ii gnome-shell 3.4.2-3 amd64 graphical shell for the GNOME des ii google-talkplu 3.10.2.0-1 amd64 Google Talk Plugin ii iceweasel 10.0.11esr-1 amd64 Web browser based on Firefox ii kopete 4:4.8.4-1+b1 amd64 instant messaging and chat applic ii moonlight-plug 1.0.1-3+b2 amd64 Free Software clone of Silverligh ii sun-java6-bin 6.26-3 amd64 Sun Java(TM) Runtime Environment -- System Information: Debian Release: 7.0 APT prefers testing APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1, 'experimental') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.7.0 (SMP w/8 CPU cores) Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages iceweasel depends on: ii debianutils 4.3.2 ii fontconfig 2.9.0-7.1 ii libc6 2.13-37 ii libgdk-pixbuf2.0-0 2.26.1-1 ii libglib2.0-0 2.33.12+really2.32.4-3 ii libgtk2.0-0 2.24.10-2 ii libnspr4 2:4.9.2-1 ii libnspr4-0d 2:4.9.2-1 ii libsqlite3-0 3.7.13-1 ii libstdc++6 4.7.2-4 ii procps 1:3.3.3-2 ii xulrunner-10.0 10.0.11esr-1 iceweasel recommends no packages. Versions of packages iceweasel suggests: ii fonts-stix [otf-stix] 1.1.0-1 ii libgssapi-krb5-2 1.10.1+dfsg-3 pn mozplugger <none> Versions of packages xulrunner-10.0 depends on: ii libasound2 1.0.25-4 ii libatk1.0-0 2.4.0-2 ii libbz2-1.0 1.0.6-4 ii libc6 2.13-37 ii libcairo2 1.12.2-2 ii libdbus-1-3 1.6.8-1 ii libdbus-glib-1-2 0.100-1 ii libevent-2.0-5 2.0.19-stable-3 ii libfontconfig1 2.9.0-7.1 ii libfreetype6 2.4.9-1.1 ii libgcc1 1:4.7.2-4 ii libgdk-pixbuf2.0-0 2.26.1-1 ii libglib2.0-0 2.33.12+really2.32.4-3 ii libgtk2.0-0 2.24.10-2 ii libhunspell-1.3-0 1.3.2-4 ii libjpeg8 8d-1 ii libmozjs10d 10.0.11esr-1 ii libnotify4 0.7.5-1 ii libnspr4-0d 2:4.9.2-1 ii libnss3-1d 2:3.13.6-2 ii libpango1.0-0 1.30.0-1 ii libpixman-1-0 0.26.0-3 ii libreadline6 6.2-8 ii libsqlite3-0 3.7.13-1 ii libstartup-notification0 0.12-1 ii libstdc++6 4.7.2-4 ii libvpx1 1.1.0-1 ii libx11-6 2:1.5.0-1 ii libxext6 2:1.3.1-2 ii libxrender1 1:0.9.7-1 ii libxt6 1:1.1.3-1 ii zlib1g 1:1.2.7.dfsg-13 Versions of packages xulrunner-10.0 suggests: ii libcanberra0 0.28-6 ii libgnomeui-0 2.24.5-2 -- no debconf information -- Samuel "And the next time you consider complaining that running Lucid Emacs 19.05 via NFS from a remote Linux machine in Paraguay doesn't seem to get the background colors right, you'll know who to thank." (By Matt Welsh)
--- ./js/src/vm/Stack.cpp.orig 2013-01-11 00:15:52.000000000 +0100 +++ ./js/src/vm/Stack.cpp 2013-01-11 00:17:27.000000000 +0100 @@ -828,8 +828,8 @@ size_t numBytes = (trustedEnd_ - base_) * sizeof(Value); size_t numPages = (numBytes + pageSize - 1) / pageSize; - // On Linux, mincore's third argument has type unsigned char*. -#ifdef __linux__ + // With glibc, mincore's third argument has type unsigned char*. +#ifdef __GLIBC__ typedef unsigned char MincoreArgType; #else typedef char MincoreArgType;