mirror of
https://github.com/postgres/postgres.git
synced 2025-07-12 21:01:52 +03:00
Build pgoutput.dll in MSVC build
Without this, logical replication obviously does not work on Windows MauMau, with clean.bet additions from me per note from Michael Paquier
This commit is contained in:
@ -252,6 +252,11 @@ sub mkvcbuild
|
||||
$libpqwalreceiver->AddIncludeDir('src/interfaces/libpq');
|
||||
$libpqwalreceiver->AddReference($postgres, $libpq);
|
||||
|
||||
my $pgoutput = $solution->AddProject(
|
||||
'pgoutput', 'dll', '',
|
||||
'src/backend/replication/pgoutput');
|
||||
$pgoutput->AddReference($postgres);
|
||||
|
||||
my $pgtypes = $solution->AddProject(
|
||||
'libpgtypes', 'dll',
|
||||
'interfaces', 'src/interfaces/ecpg/pgtypeslib');
|
||||
|
@ -20,6 +20,7 @@ del /s /q src\bin\win32ver.rc 2> NUL
|
||||
del /s /q src\interfaces\win32ver.rc 2> NUL
|
||||
if exist src\backend\win32ver.rc del /q src\backend\win32ver.rc
|
||||
if exist src\backend\replication\libpqwalreceiver\win32ver.rc del /q src\backend\replication\libpqwalreceiver\win32ver.rc
|
||||
if exist src\backend\replication\pgoutput\win32ver.rc del /q src\backend\replication\pgoutput\win32ver.rc
|
||||
if exist src\backend\snowball\win32ver.rc del /q src\backend\snowball\win32ver.rc
|
||||
if exist src\interfaces\ecpg\test\win32ver.rc del /q src\interfaces\ecpg\test\win32ver.rc
|
||||
if exist src\pl\plperl\win32ver.rc del /q src\pl\plperl\win32ver.rc
|
||||
|
Reference in New Issue
Block a user