Your message dated Mon, 22 Aug 2005 07:17:20 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#322617: fixed in mozilla-firefox 1.0.6-3
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--------------------------------------
Received: (at submit) by bugs.debian.org; 11 Aug 2005 19:51:17 +0000
>From [EMAIL PROTECTED] Thu Aug 11 12:51:17 2005
Return-path: <[EMAIL PROTECTED]>
Received: from c223250.adsl.hansenet.de (localhost.localdomain)
[213.39.223.250]
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1E3J5A-0007D1-00; Thu, 11 Aug 2005 12:51:16 -0700
Received: from aj by localhost.localdomain with local (Exim 4.52)
id 1E3J59-0001QM-Hu; Thu, 11 Aug 2005 21:51:15 +0200
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
From: Andreas Jochens <[EMAIL PROTECTED]>
Subject: mozilla-firefox: FTBFS (ppc64): Please support the ppc64 architecture
Message-Id: <[EMAIL PROTECTED]>
Date: Thu, 11 Aug 2005 21:51:15 +0200
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level:
X-Spam-Status: No, hits=-6.4 required=4.0 tests=BAYES_00,HAS_PACKAGE,
UPPERCASE_25_50 autolearn=no version=2.60-bugs.debian.org_2005_01_02
Package: mozilla-firefox
Version: 1.0.6-2
Severity: wishlist
Tags: patch
Please add support for the ppc64 architecture to 'mozilla-firefox'.
With the attached patch 'mozilla-firefox' can be compiled on ppc64.
Regards
Andreas Jochens
diff -urN ../tmp-orig/mozilla-firefox-1.0.6/debian/rules ./debian/rules
--- ../tmp-orig/mozilla-firefox-1.0.6/debian/rules 2005-08-10
21:25:20.000000000 +0000
+++ ./debian/rules 2005-08-10 21:24:20.000000000 +0000
@@ -37,6 +37,10 @@
OPTFLAGS=-O
endif
+ifeq ($(DEB_BUILD_ARCH),ppc64)
+ OPTFLAGS += -mminimal-toc
+endif
+
ifeq ($(DEB_BUILD_ARCH),arm)
OPTFLAGS=-O
endif
diff -urN ../tmp-orig/mozilla-firefox-1.0.6/nsprpub/pr/include/md/_linux.cfg
./nsprpub/pr/include/md/_linux.cfg
--- ../tmp-orig/mozilla-firefox-1.0.6/nsprpub/pr/include/md/_linux.cfg
2005-05-04 18:06:17.000000000 +0000
+++ ./nsprpub/pr/include/md/_linux.cfg 2005-08-10 21:22:39.000000000 +0000
@@ -45,7 +45,52 @@
#define PR_AF_INET6 10 /* same as AF_INET6 */
-#ifdef __powerpc__
+#ifdef __powerpc64__
+
+#undef IS_LITTLE_ENDIAN
+#define IS_BIG_ENDIAN 1
+
+#define PR_BYTES_PER_BYTE 1
+#define PR_BYTES_PER_SHORT 2
+#define PR_BYTES_PER_INT 4
+#define PR_BYTES_PER_INT64 8
+#define PR_BYTES_PER_LONG 8
+#define PR_BYTES_PER_FLOAT 4
+#define PR_BYTES_PER_DOUBLE 8
+#define PR_BYTES_PER_WORD 8
+#define PR_BYTES_PER_DWORD 8
+
+#define PR_BITS_PER_BYTE 8
+#define PR_BITS_PER_SHORT 16
+#define PR_BITS_PER_INT 32
+#define PR_BITS_PER_INT64 64
+#define PR_BITS_PER_LONG 64
+#define PR_BITS_PER_FLOAT 32
+#define PR_BITS_PER_DOUBLE 64
+#define PR_BITS_PER_WORD 64
+
+#define PR_BITS_PER_BYTE_LOG2 3
+#define PR_BITS_PER_SHORT_LOG2 4
+#define PR_BITS_PER_INT_LOG2 5
+#define PR_BITS_PER_INT64_LOG2 6
+#define PR_BITS_PER_LONG_LOG2 6
+#define PR_BITS_PER_FLOAT_LOG2 5
+#define PR_BITS_PER_DOUBLE_LOG2 6
+#define PR_BITS_PER_WORD_LOG2 6
+
+#define PR_ALIGN_OF_SHORT 2
+#define PR_ALIGN_OF_INT 4
+#define PR_ALIGN_OF_LONG 8
+#define PR_ALIGN_OF_INT64 8
+#define PR_ALIGN_OF_FLOAT 4
+#define PR_ALIGN_OF_DOUBLE 8
+#define PR_ALIGN_OF_POINTER 8
+#define PR_ALIGN_OF_WORD 8
+
+#define PR_BYTES_PER_WORD_LOG2 3
+#define PR_BYTES_PER_DWORD_LOG2 3
+
+#elif defined(__powerpc__)
#undef IS_LITTLE_ENDIAN
#define IS_BIG_ENDIAN 1
diff -urN ../tmp-orig/mozilla-firefox-1.0.6/security/coreconf/Linux.mk
./security/coreconf/Linux.mk
--- ../tmp-orig/mozilla-firefox-1.0.6/security/coreconf/Linux.mk
2004-02-11 02:33:51.000000000 +0000
+++ ./security/coreconf/Linux.mk 2005-08-10 21:23:14.000000000 +0000
@@ -54,6 +54,10 @@
OS_REL_CFLAGS = -DLINUX1_2 -D_XOPEN_SOURCE
CPU_ARCH = m68k
else
+ifeq ($(OS_TEST),ppc64)
+ OS_REL_CFLAGS = -DLINUX1_2 -D_XOPEN_SOURCE
+ CPU_ARCH = ppc64
+else
ifeq ($(OS_TEST),ppc)
OS_REL_CFLAGS = -DLINUX1_2 -D_XOPEN_SOURCE
CPU_ARCH = ppc
@@ -117,6 +121,7 @@
endif
endif
endif
+endif
LIBC_TAG = _glibc
---------------------------------------
Received: (at 322617-close) by bugs.debian.org; 22 Aug 2005 14:24:22 +0000
>From [EMAIL PROTECTED] Mon Aug 22 07:24:22 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
id 1E7D72-00069Z-00; Mon, 22 Aug 2005 07:17:20 -0700
From: Eric Dorland <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#322617: fixed in mozilla-firefox 1.0.6-3
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Mon, 22 Aug 2005 07:17:20 -0700
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level:
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-CrossAssassin-Score: 2
Source: mozilla-firefox
Source-Version: 1.0.6-3
We believe that the bug you reported is fixed in the latest version of
mozilla-firefox, which is due to be installed in the Debian FTP archive:
mozilla-firefox-dom-inspector_1.0.6-3_i386.deb
to pool/main/m/mozilla-firefox/mozilla-firefox-dom-inspector_1.0.6-3_i386.deb
mozilla-firefox-gnome-support_1.0.6-3_i386.deb
to pool/main/m/mozilla-firefox/mozilla-firefox-gnome-support_1.0.6-3_i386.deb
mozilla-firefox_1.0.6-3.diff.gz
to pool/main/m/mozilla-firefox/mozilla-firefox_1.0.6-3.diff.gz
mozilla-firefox_1.0.6-3.dsc
to pool/main/m/mozilla-firefox/mozilla-firefox_1.0.6-3.dsc
mozilla-firefox_1.0.6-3_i386.deb
to pool/main/m/mozilla-firefox/mozilla-firefox_1.0.6-3_i386.deb
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Eric Dorland <[EMAIL PROTECTED]> (supplier of updated mozilla-firefox package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.7
Date: Mon, 22 Aug 2005 01:20:28 -0400
Source: mozilla-firefox
Binary: mozilla-firefox mozilla-firefox-gnome-support
mozilla-firefox-dom-inspector
Architecture: source i386
Version: 1.0.6-3
Distribution: unstable
Urgency: low
Maintainer: Eric Dorland <[EMAIL PROTECTED]>
Changed-By: Eric Dorland <[EMAIL PROTECTED]>
Description:
mozilla-firefox - lightweight web browser based on Mozilla
mozilla-firefox-dom-inspector - tool for inspecting the DOM of pages in
Mozilla Firefox
mozilla-firefox-gnome-support - Support for Gnome in Mozilla Firefox
Closes: 321823 322617
Changes:
mozilla-firefox (1.0.6-3) unstable; urgency=low
.
* debian/rules, nsprpub/pr/include/md/_linux.cfg,
security/coreconf/Linux.mk: Apply patch from Andreas Jochens to allow
ppc64 builds. (Closes: #322617)
* debian/mozilla-firefox.prerm: Move -depth option to find to suppress
warnings. Thanks Mike Hommey.
* debian/presubj: Have bugzilla bug URL point to a page where you can
enter a bug.
* browser/app/profile/firefox.js: removed the "I'm feeling lucky" from
the keyword.URL, so now if you enter search terms in the address bar
you will be presented with search results and not taken to the first
result. Thanks Torok Edwin. (Closes: #321823)
Files:
35e8d1835a6ddd9c944e9dd025104bfb 972 web optional mozilla-firefox_1.0.6-3.dsc
072de5089539e0afbb8d256af8f05fed 231482 web optional
mozilla-firefox_1.0.6-3.diff.gz
23db957e30c1a6ae66d5071f7d48495d 7621056 web optional
mozilla-firefox_1.0.6-3_i386.deb
92638ccded005f22f285e40427c77d24 155064 web optional
mozilla-firefox-dom-inspector_1.0.6-3_i386.deb
ab579c838efb21423ceedf09b1652606 52908 web optional
mozilla-firefox-gnome-support_1.0.6-3_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
iD8DBQFDCdyOYemOzxbZcMYRAmQ4AKCyE6dbevPJm/+M5ip2Mw2BxJDh8gCdH3bN
XU4fpjVxfqC7GVJbV9QIQOA=
=P+HR
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]