diff options
author | adam <adam@pkgsrc.org> | 2011-02-09 08:48:16 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2011-02-09 08:48:16 +0000 |
commit | 245a7388d41ea6949be4c1c432c334a10926c686 (patch) | |
tree | df651b3a98b599f18ba265a531906fc6316f9afd /databases/postgresql90-plpython/Makefile | |
parent | 45084676307bb5f05c691147453919e5853610ac (diff) | |
download | pkgsrc-245a7388d41ea6949be4c1c432c334a10926c686.tar.gz |
Changes 9.0.3:
* 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
Diffstat (limited to 'databases/postgresql90-plpython/Makefile')
-rw-r--r-- | databases/postgresql90-plpython/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/databases/postgresql90-plpython/Makefile b/databases/postgresql90-plpython/Makefile index f5942d8b287..8d0b64e554b 100644 --- a/databases/postgresql90-plpython/Makefile +++ b/databases/postgresql90-plpython/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2010/12/19 09:53:29 adam Exp $ +# $NetBSD: Makefile,v 1.3 2011/02/09 08:48:19 adam Exp $ PKGNAME= ${DISTNAME:C/-/90-plpython-/} COMMENT= PL/Python procedural language for the PostgreSQL backend @@ -9,12 +9,13 @@ DEPENDS+= postgresql90-server>=${PKGVERSION_NOREV}:../../databases/postgresql90- .include "../../databases/postgresql90/Makefile.common" -USE_LIBTOOL= yes -PKG_LIBTOOL= ${PKG_SHLIBTOOL} +#USE_LIBTOOL= yes +#PKG_LIBTOOL= ${PKG_SHLIBTOOL} CONFIGURE_ARGS+= --with-python CONFIGURE_ENV+= PYTHON="${PYTHONBIN}" BUILD_DIRS= src/pl/plpython +BUILD_MAKE_FLAGS= PGXS=1 .include "../../databases/postgresql90-client/buildlink3.mk" .include "../../lang/python/extension.mk" |