Skip to content

Commit d8bf0a1

Browse files
committed
Un-break pg_basebackup's MSVC build.
Commit 23a1c65 thought it'd be cute to refactor pg_basebackup/Makefile with a new variable BBOBJS, but our MSVC build system knows nothing of that. Per buildfarm.
1 parent 57e3c51 commit d8bf0a1

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/tools/msvc/Mkvcbuild.pm

+4
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,11 @@ sub mkvcbuild
373373
}
374374

375375
my $pgbasebackup = AddSimpleFrontend('pg_basebackup', 1);
376+
# This list of files has to match BBOBJS in pg_basebackup's Makefile.
376377
$pgbasebackup->AddFile('src/bin/pg_basebackup/pg_basebackup.c');
378+
$pgbasebackup->AddFile('src/bin/pg_basebackup/bbstreamer_file.c');
379+
$pgbasebackup->AddFile('src/bin/pg_basebackup/bbstreamer_inject.c');
380+
$pgbasebackup->AddFile('src/bin/pg_basebackup/bbstreamer_tar.c');
377381
$pgbasebackup->AddLibrary('ws2_32.lib');
378382

379383
my $pgreceivewal = AddSimpleFrontend('pg_basebackup', 1);

0 commit comments

Comments
 (0)