ccf532ab0c
With significant new functionality and performance enhancements, this release represents a major leap forward for PostgreSQL. This was made possible by a growing community that has dramatically accelerated the pace of development. This release adds the following major features: * Full text search is integrated into the core database system * Support for the SQL/XML standard, including new operators and an XML data type * Enumerated data types (ENUM) * Arrays of composite types * Universally Unique Identifier (UUID) data type * Add control over whether NULLs sort first or last * Updatable cursors * Server configuration parameters can now be set on a per-function basis * User-defined types can now have type modifiers * Automatically re-plan cached queries when table definitions change or statistics are updated * Numerous improvements in logging and statistics collection * Support Security Service Provider Interface (SSPI) for authentication on Windows * Support multiple concurrent autovacuum processes, and other autovacuum improvements * Allow the whole PostgreSQL distribution to be compiled with Microsoft Visual C++
21 lines
597 B
Makefile
21 lines
597 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2008/03/04 12:44:41 adam Exp $
|
|
|
|
PKGNAME= postgresql83-plpython-${BASE_VERS}
|
|
COMMENT= PL/Python procedural language for the PostgreSQL backend
|
|
|
|
DEPENDS+= postgresql83-server>=${BASE_VERS}:../../databases/postgresql83-server
|
|
|
|
.include "../../databases/postgresql83/Makefile.common"
|
|
|
|
CONFIGURE_ARGS+= --with-python
|
|
CONFIGURE_ENV+= PYTHON="${PYTHONBIN}"
|
|
|
|
BUILD_DIRS= src/pl/plpython
|
|
|
|
USE_LIBTOOL= yes
|
|
PKG_LIBTOOL= ${PKG_SHLIBTOOL}
|
|
|
|
.include "../../databases/postgresql83-client/buildlink3.mk"
|
|
.include "../../lang/python/extension.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|