From 285685a94f9f828e21b306f4c49d894ef1b889fb Mon Sep 17 00:00:00 2001 From: "wtc%netscape.com" Date: Thu, 1 May 2003 00:29:40 +0000 Subject: [PATCH] Bug 203988: add build support for Linux/mips (such as Sony PlayStation 2 Linux). The patch is contributed by Paul Pietromonaco . r=wtc. --- security/coreconf/Linux.mk | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/security/coreconf/Linux.mk b/security/coreconf/Linux.mk index b571be9cd49..fcd4c1fc44e 100644 --- a/security/coreconf/Linux.mk +++ b/security/coreconf/Linux.mk @@ -89,6 +89,10 @@ else ifeq ($(OS_TEST),s390x) OS_REL_CFLAGS = -DLINUX1_2 -D_XOPEN_SOURCE CPU_ARCH = s390x +else +ifeq ($(OS_TEST),mips) + OS_REL_CFLAGS = -DLINUX1_2 -D_XOPEN_SOURCE + CPU_ARCH = mips else OS_REL_CFLAGS = -DLINUX1_2 -Di386 -D_XOPEN_SOURCE CPU_ARCH = x86 @@ -102,6 +106,7 @@ endif endif endif endif +endif LIBC_TAG = _glibc