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.
22 lines
690 B
Makefile
22 lines
690 B
Makefile
# $NetBSD: Makefile,v 1.5 2011/02/15 08:14:17 adam Exp $
|
|
|
|
PKGNAME= ${DISTNAME:C/-/84-pltcl-/}
|
|
COMMENT= PL/Tcl procedural language for the PostgreSQL backend
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
DEPENDS+= postgresql84-server>=${PKGVERSION_NOREV}:../../databases/postgresql84-server
|
|
|
|
.include "../../databases/postgresql84/Makefile.common"
|
|
|
|
CONFIGURE_ARGS+= --with-tcl
|
|
CONFIGURE_ARGS+= --with-tclconfig="${BUILDLINK_PREFIX.tcl}/lib"
|
|
CONFIGURE_ENV+= TCLSH="${TCLSH}"
|
|
TCLSH= ${BUILDLINK_PREFIX.tcl}/bin/tclsh
|
|
|
|
BUILD_DIRS= src/pl/tcl
|
|
BUILD_MAKE_FLAGS= PGXS=1
|
|
|
|
.include "../../databases/postgresql84-client/buildlink3.mk"
|
|
.include "../../lang/tcl/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|