diff options
author | Magnus Hagander | 2007-12-06 17:07:37 +0000 |
---|---|---|
committer | Magnus Hagander | 2007-12-06 17:07:37 +0000 |
commit | a0c4ac77add62606cbeaf2a9f243e2cc3228ef59 (patch) | |
tree | 650032a5db03c5d54586d22cef4205449873796c | |
parent | 59c841506c5b659bc570d49220313ef680ab236c (diff) |
Disable asserts by default on msvc build (to make it the same
as in unix)
-rw-r--r-- | src/tools/msvc/config.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/msvc/config.pl b/src/tools/msvc/config.pl index 6b5b4182807..548485a0746 100644 --- a/src/tools/msvc/config.pl +++ b/src/tools/msvc/config.pl @@ -3,7 +3,7 @@ use strict; use warnings; our $config = { - asserts=>1, # --enable-cassert + asserts=>0, # --enable-cassert integer_datetimes=>0, # --enable-integer-datetimes nls=>undef, # --enable-nls=<path> tcl=>'c:\tcl', # --with-tls=<path> |