diff options
author | jlam <jlam@pkgsrc.org> | 2001-09-07 08:49:10 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-09-07 08:49:10 +0000 |
commit | ef55182abb7aa76dc81deef2833cca5e05b53277 (patch) | |
tree | 45a8cecaec969e5e2352fc90e231738f4bdc7972 /databases/postgresql | |
parent | b26e3c3c6e8f2f3cb334737b1628482abe7cfb4f (diff) | |
download | pkgsrc-ef55182abb7aa76dc81deef2833cca5e05b53277.tar.gz |
Update postgresql and packages built from postgresql sources to 7.1.3.
Relevant changes from version 7.1.2 include:
Remove unused WAL segements of large transactions
Multiaction rule fix
Pl/pgSQL memory allocation fix
VACUUM buffer fix
pg_dump fixes for GRANT/REVOKE/comments on views, user-defined types
Fix subselects with DISTINCT ON or LIMIT
Disable COPY TO/FROM a view
Diffstat (limited to 'databases/postgresql')
-rw-r--r-- | databases/postgresql/Makefile.common | 4 | ||||
-rw-r--r-- | databases/postgresql/distinfo | 10 | ||||
-rw-r--r-- | databases/postgresql/patches/patch-aj | 14 | ||||
-rw-r--r-- | databases/postgresql/patches/patch-ak | 11 |
4 files changed, 14 insertions, 25 deletions
diff --git a/databases/postgresql/Makefile.common b/databases/postgresql/Makefile.common index 9b2395f8000..8a1f74d6cf3 100644 --- a/databases/postgresql/Makefile.common +++ b/databases/postgresql/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.21 2001/06/12 20:33:02 jlam Exp $ +# $NetBSD: Makefile.common,v 1.22 2001/09/07 08:49:10 jlam Exp $ # # This Makefile fragment is included by all PostgreSQL packages built from # the main sources of the PostgreSQL distribution. @@ -36,7 +36,7 @@ PATCHDIR= ${.CURDIR}/../../databases/postgresql/patches # PG_PKG_VERS pkgsrc revisions of postgresql (nbX, etc.) # PG_VERS pkgsrc version number of package # -PG_DIST_VERS= 7.1.2 +PG_DIST_VERS= 7.1.3 PG_BASE_VERS= ${PG_DIST_VERS} PG_PKG_VERS?= # empty PG_VERS= ${PG_BASE_VERS}${PG_PKG_VERS} diff --git a/databases/postgresql/distinfo b/databases/postgresql/distinfo index 1997d572e51..8e3b5b28b5d 100644 --- a/databases/postgresql/distinfo +++ b/databases/postgresql/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.6 2001/09/05 12:48:48 rh Exp $ +$NetBSD: distinfo,v 1.7 2001/09/07 08:49:10 jlam Exp $ -SHA1 (postgresql-7.1.2.tar.gz) = d428b911b97fce1aea43f7322cc8c081322d258c -Size (postgresql-7.1.2.tar.gz) = 8117016 bytes +SHA1 (postgresql-7.1.3.tar.gz) = d969d73af499e87a7ad052cab5efe6ca9d1d7085 +Size (postgresql-7.1.3.tar.gz) = 8124455 bytes SHA1 (patch-aa) = e3b4c556c2a389ae5a27d4ecfe3809652faf4c8f SHA1 (patch-ab) = 5e83cfb8825b700782405504d56ec87016caf0ff SHA1 (patch-ac) = feb9ea73626e131ed9bdb926a36ba312de1d6890 @@ -11,6 +11,6 @@ SHA1 (patch-af) = 79f9153c463e6ea81bacc0ec8ba941b0e96e2745 SHA1 (patch-ag) = 64279ce6b8677563e5b6c200fb22c46d5f964f42 SHA1 (patch-ah) = bd89be830747ede444516f1abf44a0407164fe8d SHA1 (patch-ai) = 02b84f52941e7cb939388137392df18d53eecfb2 -SHA1 (patch-aj) = 61d8fc8eed33031092912f6a8f81db523329cc9c -SHA1 (patch-ak) = a3a50e64b70a0829c0374b803e4a5c6a6ed9c83e +SHA1 (patch-aj) = 251c0f20ca90f6d613f37c0a31d80f3bf38f2bdc +SHA1 (patch-ak) = 96f555cfb72a7f263f763afad0120ab45e50d6b6 SHA1 (patch-al) = d1da4a0bd321b5dd683dadaaf0edc452c2292d0b diff --git a/databases/postgresql/patches/patch-aj b/databases/postgresql/patches/patch-aj index 1ac5d1cdf8e..0048f137589 100644 --- a/databases/postgresql/patches/patch-aj +++ b/databases/postgresql/patches/patch-aj @@ -1,17 +1,15 @@ -$NetBSD: patch-aj,v 1.9 2001/09/05 12:48:48 rh Exp $ +$NetBSD: patch-aj,v 1.10 2001/09/07 08:49:10 jlam Exp $ ---- src/makefiles/Makefile.netbsd.orig Sat Dec 16 19:14:25 2000 -+++ src/makefiles/Makefile.netbsd -@@ -2,8 +2,10 @@ - +--- src/makefiles/Makefile.netbsd.orig Sat Dec 16 13:14:25 2000 ++++ src/makefiles/Makefile.netbsd Fri Sep 7 03:04:28 2001 +@@ -3,7 +3,9 @@ ifdef ELF_SYSTEM export_dynamic = -Wl,-E --rpath = -Wl,-R$(libdir) + rpath = -Wl,-R$(libdir) -shlib_symbolic = -Wl,-Bsymbolic -+rpath = -L$(libdir) -Wl,-R$(libdir) +shlib_symbolic = -Wl,-Bsymbolic -lc +else -+rpath = -L$(libdir) -R$(libdir) ++rpath = -R$(libdir) endif DLSUFFIX = .so diff --git a/databases/postgresql/patches/patch-ak b/databases/postgresql/patches/patch-ak index 3811babd461..99e7c4c2b50 100644 --- a/databases/postgresql/patches/patch-ak +++ b/databases/postgresql/patches/patch-ak @@ -1,16 +1,7 @@ -$NetBSD: patch-ak,v 1.4 2001/05/14 14:52:38 jlam Exp $ +$NetBSD: patch-ak,v 1.5 2001/09/07 08:49:10 jlam Exp $ --- src/pl/plperl/Makefile.PL.orig Sat Jun 10 14:02:12 2000 +++ src/pl/plperl/Makefile.PL -@@ -9,7 +9,7 @@ - # to be position-independent, but that is hard to check for and - # seems pretty unlikely anyway.) - # --if ($Config{'useshrplib'} ne 'true') { -+if ( ! -f $Config{archlibexp} . "/CORE/libperl." . $Config{so}) { - open(OUT, ">Makefile") or die "Can't write Makefile: $!\n"; - print OUT <<'EndOfMakefile'; - # Dummy Makefile for use when we can't build plperl @@ -52,7 +52,7 @@ } |