File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package Solution;
3
3
#
4
4
# Package that encapsulates a Visual C++ solution file generation
5
5
#
6
- # $PostgreSQL: pgsql/src/tools/msvc/Solution.pm,v 1.37 2008/03/21 02:50:02 adunstan Exp $
6
+ # $PostgreSQL: pgsql/src/tools/msvc/Solution.pm,v 1.38 2008/04/15 12:16:51 adunstan Exp $
7
7
#
8
8
use Carp;
9
9
use strict;
@@ -22,6 +22,9 @@ sub new
22
22
strver => ' ' ,
23
23
};
24
24
bless $self ;
25
+ # integer_datetimes is now the default
26
+ $options -> {integer_datetimes } = 1
27
+ unless exists $options -> {integer_datetimes };
25
28
if ($options -> {xml })
26
29
{
27
30
if (!($options -> {xslt } && $options -> {iconv }))
Original file line number Diff line number Diff line change 4
4
5
5
our $config = {
6
6
asserts => 0, # --enable-cassert
7
- integer_datetimes => 1, # --enable-integer-datetimes
7
+ # integer_datetimes=>1, # --enable-integer-datetimes - on is now default
8
8
nls => undef , # --enable-nls=<path>
9
9
tcl => ' c:\tcl' , # --with-tls=<path>
10
10
perl => ' c:\perl' , # --with-perl
You can’t perform that action at this time.
0 commit comments