summaryrefslogtreecommitdiff
path: root/databases/postgresql91
diff options
context:
space:
mode:
authoradam <adam>2012-03-03 14:01:11 +0000
committeradam <adam>2012-03-03 14:01:11 +0000
commit55921f3cc0f35a6134d35be0be7960126c9ac9c3 (patch)
tree3b045fde50c1d2f6405a662c76c8ceaa55602691 /databases/postgresql91
parent0015cc93b0ee9d01a37b90eaa787ed59b59363e8 (diff)
downloadpkgsrc-55921f3cc0f35a6134d35be0be7960126c9ac9c3.tar.gz
Changes:
* Fix btree index corruption from insertions concurrent with vacuuming * Recover from errors occurring during WAL replay of DROP TABLESPACE * Fix transient zeroing of shared buffers during WAL replay * Fix postmaster to attempt restart after a hot-standby crash * Fix corner case in SSI transaction cleanup * Update per-column permissions, not only per-table permissions, when changing table owner * Fix handling of data-modifying WITH subplans in READ COMMITTED rechecking * Fix for "could not find plan for CTE" failures * Fix unsupported node type error caused by COLLATE in an INSERT expression * Avoid crashing when we have problems deleting table files post-commit * Fix recently-introduced memory leak in processing of inet/cidr * Fix GIN cost estimation to handle column IN (...) index conditions * Fix I/O-conversion-related memory leaks in plpgsql * Teach pg_upgrade to handle renaming of plpython's shared library (affecting upgrades to 9.1)
Diffstat (limited to 'databases/postgresql91')
-rw-r--r--databases/postgresql91/Makefile.common4
-rw-r--r--databases/postgresql91/distinfo10
-rw-r--r--databases/postgresql91/patches/patch-src_pl_plperl_GNUmakefile6
3 files changed, 10 insertions, 10 deletions
diff --git a/databases/postgresql91/Makefile.common b/databases/postgresql91/Makefile.common
index 8197b3533c2..4dfc53b7193 100644
--- a/databases/postgresql91/Makefile.common
+++ b/databases/postgresql91/Makefile.common
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.4 2011/12/06 20:37:33 adam Exp $
+# $NetBSD: Makefile.common,v 1.5 2012/03/03 14:01:12 adam Exp $
#
# used by databases/postgresql91-adminpack/Makefile
# used by databases/postgresql91-client/Makefile
@@ -23,7 +23,7 @@
.include "../../databases/postgresql91/Makefile.mirrors"
-DISTNAME= postgresql-9.1.2
+DISTNAME= postgresql-9.1.3
CATEGORIES= databases
MASTER_SITES= ${PGSQL_MIRRORS:=source/v${PKGVERSION_NOREV}/}
EXTRACT_SUFX= .tar.bz2
diff --git a/databases/postgresql91/distinfo b/databases/postgresql91/distinfo
index 7b16601f87a..dc85a3d33e2 100644
--- a/databases/postgresql91/distinfo
+++ b/databases/postgresql91/distinfo
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.4 2011/12/06 20:37:33 adam Exp $
+$NetBSD: distinfo,v 1.5 2012/03/03 14:01:12 adam Exp $
-SHA1 (postgresql-9.1.2.tar.bz2) = 7d57b96eb1c764ec234c72b70511a5f7e23fb2b0
-RMD160 (postgresql-9.1.2.tar.bz2) = 2f98f2ff4e6e2b048dce80335fb3c672753114a9
-Size (postgresql-9.1.2.tar.bz2) = 15424814 bytes
+SHA1 (postgresql-9.1.3.tar.bz2) = 1cf3044415df807c08bb8ad8e40e24e8d375cf34
+RMD160 (postgresql-9.1.3.tar.bz2) = 84eb235c090083b78e6a2facf3d7bc534395db8b
+Size (postgresql-9.1.3.tar.bz2) = 15582454 bytes
SHA1 (patch-config_perl.m4) = c7e5aaff1c47d2e33df7692a412ef984c77ffcc0
SHA1 (patch-configure) = dab79533dac06a79a5aa8439d6b15830d8d2fba7
SHA1 (patch-contrib_dblink_Makefile) = 4960ad57d42465fae203870548e4c53f8a32ce04
@@ -10,7 +10,7 @@ SHA1 (patch-contrib_dblink_dblink.c) = 4d7c40d107d4c13c63ef2908d9a02be319863657
SHA1 (patch-src_Makefile.shlib) = 39c9d8fa983658fd609a7879cbe46c95aabb8011
SHA1 (patch-src_backend_Makefile) = 76ddd3015d93b19cdd6000eaffc4f53cbd4965b5
SHA1 (patch-src_makefiles_Makefile.solaris) = 0168f5bc105ffc89d5db40907a08966d8465f5a0
-SHA1 (patch-src_pl_plperl_GNUmakefile) = 52f90988850d7787b81423243a103be8de822d68
+SHA1 (patch-src_pl_plperl_GNUmakefile) = 2b7448d6dd8550e2ea61f40728a2780068b93d07
SHA1 (patch-src_pl_plperl_plperl.h) = bd663fa80a47f7b82ce689060750fa6e631fbc61
SHA1 (patch-src_timezone_localtime.c) = a73769cf05223d2ee06249c9e69c85038c2cd936
SHA1 (patch-src_timezone_private.h) = 85dac95e40efc16270885087f868aeb76e1b9214
diff --git a/databases/postgresql91/patches/patch-src_pl_plperl_GNUmakefile b/databases/postgresql91/patches/patch-src_pl_plperl_GNUmakefile
index 0bc5f6a8a10..5e6cfe0b2aa 100644
--- a/databases/postgresql91/patches/patch-src_pl_plperl_GNUmakefile
+++ b/databases/postgresql91/patches/patch-src_pl_plperl_GNUmakefile
@@ -1,6 +1,6 @@
-$NetBSD: patch-src_pl_plperl_GNUmakefile,v 1.2 2011/12/06 20:37:33 adam Exp $
+$NetBSD: patch-src_pl_plperl_GNUmakefile,v 1.3 2012/03/03 14:01:12 adam Exp $
---- src/pl/plperl/GNUmakefile.orig 2011-12-01 21:47:20.000000000 +0000
+--- src/pl/plperl/GNUmakefile.orig 2012-02-23 22:53:36.000000000 +0000
+++ src/pl/plperl/GNUmakefile
@@ -60,7 +60,6 @@ XSUBPPDIR = $(shell $(PERL) -e 'use List
@@ -17,5 +17,5 @@ $NetBSD: patch-src_pl_plperl_GNUmakefile,v 1.2 2011/12/06 20:37:33 adam Exp $
-all: all-lib
+all: perlchunks.h plperl_opmask.h plperl_helpers.h all-lib
- SPI.c: SPI.xs
+ SPI.c: SPI.xs plperl_helpers.h
@if [ x"$(perl_privlibexp)" = x"" ]; then echo "configure switch --with-perl was not specified."; exit 1; fi