-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
repmgr 5.2.1 is a minor release. A.1.1. Improvements repmgr standby clone: option --recovery-min-apply-delay added, overriding any setting present in repmgr.conf. A.1.2. Bug fixes Configuration: fix parsing of replication_type configuration parameter. repmgr standby clone: handle case where postgresql.auto.conf is absent on the source node. repmgr standby clone: in PostgreSQL 11 and later, an existing data directory's permissions will not be changed to 0700 if they are already set to 0750. repmgrd: prevent termination when local node not available and standby_disconnect_on_failover is set. repmgrd: ensure reconnect_interval is correctly handled. repmgr witness --help: fix witness unregister description.
- Loading branch information
adam
committed
Dec 8, 2020
1 parent
45eefea
commit d3465f4
Showing
4 changed files
with
38 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
$NetBSD: distinfo,v 1.9 2020/10/30 09:55:13 adam Exp $ | ||
$NetBSD: distinfo,v 1.10 2020/12/08 16:38:26 adam Exp $ | ||
|
||
SHA1 (repmgr-5.2.0.tar.gz) = b51474d70f2f0636377f48e9506b54f34e1d555a | ||
RMD160 (repmgr-5.2.0.tar.gz) = a123452de6e9d0490024fd71ad56ec603821b35c | ||
SHA512 (repmgr-5.2.0.tar.gz) = 4e9fbbba42025226d9b0e13f180f4f8b2ffbafd2b84a4ec9ffe36a804d40f3fc0d8b599bb859b4bdb0ca739d974d014a96e31868e5a48e34df2666c98a314553 | ||
Size (repmgr-5.2.0.tar.gz) = 446137 bytes | ||
SHA1 (patch-repmgr.c) = e83bdddf1722e4cb5d1861baa33ab8c6930db693 | ||
SHA1 (repmgr-5.2.1.tar.gz) = 2368a114934e78e5b316bed535b2794f4a3e81e9 | ||
RMD160 (repmgr-5.2.1.tar.gz) = 055261e39aab9a157a7ebe857e95baf3c5da39b0 | ||
SHA512 (repmgr-5.2.1.tar.gz) = 609ca27322087a042ede3a54565e425e9f39d74df510cbc103390cf60a31b35ce311cd942d5efd062bec2026864bd45466dbaf323963060d3ce89ce167c2a0b1 | ||
Size (repmgr-5.2.1.tar.gz) = 448164 bytes | ||
SHA1 (patch-Makefile.in) = 9f9a41e4366bc8f7246eaef707ff33127659c777 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
$NetBSD: patch-Makefile.in,v 1.1 2020/12/08 16:38:26 adam Exp $ | ||
|
||
Link against libintl. | ||
|
||
--- Makefile.in.orig 2020-12-07 08:54:14.000000000 +0000 | ||
+++ Makefile.in | ||
@@ -40,7 +40,7 @@ all: \ | ||
|
||
# When in development add -Werror | ||
PG_CPPFLAGS = -std=gnu89 -I$(includedir_internal) -I$(libpq_srcdir) -Wall -Wmissing-prototypes -Wmissing-declarations $(EXTRA_CFLAGS) | ||
-SHLIB_LINK = $(libpq) | ||
+SHLIB_LINK = $(libpq) -lintl | ||
|
||
|
||
|
||
@@ -76,10 +76,10 @@ configfile-scan.c: configfile-scan.l | ||
$(REPMGR_CLIENT_OBJS): repmgr-client.h repmgr_version.h | ||
|
||
repmgr: $(REPMGR_CLIENT_OBJS) | ||
- $(CC) $(CFLAGS) $(REPMGR_CLIENT_OBJS) $(libpq_pgport) $(LDFLAGS) $(LDFLAGS_EX) -o $@$(X) | ||
+ $(CC) $(CFLAGS) $(REPMGR_CLIENT_OBJS) $(libpq_pgport) -lintl $(LDFLAGS) $(LDFLAGS_EX) -o $@$(X) | ||
|
||
repmgrd: $(REPMGRD_OBJS) | ||
- $(CC) $(CFLAGS) $(REPMGRD_OBJS) $(libpq_pgport) $(LDFLAGS) $(LDFLAGS_EX) -o $@$(X) | ||
+ $(CC) $(CFLAGS) $(REPMGRD_OBJS) $(libpq_pgport) -lintl $(LDFLAGS) $(LDFLAGS_EX) -o $@$(X) | ||
|
||
$(REPMGR_CLIENT_OBJS): $(HEADERS) | ||
$(REPMGRD_OBJS): $(HEADERS) |
This file was deleted.
Oops, something went wrong.