mirror of
https://github.com/postgres/postgres.git
synced 2025-08-09 17:03:00 +03:00
Ooops, WIN32 code in pg_ctl.c still needs PQExpBuffer.
Per buildfarm.
This commit is contained in:
@@ -36,6 +36,10 @@
|
|||||||
#include "getopt_long.h"
|
#include "getopt_long.h"
|
||||||
#include "utils/pidfile.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 */
|
/* PID can be negative for standalone backend */
|
||||||
typedef long pgpid_t;
|
typedef long pgpid_t;
|
||||||
|
|
||||||
|
@@ -49,7 +49,7 @@ my @contrib_excludes = (
|
|||||||
|
|
||||||
# Set of variables for frontend modules
|
# Set of variables for frontend modules
|
||||||
my $frontend_defines = { 'initdb' => 'FRONTEND' };
|
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 = (
|
my @frontend_uselibpgport = (
|
||||||
'pg_archivecleanup', 'pg_test_fsync',
|
'pg_archivecleanup', 'pg_test_fsync',
|
||||||
'pg_test_timing', 'pg_upgrade',
|
'pg_test_timing', 'pg_upgrade',
|
||||||
|
Reference in New Issue
Block a user