5b84c8c22e
PostgreSQL 14 contains many new features and enhancements, including: Stored procedures can now return data via OUT parameters. The SQL-standard SEARCH and CYCLE options for common table expressions have been implemented. Subscripting can now be applied to any data type for which it is a useful notation, not only arrays. In this release, the jsonb and hstore types have gained subscripting operators. Range types have been extended by adding multiranges, allowing representation of noncontiguous data ranges. Numerous performance improvements have been made for parallel queries, heavily-concurrent workloads, partitioned tables, logical replication, and vacuuming. B-tree index updates are managed more efficiently, reducing index bloat. VACUUM automatically becomes more aggressive, and skips inessential cleanup, if the database starts to approach a transaction ID wraparound condition. Extended statistics can now be collected on expressions, allowing better planning results for complex queries. libpq now has the ability to pipeline multiple queries, which can boost throughput over high-latency connections.
147 lines
3.8 KiB
Makefile
147 lines
3.8 KiB
Makefile
# $NetBSD: pgsql.buildlink3.mk,v 1.57 2021/10/08 10:23:43 adam Exp $
|
|
#
|
|
# User-settable variables:
|
|
#
|
|
# PGSQL_VERSION_DEFAULT
|
|
#
|
|
# Package-settable variables:
|
|
#
|
|
# PGSQL_VERSIONS_ACCEPTED
|
|
#
|
|
# Variables set by this file:
|
|
#
|
|
# PG_LIB_EXT
|
|
# PGSQL_TYPE
|
|
# PGPKGSRCDIR
|
|
# PGSQL_VERSION
|
|
|
|
.if !defined(PGVERSION_MK)
|
|
PGVERSION_MK= defined
|
|
|
|
_VARGROUPS+= pgsql
|
|
_USER_VARS.pgsql= PGSQL_VERSION_DEFAULT
|
|
_PKG_VARS.pgsql= PGSQL_VERSIONS_ACCEPTED
|
|
_SYS_VARS.pgsql= PG_LIB_EXT PGSQL_TYPE PGPKGSRCDIR
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
PGSQL_VERSION_DEFAULT?= 13
|
|
PGSQL_VERSIONS_ACCEPTED?= 14 13 12 11 10 96
|
|
|
|
# transform the list into individual variables
|
|
.for pv in ${PGSQL_VERSIONS_ACCEPTED}
|
|
_PGSQL_VERSION_${pv}_OK= yes
|
|
.endfor
|
|
|
|
.if ${SHLIB_TYPE} == "dylib"
|
|
PG_LIB_EXT=dylib
|
|
.else
|
|
PG_LIB_EXT=so
|
|
.endif
|
|
|
|
# check what is installed
|
|
.if ${OPSYS} == "Darwin"
|
|
. if exists(${LOCALBASE}/lib/libecpg.6.14.dylib)
|
|
_PGSQL_VERSION_14_INSTALLED= yes
|
|
. endif
|
|
. if exists(${LOCALBASE}/lib/libecpg.6.13.dylib)
|
|
_PGSQL_VERSION_13_INSTALLED= yes
|
|
. endif
|
|
. if exists(${LOCALBASE}/lib/libecpg.6.12.dylib)
|
|
_PGSQL_VERSION_12_INSTALLED= yes
|
|
. endif
|
|
. if exists(${LOCALBASE}/lib/libecpg.6.11.dylib)
|
|
_PGSQL_VERSION_11_INSTALLED= yes
|
|
. endif
|
|
. if exists(${LOCALBASE}/lib/libecpg.6.10.dylib)
|
|
_PGSQL_VERSION_10_INSTALLED= yes
|
|
. endif
|
|
. if exists(${LOCALBASE}/lib/libecpg.6.8.dylib)
|
|
_PGSQL_VERSION_96_INSTALLED= yes
|
|
. endif
|
|
.else
|
|
. if exists(${LOCALBASE}/lib/libecpg.so.6.14)
|
|
_PGSQL_VERSION_14_INSTALLED= yes
|
|
. endif
|
|
. if exists(${LOCALBASE}/lib/libecpg.so.6.13)
|
|
_PGSQL_VERSION_13_INSTALLED= yes
|
|
. endif
|
|
. if exists(${LOCALBASE}/lib/libecpg.so.6.12)
|
|
_PGSQL_VERSION_12_INSTALLED= yes
|
|
. endif
|
|
. if exists(${LOCALBASE}/lib/libecpg.so.6.11)
|
|
_PGSQL_VERSION_11_INSTALLED= yes
|
|
. endif
|
|
. if exists(${LOCALBASE}/lib/libecpg.so.6.10)
|
|
_PGSQL_VERSION_10_INSTALLED= yes
|
|
. endif
|
|
. if exists(${LOCALBASE}/lib/libecpg.so.6.8)
|
|
_PGSQL_VERSION_96_INSTALLED= yes
|
|
. endif
|
|
.endif
|
|
|
|
# if a version is explicitely required, take it
|
|
.if defined(PGSQL_VERSION_REQD)
|
|
_PGSQL_VERSION= ${PGSQL_VERSION_REQD}
|
|
.endif
|
|
# if the default is already installed, it is first choice
|
|
.if !defined(_PGSQL_VERSION)
|
|
.if defined(_PGSQL_VERSION_${PGSQL_VERSION_DEFAULT}_OK)
|
|
.if defined(_PGSQL_VERSION_${PGSQL_VERSION_DEFAULT}_INSTALLED)
|
|
_PGSQL_VERSION= ${PGSQL_VERSION_DEFAULT}
|
|
.endif
|
|
.endif
|
|
.endif
|
|
# prefer an already installed version, in order of "accepted"
|
|
.if !defined(_PGSQL_VERSION)
|
|
.for pv in ${PGSQL_VERSIONS_ACCEPTED}
|
|
.if defined(_PGSQL_VERSION_${pv}_INSTALLED)
|
|
_PGSQL_VERSION?= ${pv}
|
|
.else
|
|
# keep information as last resort - see below
|
|
_PGSQL_VERSION_FIRSTACCEPTED?= ${pv}
|
|
.endif
|
|
.endfor
|
|
.endif
|
|
# if the default is OK for the addon pkg, take this
|
|
.if !defined(_PGSQL_VERSION)
|
|
.if defined(_PGSQL_VERSION_${PGSQL_VERSION_DEFAULT}_OK)
|
|
_PGSQL_VERSION= ${PGSQL_VERSION_DEFAULT}
|
|
.endif
|
|
.endif
|
|
# take the first one accepted by the package
|
|
.if !defined(_PGSQL_VERSION)
|
|
_PGSQL_VERSION= ${_PGSQL_VERSION_FIRSTACCEPTED}
|
|
.endif
|
|
|
|
# set variables for the version we decided to use:
|
|
.if ${_PGSQL_VERSION} == "14"
|
|
PGSQL_TYPE= postgresql14-client
|
|
PGPKGSRCDIR= ../../databases/postgresql14-client
|
|
.elif ${_PGSQL_VERSION} == "13"
|
|
PGSQL_TYPE= postgresql13-client
|
|
PGPKGSRCDIR= ../../databases/postgresql13-client
|
|
.elif ${_PGSQL_VERSION} == "12"
|
|
PGSQL_TYPE= postgresql12-client
|
|
PGPKGSRCDIR= ../../databases/postgresql12-client
|
|
.elif ${_PGSQL_VERSION} == "11"
|
|
PGSQL_TYPE= postgresql11-client
|
|
PGPKGSRCDIR= ../../databases/postgresql11-client
|
|
.elif ${_PGSQL_VERSION} == "10"
|
|
PGSQL_TYPE= postgresql10-client
|
|
PGPKGSRCDIR= ../../databases/postgresql10-client
|
|
.elif ${_PGSQL_VERSION} == "96"
|
|
PGSQL_TYPE= postgresql96-client
|
|
PGPKGSRCDIR= ../../databases/postgresql96-client
|
|
.else
|
|
# force an error
|
|
PGSQL_TYPE= none
|
|
PKG_FAIL_REASON+= "${_PGSQL_VERSION} is not a valid package"
|
|
.endif
|
|
|
|
.include "${PGPKGSRCDIR}/buildlink3.mk"
|
|
PGSQL_PREFIX= ${BUILDLINK_PREFIX.${PGSQL_TYPE}}
|
|
|
|
PGSQL_VERSION= ${_PGSQL_VERSION}
|
|
|
|
.endif # PGVERSION_MK
|