mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
Fix inclusions in pg_receivexlog.c.
Apparently this was depending on pqsignal.h for <signal.h>. Not sure why I didn't see the failure on my other machine.
This commit is contained in:
parent
da5aeccf64
commit
c68b5eff13
@ -13,19 +13,21 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "postgres_fe.h"
|
#include "postgres_fe.h"
|
||||||
#include "libpq-fe.h"
|
|
||||||
#include "access/xlog_internal.h"
|
|
||||||
|
|
||||||
#include "receivelog.h"
|
|
||||||
#include "streamutil.h"
|
|
||||||
|
|
||||||
#include <dirent.h>
|
#include <dirent.h>
|
||||||
|
#include <signal.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
|
#include "libpq-fe.h"
|
||||||
|
#include "access/xlog_internal.h"
|
||||||
#include "getopt_long.h"
|
#include "getopt_long.h"
|
||||||
|
|
||||||
|
#include "receivelog.h"
|
||||||
|
#include "streamutil.h"
|
||||||
|
|
||||||
|
|
||||||
/* Time to sleep between reconnection attempts */
|
/* Time to sleep between reconnection attempts */
|
||||||
#define RECONNECT_SLEEP_TIME 5
|
#define RECONNECT_SLEEP_TIME 5
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user