From 3d136dde60ed5d2cb939da69fa6ed2d47e593677 Mon Sep 17 00:00:00 2001 From: wtc Date: Thu, 4 Jun 1998 04:55:37 +0000 Subject: [PATCH] In debug build, define MOZ_NO_DEBUG_RTL to use the nondebug version of the Microsoft VC run-time library. --- nsprpub/makefile.win | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nsprpub/makefile.win b/nsprpub/makefile.win index dcc828312f25..11ad6cb23b13 100644 --- a/nsprpub/makefile.win +++ b/nsprpub/makefile.win @@ -48,8 +48,12 @@ GMAKE_FLAGS = $(GMAKE_FLAGS) OS_TARGET=WIN16 GMAKE_FLAGS = $(GMAKE_FLAGS) OS_TARGET=WIN95 !ifdef MOZ_DEBUG +!ifdef MOZ_NO_DEBUG_RTL +PR_OBJDIR = WIN954.0_DBG.OBJ +!else GMAKE_FLAGS = $(GMAKE_FLAGS) USE_DEBUG_RTL=1 PR_OBJDIR = WIN954.0_DBG.OBJD +!endif !else PR_OBJDIR = WIN954.0_OPT.OBJ !endif