diff options
author | Andrew Dunstan | 2008-04-15 12:16:51 +0000 |
---|---|---|
committer | Andrew Dunstan | 2008-04-15 12:16:51 +0000 |
commit | 820853085da1c825cc29c0c9726be8f1175990ff (patch) | |
tree | 6629729980d5759a3dead2651592c9a82159821c | |
parent | a0b3474618d09599f6922f27e467e10ba1f19006 (diff) |
Make integer_datetimes the default for MSVC even if not mentioned in config.pl.
-rw-r--r-- | src/tools/msvc/Solution.pm | 3 | ||||
-rw-r--r-- | src/tools/msvc/config.pl | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/tools/msvc/Solution.pm b/src/tools/msvc/Solution.pm index 0ae5fa08bf..d585c1d4db 100644 --- a/src/tools/msvc/Solution.pm +++ b/src/tools/msvc/Solution.pm @@ -22,6 +22,9 @@ sub new strver => '', }; bless $self; + # integer_datetimes is now the default + $options->{integer_datetimes} = 1 + unless exists $options->{integer_datetimes}; if ($options->{xml}) { if (!($options->{xslt} && $options->{iconv})) diff --git a/src/tools/msvc/config.pl b/src/tools/msvc/config.pl index 07403cad56..64869563da 100644 --- a/src/tools/msvc/config.pl +++ b/src/tools/msvc/config.pl @@ -4,7 +4,7 @@ use warnings; our $config = { asserts=>0, # --enable-cassert - integer_datetimes=>1, # --enable-integer-datetimes + # integer_datetimes=>1, # --enable-integer-datetimes - on is now default nls=>undef, # --enable-nls=<path> tcl=>'c:\tcl', # --with-tls=<path> perl=>'c:\perl', # --with-perl |