* Query language enhancements including "INSERT/UPDATE/DELETE RETURNING", multirow VALUES lists, and optional target-table alias in "UPDATE"/"DELETE" * Index creation without blocking concurrent "INSERT"/"UPDATE"/"DELETE" operations * Many query optimization improvements, including support for reordering outer joins * Improved sorting performance with lower memory usage * More efficient locking with better concurrency * More efficient vacuuming * Easier administration of warm standby servers * New FILLFACTOR support for tables and indexes * Monitoring, logging, and performance tuning additions * More control over creating and dropping objects * Table inheritance relationships can be defined for and removed from pre-existing tables * "COPY TO" can copy the output of an arbitrary "SELECT" statement * Array improvements, including nulls in arrays * Aggregate-function improvements, including multiple-input aggregates and SQL:2003 statistical functions * Many "contrib/" improvements
22 lines
600 B
Makefile
22 lines
600 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2006/12/09 16:15:06 adam Exp $
|
|
|
|
PKGNAME= postgresql82-plperl-${BASE_VERS}
|
|
COMMENT= PL/Perl procedural language for the PostgreSQL backend
|
|
|
|
DEPENDS+= postgresql82-server>=${BASE_VERS}:../../databases/postgresql82-server
|
|
|
|
.include "../../databases/postgresql82/Makefile.common"
|
|
|
|
PERL5_CONFIGURE= no
|
|
CONFIGURE_ARGS+= --with-perl
|
|
|
|
BUILD_DIRS= ${WRKSRC}/src/pl/plperl
|
|
MAKE_FILE= GNUmakefile
|
|
|
|
USE_LIBTOOL= yes
|
|
PKG_LIBTOOL= ${PKG_SHLIBTOOL}
|
|
|
|
.include "../../databases/postgresql82-client/buildlink3.mk"
|
|
.include "../../lang/perl5/module.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|