6b8a877dd4
* 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 pg_restore's text output for large objects (BLOBs) when standard_conforming_strings is on. * 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.
20 lines
631 B
Makefile
20 lines
631 B
Makefile
# $NetBSD: Makefile,v 1.3 2011/02/15 08:14:16 adam Exp $
|
|
|
|
PKGNAME= ${DISTNAME:C/-/84-pgcrypto-/}
|
|
COMMENT= Module providing cryptographic functions for PostgreSQL
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
DEPENDS+= postgresql84-server>=${PKGVERSION_NOREV}:../../databases/postgresql84-server
|
|
|
|
.include "../../databases/postgresql84/Makefile.common"
|
|
|
|
CONFIGURE_ARGS+= --with-zlib
|
|
|
|
BUILD_DIRS= contrib/pgcrypto
|
|
BUILD_MAKE_FLAGS= PGXS=1
|
|
REQD_DIRS+= ${PG_SUBPREFIX}share/doc/postgresql/contrib
|
|
REQD_DIRS+= ${PG_SUBPREFIX}share/postgresql/contrib
|
|
|
|
.include "../../databases/postgresql84-client/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|