diff options
author | adam <adam@pkgsrc.org> | 2010-12-19 09:53:26 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2010-12-19 09:53:26 +0000 |
commit | d336b2f1f8671073f438ae208e4312a46f2c4669 (patch) | |
tree | 1db38f87e9a3951fdbbc598460fca982d8c235e2 /databases/postgresql90-server/Makefile | |
parent | 2e0b0e690ae727f472e45e9277a45c64e7457b17 (diff) | |
download | pkgsrc-d336b2f1f8671073f438ae208e4312a46f2c4669.tar.gz |
Changes 9.0.2:
* Force the default wal_sync_method to be fdatasync on Linux
* Fix "too many KnownAssignedXids" error during Hot Standby replay
* Fix race condition in lock acquisition during Hot Standby
* Avoid unnecessary conflicts during Hot Standby
* Fix assorted bugs in WAL replay logic for GIN indexes
* Fix recovery from base backup when the starting checkpoint WAL
record is not in the same WAL segment as its redo point
* Fix corner-case bug when streaming replication is enabled
immediately after creating the master database cluster
* Fix persistent slowdown of autovacuum workers when multiple workers
remain active for a long time
* Fix long-term memory leak in autovacuum launcher
* Avoid failure when trying to report an impending transaction
wraparound condition from outside a transaction
* Add support for detecting register-stack overrun on IA64
* Add a check for stack overflow in copyObject()
* Fix detection of page splits in temporary GiST indexes
* Fix error checking during early connection processing
* Improve efficiency of window functions
* Avoid memory leakage while "ANALYZE"'ing complex index expressions
* Ensure an index that uses a whole-row Var still depends on its table
* Add missing support in "DROP OWNED BY" for removing foreign data
wrapper/server privileges belonging to a user
* Do not "inline" a SQL function with multiple OUT parameters
* Fix crash when inline-ing a set-returning function whose argument
list contains a reference to an inline-able user function
* Behave correctly if ORDER BY, LIMIT, FOR UPDATE, or WITH is
attached to the VALUES part of INSERT ... VALUES
* Make the OFF keyword unreserved
This prevents problems with using off as a variable name in
PL/pgSQL. That worked before 9.0, but was now broken because
PL/pgSQL now treats all core reserved words as reserved.
* Fix constant-folding of COALESCE() expressions
Diffstat (limited to 'databases/postgresql90-server/Makefile')
-rw-r--r-- | databases/postgresql90-server/Makefile | 29 |
1 files changed, 11 insertions, 18 deletions
diff --git a/databases/postgresql90-server/Makefile b/databases/postgresql90-server/Makefile index bcdc0c80d3b..7503f0d5061 100644 --- a/databases/postgresql90-server/Makefile +++ b/databases/postgresql90-server/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.5 2010/12/10 11:41:30 asau Exp $ +# $NetBSD: Makefile,v 1.6 2010/12/19 09:53:29 adam Exp $ -PKGNAME= postgresql90-server-${BASE_VERS} -PKGREVISION= 1 +PKGNAME= ${DISTNAME:C/-/90-server-/} COMMENT= PostgreSQL database server programs PKG_DESTDIR_SUPPORT= user-destdir @@ -15,18 +14,18 @@ NOT_FOR_PLATFORM= *-*-mips USE_LIBTOOL= yes PKG_LIBTOOL= ${PKG_SHLIBTOOL} -MESSAGE_SRC= ${.CURDIR}/MESSAGE - CONFIGURE_ARGS+= --with-openssl -BUILD_DIRS= src/backend -BUILD_DIRS+= src/backend/replication/libpqwalreceiver -BUILD_DIRS+= src/backend/utils/mb/conversion_procs -BUILD_DIRS+= src/backend/snowball -BUILD_DIRS+= src/timezone -BUILD_DIRS+= src/pl +INSTALL_DIRS= src/backend +INSTALL_DIRS+= src/backend/replication/libpqwalreceiver +INSTALL_DIRS+= src/backend/utils/mb/conversion_procs +INSTALL_DIRS+= src/backend/snowball +INSTALL_DIRS+= src/timezone +INSTALL_DIRS+= src/pl +BUILD_DIRS= src/port +BUILD_DIRS+= ${INSTALL_DIRS} -LIBS.SunOS+= -lintl +LIBS.SunOS+= -lintl # PostgreSQL has loadable server-side language modules. # @@ -68,7 +67,6 @@ PKG_GROUPS= ${PGGROUP} PKG_USERS= ${PGUSER}:${PGGROUP} PKG_GECOS.${PGUSER}= PostgreSQL database administrator PKG_HOME.${PGUSER}= ${PGHOME} -PKG_SHELL.${PGUSER}= ${SH} RCD_SCRIPTS= pgsql @@ -82,9 +80,4 @@ post-wrapper: touch ${BUILDLINK_DIR}/include/crypt.h .endif -pre-build: - ${RUN}${_ULIMIT_CMD} \ - cd ${WRKSRC}/src/port && \ - env ${MAKE_ENV} ${MAKE_PROGRAM} ${BUILD_MAKE_FLAGS} - .include "../../mk/bsd.pkg.mk" |