diff options
author | Palle Girgensohn <girgen@FreeBSD.org> | 2009-07-07 22:30:06 +0000 |
---|---|---|
committer | Palle Girgensohn <girgen@FreeBSD.org> | 2009-07-07 22:30:06 +0000 |
commit | 00c3beec3943b166c0dd223e40358d5062439fa7 (patch) | |
tree | 6381d335b55d645f8866bcdb498a7de8ee1ead34 /databases/postgresql-contrib/Makefile | |
parent | - Flip MAKE_JOBS_SAFE to MAKE_JOBS_UNSAFE (diff) |
Welcome PostgreSQL 8.4
After many years of development, PostgreSQL has become feature-complete in many areas.
This release shows a targeted approach to adding features (e.g., authentication,
monitoring, space reuse), and adds capabilities defined in the later SQL standards.
The major areas of enhancement are:
Windowing Functions
Common Table Expressions and Recursive Queries
Default and variadic parameters for functions
Parallel Restore
Column Permissions
Per-database locale settings
Improved hash indexes
Improved join performance for EXISTS and NOT EXISTS queries
Easier-to-use Warm Standby
Automatic sizing of the Free Space Map
Visibility Map (greatly reduces vacuum overhead for slowly-changing tables)
Version-aware psql (backslash commands work against older servers)
Support SSL certificates for user authentication
Per-function runtime statistics
Easy editing of functions in psql
New contrib modules: pg_stat_statements, auto_explain, citext, btree_gin
URL: http://www.postgresql.org/docs/8.4/interactive/release-8-4.html
Notes
Notes:
svn path=/head/; revision=237379
Diffstat (limited to 'databases/postgresql-contrib/Makefile')
-rw-r--r-- | databases/postgresql-contrib/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/databases/postgresql-contrib/Makefile b/databases/postgresql-contrib/Makefile index 1a3c06c9c3b9..4596b0870fdd 100644 --- a/databases/postgresql-contrib/Makefile +++ b/databases/postgresql-contrib/Makefile @@ -38,6 +38,12 @@ INSTALL_DIRS= contrib SLAVE_ONLY= yes PKGMESSAGE= ${.CURDIR}/pkg-message +.if ${PGSQL_VER} > 83 +CONFIGURE_ARGS+= --with-libxslt --with-libxml --with-ossp-uuid +LIB_DEPENDS= xslt.2:${PORTSDIR}/textproc/libxslt xml2.5:${PORTSDIR}/textproc/libxml2 +BUILD_DEPENDS= ${LOCALBASE}/bin/uuid-config:${PORTSDIR}/misc/ossp-uuid +.endif + post-install: .if ${PGSQL_VER} < 81 @- ${INSTALL_SCRIPT} ${WRKSRC}/contrib/ipc_check/ipc_check.pl ${PREFIX}/bin/ipc_check ;\ |