From 5f67ce7b92408afa375cc8091245b22cbdf64c52 Mon Sep 17 00:00:00 2001 From: "jim_nance%yahoo.com" Date: Tue, 7 Mar 2000 02:35:43 +0000 Subject: [PATCH] Fix for the Tru64 changes to work with the autoconf scheme we are using. r=cls --- config/config.mk | 2 +- configure.in | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/config/config.mk b/config/config.mk index 610d9ef2a32..a1382939e50 100644 --- a/config/config.mk +++ b/config/config.mk @@ -239,7 +239,7 @@ TAR = tar endif endif -ifneq (,$(filter OpenVMS OSF1,$(OS_ARCH))) +ifeq ($(OS_ARCH),OpenVMS) include $(topsrcdir)/config/$(OS_ARCH).mk endif diff --git a/configure.in b/configure.in index e9068abc37d..4ff1879dd0b 100644 --- a/configure.in +++ b/configure.in @@ -736,6 +736,8 @@ alpha*-*-osf*) if test "$GNU_CC"; then DSO_LDOPTS='-shared -Wl,-soname -Wl,$@' else + MOZ_DEBUG_FLAGS='-gall' + ASFLAGS='-I$(topsrcdir)/xpcom/reflect/xptcall/public -g -std1' CFLAGS="$CFLAGS -std1 -ieee_with_inexact" CXXFLAGS="$CXXFLAGS -std1 -ieee_with_inexact -noexceptions" DSO_LDOPTS='-shared -msym -expect_unresolved \* -soname $@'