* Before exiting walreceiver, ensure all the received WAL is fsync'd to disk * Avoid excess fsync activity in walreceiver * Make "ALTER TABLE" revalidate uniqueness and exclusion constraints when needed * Fix EvalPlanQual for "UPDATE" of an inheritance tree in which the tables are not all alike * Avoid failures when "EXPLAIN" tries to display a simple-form CASE expression * Fix assignment to an array slice that is before the existing range of subscripts * Avoid unexpected conversion overflow in planner for very distant date values * Fix PL/Python crash when an array contains null entries * Remove ecpg's fixed length limit for constants defining an array dimension * Fix erroneous parsing of tsquery values containing ... & !(subexpression) | ... * Fix buffer overrun in "contrib/intarray"'s input function for the query_int type * Fix bug in "contrib/seg"'s GiST picksplit algorithm
24 lines
666 B
Makefile
24 lines
666 B
Makefile
# $NetBSD: Makefile,v 1.3 2011/02/09 08:48:19 adam Exp $
|
|
|
|
PKGNAME= ${DISTNAME:C/-/90-plperl-/}
|
|
COMMENT= PL/Perl procedural language for the PostgreSQL backend
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
DEPENDS+= postgresql90-server>=${PKGVERSION_NOREV}:../../databases/postgresql90-server
|
|
|
|
.include "../../databases/postgresql90/Makefile.common"
|
|
|
|
#USE_LIBTOOL= yes
|
|
#PKG_LIBTOOL= ${PKG_SHLIBTOOL}
|
|
USE_TOOLS+= perl
|
|
PERL5_CONFIGURE= no
|
|
CONFIGURE_ARGS+= --with-perl
|
|
BUILD_MAKE_FLAGS= PGXS=1
|
|
|
|
BUILD_DIRS= src/pl/plperl
|
|
MAKE_FILE= GNUmakefile
|
|
|
|
.include "../../databases/postgresql90-client/buildlink3.mk"
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|