diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2013-03-17 14:11:48 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2013-03-17 14:11:48 -0400 |
commit | c68b5eff13b97ecaaa87b24406455fafe568aa3f (patch) | |
tree | b1251473da6730a9d933cdcb2237e850aba6b2cb /src | |
parent | da5aeccf64b37a8e9bd3cb605848590595dbcbf8 (diff) | |
download | postgresql-c68b5eff13b97ecaaa87b24406455fafe568aa3f.tar.gz postgresql-c68b5eff13b97ecaaa87b24406455fafe568aa3f.zip |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_basebackup/pg_receivexlog.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/bin/pg_basebackup/pg_receivexlog.c b/src/bin/pg_basebackup/pg_receivexlog.c index e65f127d1d8..e68f8ea7079 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 <dirent.h> +#include <signal.h> #include <sys/stat.h> #include <sys/types.h> #include <unistd.h> +#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 |