From c68b5eff13b97ecaaa87b24406455fafe568aa3f Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sun, 17 Mar 2013 14:11:48 -0400 Subject: [PATCH] Fix inclusions in pg_receivexlog.c. Apparently this was depending on pqsignal.h for . Not sure why I didn't see the failure on my other machine. --- src/bin/pg_basebackup/pg_receivexlog.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/bin/pg_basebackup/pg_receivexlog.c b/src/bin/pg_basebackup/pg_receivexlog.c index e65f127d1d..e68f8ea707 100644 --- a/src/bin/pg_basebackup/pg_receivexlog.c +++ b/src/bin/pg_basebackup/pg_receivexlog.c @@ -13,19 +13,21 @@ */ #include "postgres_fe.h" -#include "libpq-fe.h" -#include "access/xlog_internal.h" - -#include "receivelog.h" -#include "streamutil.h" #include +#include #include #include #include +#include "libpq-fe.h" +#include "access/xlog_internal.h" #include "getopt_long.h" +#include "receivelog.h" +#include "streamutil.h" + + /* Time to sleep between reconnection attempts */ #define RECONNECT_SLEEP_TIME 5