mirror of https://github.com/postgres/postgres
Fix pg_standby to build on msvc.
This commit is contained in:
parent
05f43970d3
commit
933571129d
|
@ -27,7 +27,6 @@
|
|||
#include <signal.h>
|
||||
|
||||
#ifdef WIN32
|
||||
#include "win32.h"
|
||||
int getopt(int argc, char * const argv[], const char *optstring);
|
||||
#else
|
||||
#include <sys/time.h>
|
||||
|
|
|
@ -162,7 +162,7 @@ my $contrib_defines = {
|
|||
'refint' => 'REFINT_VERBOSE'
|
||||
};
|
||||
my @contrib_uselibpq = ('dblink', 'oid2name', 'pgbench', 'vacuumlo');
|
||||
my @contrib_uselibpgport = ('oid2name', 'pgbench', 'vacuumlo');
|
||||
my @contrib_uselibpgport = ('oid2name', 'pgbench', 'pg_standby', 'vacuumlo');
|
||||
my $contrib_extralibs = {
|
||||
'pgbench' => ['wsock32.lib']
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue