summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseawood%netscape.com <devnull@localhost>2001-12-06 03:39:05 +0000
committerseawood%netscape.com <devnull@localhost>2001-12-06 03:39:05 +0000
commitb1b754cf01facd57cde699c6791de738c8c8405c (patch)
tree6007b709777e99dbaec9d15673262b3050c76053
parent30d690fe76a2232c70c5a5161ac35b1e541d3d11 (diff)
downloadnspr-hg-b1b754cf01facd57cde699c6791de738c8c8405c.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