Commit 93357112 authored by Magnus Hagander's avatar Magnus Hagander

Fix pg_standby to build on msvc.

parent 05f43970
...@@ -27,7 +27,6 @@ ...@@ -27,7 +27,6 @@
#include <signal.h> #include <signal.h>
#ifdef WIN32 #ifdef WIN32
#include "win32.h"
int getopt(int argc, char * const argv[], const char *optstring); int getopt(int argc, char * const argv[], const char *optstring);
#else #else
#include <sys/time.h> #include <sys/time.h>
......
...@@ -162,7 +162,7 @@ my $contrib_defines = { ...@@ -162,7 +162,7 @@ my $contrib_defines = {
'refint' => 'REFINT_VERBOSE' 'refint' => 'REFINT_VERBOSE'
}; };
my @contrib_uselibpq = ('dblink', 'oid2name', 'pgbench', 'vacuumlo'); my @contrib_uselibpq = ('dblink', 'oid2name', 'pgbench', 'vacuumlo');
my @contrib_uselibpgport = ('oid2name', 'pgbench', 'vacuumlo'); my @contrib_uselibpgport = ('oid2name', 'pgbench', 'pg_standby', 'vacuumlo');
my $contrib_extralibs = { my $contrib_extralibs = {
'pgbench' => ['wsock32.lib'] 'pgbench' => ['wsock32.lib']
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment