Ooops, WIN32 code in pg_ctl.c still needs PQExpBuffer.

Per buildfarm.
This commit is contained in:
Tom Lane 2017-06-28 18:00:16 -04:00
parent f13ea95f9e
commit 1ae8536545
2 changed files with 5 additions and 1 deletions

View File

@ -36,6 +36,10 @@
#include "getopt_long.h"
#include "utils/pidfile.h"
#ifdef WIN32 /* on Unix, we don't need libpq */
#include "pqexpbuffer.h"
#endif
/* PID can be negative for standalone backend */
typedef long pgpid_t;

View File

@ -49,7 +49,7 @@ my @contrib_excludes = (
# Set of variables for frontend modules
my $frontend_defines = { 'initdb' => 'FRONTEND' };
my @frontend_uselibpq = ('pg_upgrade', 'pgbench', 'psql', 'initdb');
my @frontend_uselibpq = ('pg_ctl', 'pg_upgrade', 'pgbench', 'psql', 'initdb');
my @frontend_uselibpgport = (
'pg_archivecleanup', 'pg_test_fsync',
'pg_test_timing', 'pg_upgrade',