Compare commits

..

3 Commits

Author SHA1 Message Date
Ian Barwick
48099e9c5f Clean up whitespace 2015-07-22 16:18:04 +09:00
Marco Nenciarini
e7ca8c369f Allow repmgr to be compiled with a libpq newer than PostgreSQL
Fixes #44
2015-04-29 17:57:51 +02:00
Ian Barwick
782fae6239 Fix typo 2015-04-20 08:31:37 +09:00
4 changed files with 9 additions and 9 deletions

View File

@@ -1,5 +1,5 @@
2.0.3 2015-04-16 2.0.3 2015-04-16
Add -S/--superuser option for witness database creation Ian) Add -S/--superuser option for witness database creation (Ian)
Add -c/--fast-checkpoint option for cloning (Christoph) Add -c/--fast-checkpoint option for cloning (Christoph)
Add option "--initdb-no-pwprompt" (Ian) Add option "--initdb-no-pwprompt" (Ian)

View File

@@ -54,4 +54,3 @@ export PATH=$PATH:/usr/pgsql-9.3/bin/
- fix witness creation to create db and user if needed - fix witness creation to create db and user if needed
* Fri Apr 04 2014 Nathan Van Overloop <nathan.van.overloop@nexperteam.be> 2.0.1 * Fri Apr 04 2014 Nathan Van Overloop <nathan.van.overloop@nexperteam.be> 2.0.1
- initial build for RHEL6 - initial build for RHEL6

View File

@@ -25,7 +25,8 @@
#include <string.h> #include <string.h>
/* NB: postgres_fe must be included BEFORE check_dir */ /* NB: postgres_fe must be included BEFORE check_dir */
#include "postgres_fe.h" #include <libpq-fe.h>
#include <postgres_fe.h>
#include "check_dir.h" #include "check_dir.h"
#include "strutil.h" #include "strutil.h"

View File

@@ -20,9 +20,9 @@
#ifndef _REPMGR_H_ #ifndef _REPMGR_H_
#define _REPMGR_H_ #define _REPMGR_H_
#include "postgres_fe.h" #include <libpq-fe.h>
#include "getopt_long.h" #include <postgres_fe.h>
#include "libpq-fe.h" #include <getopt_long.h>
#include "strutil.h" #include "strutil.h"
#include "dbutils.h" #include "dbutils.h"