32aedaf959
Changelog: Enhancements: - Import some of memory manager debug facilities from PostgreSQL. (Tatsuo Ishii) - Use pg_get_expr() instead of pg_attrdef.adsrc to support for PostgreSQL 12. (Bo Peng) - Enhance shutdown script of pgpool_setup. (Tatsuo Ishii) - Make shutdownall to wait for completion of shutdown of Pgpool-II. - If environment variable CHECK_TIME_WAIT is set to true, use netstat command to confirm usage of the TCP/IP port while executing shutdown script. - Deal pgpool_adm extension with PostgreSQL 12. (Tatsuo Ishii) Bug fixes: - Fix "unable to bind. cannot get parse message" error. (bug 531) (Tatsuo Ishii) - Fix online-recovery is blocked after a child process exits abnormally with replication mode and watchdog. (bug 483) (Muhammad Usama) - Fix pgpool_setup to produce correct follow master command. (Tatsuo Ishii) - Fix query cache module so that it checks oid array's bound. (Tatsuo Ishii) - Fix off-by-one error in query cache module. (Tatsuo Ishii) - Fix sefault when query cache is enabled. (bug 525) (Tatsuo Ishii) - Down grade LOG "checking zapping sent message ..." to DEBUG5. (Tatsuo Ishii) - Fix segfault when samenet is specified in pool_hba.conf. (Tatsuo Ishii) - Fix to deal with backslashes according to the config of standard_conforming_strings in native replication mode. (bug 467) (Bo Peng) - Fix memory leaks. (Tatsuo Ishii) - Make failover in progress check more aggressively to avoid potential segfault. (Tatsuo Ishii) MFH: 2019Q3
45 lines
975 B
Makefile
45 lines
975 B
Makefile
# Created by: Choe, Cheng-Dae <whitekid@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pgpool-II
|
|
PORTVERSION= 3.5.22
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://www.pgpool.net/mediawiki/images/
|
|
PKGNAMESUFFIX= 35
|
|
|
|
MAINTAINER= tz@FreeBSD.org
|
|
COMMENT= Connection pool server for PostgreSQL
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
PORTSCOUT= limit:^3.5.[0-9]*
|
|
|
|
USES= gmake libtool pgsql:9.3+
|
|
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>
|