mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
3bf9490074
Changelog for 3.7.12: Bug fixes Fix incorrect query rewrite in replication mode. (Bo Peng) Fix that health check timeout does work in certain case. (Tatsuo Ishii) Discussion: [pgpool-hackers: 3458], [pgpool-hackers: 3459] Doc: add failover_command description when all standby nodes are down. (Takuma Hoshiai) Doc: add note not to assign PostgreSQL servers to trusted_servers. (Tatsuo Ishii) Fix for miscellaneous watchdog issues. (Muhammad Usama) Fix assorted ancient v2 protocol bugs. (Tatsuo Ishii) Fix problem that syslog_facility doesn't change by reload. (bug 548) (Takuma Hoshiai) Fix Pgpool-II shutdown failed in certain case. (Tatsuo Ishii) Allow the lost standby node to rejoin the master watchdog node when it gets rediscovered by the lifecheck. (bug 545) (Muhammad Usama) Overhaul health check debug facility. (Tatsuo Ishii) Fix segfault when executing an erroneous query after DEALLOCATE a named statement. (bug 546) (Tatsuo Ishii) Doc: mention that VIP will not be brougt up if quorum does not exist. (Tatsuo Ishii) Add "-I" option to arping_cmd command default setting. (Bo Peng) Changelog taken from: https://www.pgpool.net/docs/latest/en/html/release-3-7-12.html Changelog for 3.7.13: Changes Disallowing the quorum aware failover option for the native replication mode. (Muhammad Usama) Check if socket file exists at startup and remove them if PID file doesn't exist to avoid bind() failire. (Bo Peng) A.12.2. Bug fixes Fix incorrect query rewriting in native replication mode. (bug 551) (Bo Peng) Doc: Update documentation and fix documentation typos. (Takuma Hoshiai, Tatsuo Ishii, Bo Peng) Fix child process segfault after reload if health_check_database is empty. (bug 571) (Bo Peng) Fix pgpool_setup to support PostgreSQL 12. (Tatsuo Ishii) Fix occasional regression test failure. (Tatsuo Ishii) Fix replication delay worker segfault when application_name in primary_conninfo is an empty string. (bug 565) (Tatsuo Ishii) Fix PGPOOL SHOW command doesn't display ALWAYS_MASTER, when backend_flag = 'ALWAYS_MASTER'. (Takuma Hoshiai) Fix the bug with ignored syslog setting. (Bo Peng) Changelog taken from: https://www.pgpool.net/docs/latest/en/html/release-3-7-13.html
44 lines
924 B
Makefile
44 lines
924 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= pgpool-II
|
|
PORTVERSION= 3.7.13
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://www.pgpool.net/mediawiki/images/
|
|
PKGNAMESUFFIX= 37
|
|
|
|
MAINTAINER= tz@FreeBSD.org
|
|
COMMENT= Connection pool server for PostgreSQL
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
PORTSCOUT= limit:^3.7.[0-9]*
|
|
|
|
USES= gmake libtool pgsql:9.6+
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
USE_RC_SUBR= pgpool
|
|
CONFLICTS= pgpool-II-[0-9]*
|
|
|
|
PORTDOCS= *
|
|
|
|
OPTIONS_DEFINE= DOCS SSL
|
|
OPTIONS_DEFAULT= SSL
|
|
|
|
SSL_CONFIGURE_WITH= openssl
|
|
SSL_USES= ssl
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}/var/run/pgpool
|
|
${INSTALL_LIB} ${WRKSRC}/src/libs/pcp/.libs/libpcp.so.1.0.0 ${STAGEDIR}${PREFIX}/lib
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKSRC} && ${COPYTREE_SHARE} doc ${STAGEDIR}${DOCSDIR} "-not -name Makefile.\*"
|
|
.for f in AUTHORS ChangeLog NEWS TODO
|
|
${INSTALL_DATA} ${WRKSRC}/$f ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|