diff options
author | wtc <devnull@localhost> | 1998-06-04 04:55:37 +0000 |
---|---|---|
committer | wtc <devnull@localhost> | 1998-06-04 04:55:37 +0000 |
commit | 85c044448bc380e1e7169ca65d3d2d8365c7b1df (patch) | |
tree | 896dd242128a6632f023267674ad1aac960337d9 | |
parent | e8ae2aececed9865596be3adb0c4d18907d472f5 (diff) | |
download | nspr-hg-85c044448bc380e1e7169ca65d3d2d8365c7b1df.tar.gz |
In debug build, define MOZ_NO_DEBUG_RTL to use the nondebug version
of the Microsoft VC run-time library.
-rw-r--r-- | makefile.win | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/makefile.win b/makefile.win index dcc82831..11ad6cb2 100644 --- a/makefile.win +++ b/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 |