summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseawood%netscape.com <devnull@localhost>2001-12-06 03:39:02 +0000
committerseawood%netscape.com <devnull@localhost>2001-12-06 03:39:02 +0000
commitd883e3e4069fef3206390d4e5054d7d97846c34a (patch)
treea84e75fb9c7a5f1baedbd580815e6f375faeef13
parentd81093940fb1c2180dbe803b5742cf315f076f29 (diff)
downloadnspr-hg-d883e3e4069fef3206390d4e5054d7d97846c34a.tar.gz
Do not build NSPR optimized if MOZ_TRACE_MALLOC is set.
Thanks to Garrett Blythe <blythe@netscape.com> for the patch. Bug #112953 r=wtc
-rw-r--r--gmakefile.win2
1 files changed, 1 insertions, 1 deletions
diff --git a/gmakefile.win b/gmakefile.win
index 2671587f..05f855fa 100644
--- a/gmakefile.win
+++ b/gmakefile.win
@@ -56,7 +56,7 @@ NSPR_CONFIGURE := ../configure \
--with-dist-bindir=$(MOZ_DIST_FLIPPED)/$(MOZ_OBJDIR)/bin \
--with-dist-libdir=$(MOZ_DIST_FLIPPED)/$(MOZ_OBJDIR)/lib
-ifeq (,$(MOZ_DEBUG))
+ifeq (,$(MOZ_DEBUG)$(MOZ_TRACE_MALLOC))
NSPR_CONFIGURE := $(NSPR_CONFIGURE) --enable-optimize --disable-debug
endif