summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtc%netscape.com <devnull@localhost>2001-06-09 17:14:59 +0000
committerwtc%netscape.com <devnull@localhost>2001-06-09 17:14:59 +0000
commit3013655651a874ce4ff16545e9f8984442a77f22 (patch)
tree9a807abbd7fc52e989047aa2e99efeec52bedfda
parente377487941df8ca1ec69da1735efbeaa8ecd2082 (diff)
downloadnss-hg-3013655651a874ce4ff16545e9f8984442a77f22.tar.gz
Bugzilla bug #84918: checked in Linux/ia64 porting patch from
Bill Nottingham <notting@redhat.com>. Modified files: coreconf/Linux.mk, nss/tests/common/arch.sh
-rw-r--r--security/coreconf/Linux.mk5
-rwxr-xr-xsecurity/nss/tests/common/arch.sh2
2 files changed, 7 insertions, 0 deletions
diff --git a/security/coreconf/Linux.mk b/security/coreconf/Linux.mk
index 8024ac7e7..16e5585fb 100644
--- a/security/coreconf/Linux.mk
+++ b/security/coreconf/Linux.mk
@@ -58,6 +58,10 @@ ifeq ($(OS_TEST),alpha)
OS_REL_CFLAGS = -D_ALPHA_ -DLINUX1_2 -D_XOPEN_SOURCE
CPU_ARCH = alpha
else
+ifeq ($(OS_TEST),ia64)
+ OS_REL_CFLAGS = -DLINUX1_2 -D_XOPEN_SOURCE
+ CPU_ARCH = ia64
+else
ifeq ($(OS_TEST),sparc)
OS_REL_CFLAGS = -DLINUX1_2 -D_XOPEN_SOURCE
CPU_ARCH = sparc
@@ -72,6 +76,7 @@ endif
endif
endif
endif
+endif
LIBC_TAG = _glibc
diff --git a/security/nss/tests/common/arch.sh b/security/nss/tests/common/arch.sh
index b2f6475c4..f485666db 100755
--- a/security/nss/tests/common/arch.sh
+++ b/security/nss/tests/common/arch.sh
@@ -222,6 +222,8 @@ if [ ${OS_ARCH} = "Linux" ]; then
CPU_TAG=_ppc
elif [ ${OS_TEST} = "alpha" ]; then
CPU_TAG=_alpha
+ elif [ ${OS_TEST} = "ia64" ]; then
+ CPU_TAG=_ia64
else
CPU_TAG=_x86
fi