a6361f4a39
The PostgreSQL Global Development Group has released an update to all supported versions of PostgreSQL, including 18.3, 17.9, 16.13, 15.17, and 14.22. This is an out-of-cycle release that fixes several regressions reported after the last update release. Release notes: https://www.postgresql.org/about/news/postgresql-183-179-1613-1517-and-1422-released-3246/ https://wiki.postgresql.org/wiki/2026-02_Regression_Fixes
29 lines
791 B
Makefile
29 lines
791 B
Makefile
PORTNAME= postgresql
|
|
PORTREVISION= 0
|
|
|
|
COMMENT= PostgreSQL database (client)
|
|
|
|
MASTERDIR= ${.CURDIR}/../postgresql17-server
|
|
|
|
BUILD_DIRS= config src/include src/interfaces src/port src/fe_utils src/bin/pg_amcheck \
|
|
src/bin/pg_dump src/bin/psql src/bin/scripts src/bin/pg_config \
|
|
src/bin/pgbench src/makefiles src/test/regress
|
|
INSTALL_DIRS= ${BUILD_DIRS}
|
|
|
|
CLIENT_ONLY= yes
|
|
COMPONENT= -client
|
|
USE_LDCONFIG= yes
|
|
USES= pkgconfig
|
|
|
|
OPTIONS_DEFINE+=LIBEDIT DOCS
|
|
LIBEDIT_DESC= Use non-GPL libedit instead of readline
|
|
LIBEDIT_CONFIGURE_ON+=--with-libedit-preferred
|
|
LIBEDIT_USES= libedit
|
|
LIBEDIT_USES_OFF=readline
|
|
BUILD_DEPENDS+= docbook-xml>0:textproc/docbook-xml \
|
|
docbook-xsl>=0:textproc/docbook-xsl \
|
|
xmllint:textproc/libxml2 \
|
|
xsltproc:textproc/libxslt
|
|
|
|
.include "${MASTERDIR}/Makefile"
|