mirror of
https://git.freebsd.org/ports.git
synced 2025-05-18 18:13:12 -04:00
PostgreSQL 10 RC 1 requires an upgrade from beta 4, or earlier either using pg_dump / pg_restore or pg_upgrade. Any bug fixes applied to 9.6 or earlier that also affected 10 are included in RC 1, as well issues that were reported with Beta 4. Changes Since Beta 4 PostgreSQL 10 RC 1 contains fixes for issues discovered by users when testing Beta 4, including: * Add psql variables showing server version and psql version. * Several fixes for partitioning * Several fixes for logical replication * Several fixes for transition tables * Fix for query that could end up in an uninterruptible state Note that some known issues remain unfixed. Before reporting a bug in the release candidate, please check the Open Items page. URL: https://wiki.postgresql.org/wiki/New_in_postgres_10 URL: https://www.postgresql.org/docs/devel/static/release-10.html
32 lines
826 B
Makefile
32 lines
826 B
Makefile
# Created by: Palle Girgensohn <girgen@pingpong.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= postgresql
|
|
PORTREVISION= 0
|
|
CATEGORIES= databases
|
|
|
|
MAINTAINER= pgsql@FreeBSD.org
|
|
COMMENT= The contrib utilities from the PostgreSQL distribution
|
|
|
|
LIB_DEPENDS= libxslt.so:textproc/libxslt \
|
|
libxml2.so:textproc/libxml2
|
|
|
|
MASTERDIR= ${.CURDIR}/../postgresql10-server
|
|
|
|
USES= bison pgsql:10
|
|
|
|
BUILD_DIRS= src/port src/include src/common contrib
|
|
INSTALL_DIRS= contrib
|
|
|
|
SLAVE_ONLY= yes
|
|
COMPONENT= -contrib
|
|
CONFIGURE_ARGS+=--with-libxslt --with-libxml --with-openssl --disable-nls --with-uuid=bsd
|
|
LDFLAGS+= -lpthread -L${PREFIX}/lib
|
|
|
|
post-configure:
|
|
@cd ${WRKSRC}/src/backend && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} symlinks
|
|
|
|
post-install:
|
|
@- ${INSTALL_DATA} ${WRKSRC}/contrib/README ${STAGEDIR}${DOCSDIR}/extension/README
|
|
|
|
.include "${MASTERDIR}/Makefile"
|