diff options
author | Magnus Hagander | 2007-12-06 17:07:37 +0000 |
---|---|---|
committer | Magnus Hagander | 2007-12-06 17:07:37 +0000 |
commit | c873c9e059352400f9664b8f7b6a304b2d39acc0 (patch) | |
tree | 45a62510f9983ea3785632623d5d1d0dd170fa32 | |
parent | b3f359e952ab6a98d8a0fbfb842dcb55d0b49ff1 (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 6b5b418280..548485a074 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> |