Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit c68b5ef

Browse files
committed
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.
1 parent da5aecc commit c68b5ef

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

src/bin/pg_basebackup/pg_receivexlog.c

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,21 @@
1313
*/
1414

1515
#include "postgres_fe.h"
16-
#include "libpq-fe.h"
17-
#include "access/xlog_internal.h"
18-
19-
#include "receivelog.h"
20-
#include "streamutil.h"
2116

2217
#include <dirent.h>
18+
#include <signal.h>
2319
#include <sys/stat.h>
2420
#include <sys/types.h>
2521
#include <unistd.h>
2622

23+
#include "libpq-fe.h"
24+
#include "access/xlog_internal.h"
2725
#include "getopt_long.h"
2826

27+
#include "receivelog.h"
28+
#include "streamutil.h"
29+
30+
2931
/* Time to sleep between reconnection attempts */
3032
#define RECONNECT_SLEEP_TIME 5
3133

0 commit comments

Comments
 (0)