In debug build, define MOZ_NO_DEBUG_RTL to use the nondebug version

of the Microsoft VC run-time library.
This commit is contained in:
wtc 1998-06-04 04:55:37 +00:00
parent ac85c09ee9
commit 3d136dde60

View File

@ -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