On Thu, Mar 16, 2006 at 12:28:40AM +0000, Martin Michlmayr wrote:
> * Alexander Sack - Debian Bugmail <[EMAIL PROTECTED]> [2006-03-15 16:57]:
> > Take a look in mozilla/security/coreconf/Linux.mk
> >
> > There you see that mips64 is not matched and for all not matched
> > archs, CPU_ARCH=x86 is applied.
>
> I've filed the following two bugs with Mozilla:
>
> https://bugzilla.mozilla.org/show_bug.cgi?id=330628
> coreconf/Linux.mk should _not_ default to x86 but result in an error
> if host is not recognized
>
> https://bugzilla.mozilla.org/show_bug.cgi?id=330626
> coreconf/Linux.mk does not detect mips64
>
I confirmed both bugs.
For your convenience I attached an updated patch with else and endif
to this mail.
Maybe you can replace your old patch in bugzilla and request review
from wtchang for the new one? (to do so click on Edit for the new
patch and set review to '?' and enter wtchang as requestee).
Can you confirm that xulrunner and thunderbird succeed to build
with this patch?
- Alexander
p.s. please take care that the bug is listed as To: or CC: when
replying to this mail (e.g. /reply-all/).
--
GPG messages preferred. | .''`. ** Debian GNU/Linux **
Alexander Sack | : :' : The universal
[EMAIL PROTECTED] | `. `' Operating System
http://www.asoftsite.org | `- http://www.debian.org/
--- Linux.mk.orig 2006-03-16 10:49:46.000000000 +0100
+++ Linux.mk 2006-03-16 10:50:46.000000000 +0100
@@ -104,6 +104,10 @@
OS_REL_CFLAGS = -DLINUX1_2 -D_XOPEN_SOURCE
CPU_ARCH = mips
else
+ifeq ($(OS_TEST),mips64)
+ OS_REL_CFLAGS = -DLINUX1_2 -D_XOPEN_SOURCE
+ CPU_ARCH = mips
+else
OS_REL_CFLAGS = -DLINUX1_2 -Di386 -D_XOPEN_SOURCE
CPU_ARCH = x86
endif
@@ -119,6 +123,7 @@
endif
endif
endif
+endif
LIBC_TAG = _glibc