File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package Mkvcbuild;
3
3
#
4
4
# Package that generates build files for msvc build
5
5
#
6
- # $PostgreSQL: pgsql/src/tools/msvc/Mkvcbuild.pm,v 1.7 2007/03/29 15:30:52 mha Exp $
6
+ # $PostgreSQL: pgsql/src/tools/msvc/Mkvcbuild.pm,v 1.8 2007/04/12 07:02:59 mha Exp $
7
7
#
8
8
use Carp;
9
9
use Win32;
@@ -156,6 +156,7 @@ sub mkvcbuild
156
156
157
157
# src/bin
158
158
my $initdb = AddSimpleFrontend(' initdb' , 1);
159
+ $initdb -> AddLibrary(' wsock32.lib ws2_32.lib' );
159
160
160
161
my $pgconfig = AddSimpleFrontend(' pg_config' );
161
162
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.20 2007/03/29 15:30:52 mha Exp $
6
+ # $PostgreSQL: pgsql/src/tools/msvc/Solution.pm,v 1.21 2007/04/12 07:03:00 mha Exp $
7
7
#
8
8
use Carp;
9
9
use strict;
@@ -112,6 +112,7 @@ s{PG_VERSION_STR "[^"]+"}{__STRINGIFY(x) #x\n#define __STRINGIFY2(z) __STRINGIFY
112
112
print O " #define HAVE_LIBZ 1\n " if ($self -> {options }-> {zlib });
113
113
print O " #define USE_SSL 1\n " if ($self -> {options }-> {openssl });
114
114
print O " #define ENABLE_NLS 1\n " if ($self -> {options }-> {nls });
115
+ print O " #define HAVE_IPV6 1\n " ;
115
116
116
117
if ($self -> {options }-> {xml })
117
118
{
You can’t perform that action at this time.
0 commit comments