Skip to content

Commit 52d0b49

Browse files
committed
Add missing library and include support for pg_upgrade to MSVC build system.
1 parent 092c36e commit 52d0b49

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/tools/msvc/Mkvcbuild.pm

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package Mkvcbuild;
33
#
44
# Package that generates build files for msvc build
55
#
6-
# $PostgreSQL: pgsql/src/tools/msvc/Mkvcbuild.pm,v 1.54 2010/04/09 13:05:58 mha Exp $
6+
# $PostgreSQL: pgsql/src/tools/msvc/Mkvcbuild.pm,v 1.55 2010/05/13 13:40:03 adunstan Exp $
77
#
88
use Carp;
99
use Win32;
@@ -25,8 +25,10 @@ my $postgres;
2525
my $libpq;
2626

2727
my $contrib_defines = {'refint' => 'REFINT_VERBOSE'};
28-
my @contrib_uselibpq = ('dblink', 'oid2name', 'pgbench', 'vacuumlo');
29-
my @contrib_uselibpgport = ('oid2name', 'pgbench', 'pg_standby', 'vacuumlo');
28+
my @contrib_uselibpq = ('dblink', 'oid2name', 'pgbench', 'pg_upgrade',
29+
'vacuumlo');
30+
my @contrib_uselibpgport = ('oid2name', 'pgbench', 'pg_standby',
31+
'pg_upgrade', 'vacuumlo');
3032
my $contrib_extralibs = {'pgbench' => ['wsock32.lib']};
3133
my $contrib_extraincludes = {'tsearch2' => ['contrib/tsearch2'], 'dblink' => ['src/backend']};
3234
my $contrib_extrasource = {

0 commit comments

Comments
 (0)