1c3841db67
PostgreSQL 11.2, 10.7, 9.6.12, 9.5.16, and 9.4.21 Released! This release changes the behavior in how PostgreSQL interfaces with fsync() and includes fixes for partitioning and over 70 other bugs that were reported over the past three months. Fix handling of unique indexes with INCLUDE columns on partitioned tables Ensure that NOT NULL constraints of a partitioned table are honored within its partitions Several fixes for constraints on partitioned tables Fix problems with applying ON COMMIT DROP and ON COMMIT DELETE ROWS to partitioned tables and tables with inheritance children Disallow COPY FREEZE on partitioned tables Several fixes for the ALTER TABLE .. ADD COLUMN with a non-nullable default feature, including a possible index corruption case Several fixes in GIN indexes, including avoiding a deadlock with vacuuming and concurrent index insertions (which partially reverts a performance improvement introduced in PostgreSQL 10) Fix possible crashes in logical replication when index expressions or predicates are in use Several fixes for the write-ahead log (WAL) Fix possible crash in UPDATE with a multiple SET clause using a sub-SELECT Fix crash when zero rows are provided to json[b]_populate_recordset() or json[b]_to_recordset() Several fixes related to collation handling, including the parsing of collation-sensitive expressions in the arguments of a CALL statement Several fixes for the query planner, including an improvement to planning speed for large inheritance or partitioning table groups Several fixes for TRUNCATE Ensure ALTER TABLE ONLY ADD COLUMN IF NOT EXISTS is processed correctly Allow UNLISTEN in hot-standby (replica) mode Fix parsing of space-separated lists of host names in the ldapserver parameter of LDAP authentication entries in pg_hba.conf Several fixes for ecpg Several fixes for psql, including having \g target work with COPY TO STDOUT The random number generation for pgbench is now fully deterministic and platform-independent when --random-seed=N is specified Fix pg_basebackup and pg_verify_checksums to appropriately ignore temporary files Several fixes for pg_dump, including having ALTER INDEX SET STATISTICS commands present Prevent false index-corruption reports from contrib/amcheck caused by inline-compressed data Support new Makefile variables to help with building extensions
76 lines
2.2 KiB
Makefile
76 lines
2.2 KiB
Makefile
# $NetBSD: Makefile,v 1.8 2019/02/17 08:26:12 adam Exp $
|
|
|
|
PKGNAME= ${DISTNAME:C/-/95-server-/}
|
|
COMMENT= PostgreSQL database server programs
|
|
|
|
# mips has no TAS implementation
|
|
BROKEN_ON_PLATFORM= *-*-mips
|
|
|
|
.include "../../databases/postgresql95/Makefile.common"
|
|
|
|
CONFIGURE_ARGS+= --with-openssl
|
|
|
|
INSTALL_DIRS= src/backend
|
|
INSTALL_DIRS+= src/backend/replication/libpqwalreceiver
|
|
INSTALL_DIRS+= src/backend/utils/mb/conversion_procs
|
|
INSTALL_DIRS+= src/backend/snowball
|
|
INSTALL_DIRS+= src/timezone
|
|
INSTALL_DIRS+= src/pl
|
|
BUILD_DIRS= src/port
|
|
BUILD_DIRS+= ${INSTALL_DIRS}
|
|
|
|
LIBS.SunOS+= -lintl
|
|
|
|
# PostgreSQL has loadable server-side language modules.
|
|
#
|
|
# Explicitly set DLOPEN_REQUIRE_PTHREADS to "no" on NetBSD as NetBSD-2.x
|
|
# had problems with mixing dlopen() and pthreads, which blows up in
|
|
# PostgreSQL's backend (pkg/28729). This works on older and newer
|
|
# versions of NetBSD as well since they don't have the bad interaction
|
|
# between dlopen() and pthreads.
|
|
.if ${OPSYS} == "NetBSD"
|
|
DLOPEN_REQUIRE_PTHREADS= no
|
|
.endif
|
|
.include "../../mk/dlopen.buildlink3.mk"
|
|
|
|
# If we're using libltdl to provide "dlopen" functionality, then add the
|
|
# dependency and make sure that we link against -lltdl.
|
|
.if !empty(USE_LIBLTDL:M[yY][eE][sS])
|
|
DL_LIBS+= -lltdl
|
|
. include "../../devel/libltdl/buildlink3.mk"
|
|
.endif
|
|
|
|
# PGUSER username of the database administrator
|
|
# PGGROUP group of the database administrator
|
|
# PGHOME home directory of the database administrator and location of
|
|
# the databases
|
|
FILES_SUBST+= PGUSER=${PGUSER}
|
|
FILES_SUBST+= PGGROUP=${PGGROUP}
|
|
FILES_SUBST+= PGHOME=${PGHOME}
|
|
BUILD_DEFS+= PGHOME VARBASE
|
|
|
|
ALL_ENV+= INSTALLED_LIBPQ=yes
|
|
|
|
PKG_GROUPS_VARS+= PGGROUP
|
|
PKG_USERS_VARS+= PGUSER
|
|
|
|
PKG_GROUPS= ${PGGROUP}
|
|
PKG_USERS= ${PGUSER}:${PGGROUP}
|
|
PKG_GECOS.${PGUSER}= PostgreSQL database administrator
|
|
PKG_HOME.${PGUSER}= ${PGHOME}
|
|
|
|
RCD_SCRIPTS= pgsql
|
|
SMF_METHODS= postgresql
|
|
SMF_NAME= postgresql
|
|
|
|
.include "../../databases/postgresql95-client/buildlink3.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
|
|
# Avoid conflict between "${SSLBASE}/include/openssl/des.h" and
|
|
# "/usr/include/crypt.h" -- we want the definitions in the former.
|
|
post-wrapper:
|
|
.if ${OPSYS} == "SunOS"
|
|
touch ${BUILDLINK_DIR}/include/crypt.h
|
|
.endif
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|