diff options
author | cjs <cjs@pkgsrc.org> | 2003-08-18 00:26:24 +0000 |
---|---|---|
committer | cjs <cjs@pkgsrc.org> | 2003-08-18 00:26:24 +0000 |
commit | a2a90e322f481e1bacf6106de69f5de512dee77c (patch) | |
tree | 547d15a9fcacf267e2c44ec54c0c7a23fd42842c /databases/postgresql/Makefile.common | |
parent | b423c710957533c0d25ce12d4a71651b5742f140 (diff) | |
download | pkgsrc-a2a90e322f481e1bacf6106de69f5de512dee77c.tar.gz |
Upgrade to 7.3.4. The on-disk format is the same, so a dump/restore is
not required. Changes include:
Repair breakage in timestamp-to-date conversion for dates before 2000
Prevent rare possibility of server startup failure (Tom)
Fix bugs in interval-to-time conversion (Tom)
Add constraint names in a few places in pg_dump (Rod)
Improve performance of functions with many parameters (Tom)
Fix to_ascii() buffer overruns (Tom)
Prevent restore of database comments from throwing an error (Tom)
Work around buggy strxfrm() present in some Solaris releases (Tom)
Properly escape jdbc setObject() strings to improve security (Barry)
In particular, the server startup failure mentioned above occurs when the
transaction log ends on a page boundary.
Diffstat (limited to 'databases/postgresql/Makefile.common')
-rw-r--r-- | databases/postgresql/Makefile.common | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/databases/postgresql/Makefile.common b/databases/postgresql/Makefile.common index 15dbf73e282..5524cdd01b4 100644 --- a/databases/postgresql/Makefile.common +++ b/databases/postgresql/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.38 2003/07/17 21:28:50 grant Exp $ +# $NetBSD: Makefile.common,v 1.39 2003/08/18 00:26:24 cjs Exp $ # # This Makefile fragment is included by all PostgreSQL packages built from # the main sources of the PostgreSQL distribution except jdbc-postgresql. @@ -33,7 +33,7 @@ PATCHDIR?= ${.CURDIR}/../postgresql/patches # BASE_VERS pkgsrc-mangled version number (convert pl -> .) # # Note: Do not forget jdbc-postgresql when updating version -DIST_VERS?= 7.3.3 +DIST_VERS?= 7.3.4 BASE_VERS?= ${DIST_VERS} BUILDLINK_DEPENDS.postgresql-lib?= postgresql-lib>=${BASE_VERS} |