Changes 9.1.1:
* Make pg_options_to_table return NULL for an option with no value * Fix memory leak at end of a GiST index scan * Fix explicit reference to pg_temp schema in "CREATE TEMPORARY TABLE"
This commit is contained in:
parent
8a49ae3870
commit
3fadb17562
5 changed files with 16 additions and 11 deletions
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.1.1.1 2011/09/15 08:28:07 adam Exp $
|
||||
# $NetBSD: Makefile,v 1.2 2011/09/27 11:04:50 adam Exp $
|
||||
|
||||
PKGNAME= ${DISTNAME:C/-/91-client-/}
|
||||
COMMENT= PostgreSQL database client programs
|
||||
|
@ -29,8 +29,6 @@ CONFIGURE_ARGS+= --enable-thread-safety
|
|||
. endif
|
||||
.endif
|
||||
|
||||
LIBS.SunOS+= -lintl
|
||||
|
||||
INSTALL_DIRS= src/include
|
||||
INSTALL_DIRS+= src/interfaces
|
||||
INSTALL_DIRS+= src/bin
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.2 2011/09/23 07:35:51 adam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.3 2011/09/27 11:04:50 adam Exp $
|
||||
man/man1/clusterdb.1
|
||||
man/man1/createdb.1
|
||||
man/man1/createlang.1
|
||||
|
@ -929,6 +929,7 @@ share/doc/postgresql/html/release-8-2-19.html
|
|||
share/doc/postgresql/html/release-8-2-2.html
|
||||
share/doc/postgresql/html/release-8-2-20.html
|
||||
share/doc/postgresql/html/release-8-2-21.html
|
||||
share/doc/postgresql/html/release-8-2-22.html
|
||||
share/doc/postgresql/html/release-8-2-3.html
|
||||
share/doc/postgresql/html/release-8-2-4.html
|
||||
share/doc/postgresql/html/release-8-2-5.html
|
||||
|
@ -944,6 +945,7 @@ share/doc/postgresql/html/release-8-3-12.html
|
|||
share/doc/postgresql/html/release-8-3-13.html
|
||||
share/doc/postgresql/html/release-8-3-14.html
|
||||
share/doc/postgresql/html/release-8-3-15.html
|
||||
share/doc/postgresql/html/release-8-3-16.html
|
||||
share/doc/postgresql/html/release-8-3-2.html
|
||||
share/doc/postgresql/html/release-8-3-3.html
|
||||
share/doc/postgresql/html/release-8-3-4.html
|
||||
|
@ -961,12 +963,15 @@ share/doc/postgresql/html/release-8-4-5.html
|
|||
share/doc/postgresql/html/release-8-4-6.html
|
||||
share/doc/postgresql/html/release-8-4-7.html
|
||||
share/doc/postgresql/html/release-8-4-8.html
|
||||
share/doc/postgresql/html/release-8-4-9.html
|
||||
share/doc/postgresql/html/release-8-4.html
|
||||
share/doc/postgresql/html/release-9-0-1.html
|
||||
share/doc/postgresql/html/release-9-0-2.html
|
||||
share/doc/postgresql/html/release-9-0-3.html
|
||||
share/doc/postgresql/html/release-9-0-4.html
|
||||
share/doc/postgresql/html/release-9-0-5.html
|
||||
share/doc/postgresql/html/release-9-0.html
|
||||
share/doc/postgresql/html/release-9-1-1.html
|
||||
share/doc/postgresql/html/release-9-1.html
|
||||
share/doc/postgresql/html/release.html
|
||||
share/doc/postgresql/html/resources.html
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2011/09/15 08:28:29 adam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.2 2011/09/27 11:04:50 adam Exp $
|
||||
bin/postgres
|
||||
bin/postmaster
|
||||
lib/postgresql/ascii_and_mic.so
|
||||
|
@ -43,6 +43,7 @@ share/locale/ja/LC_MESSAGES/plpgsql-9.1.mo
|
|||
share/locale/ja/LC_MESSAGES/postgres-9.1.mo
|
||||
share/locale/ko/LC_MESSAGES/plpgsql-9.1.mo
|
||||
share/locale/pl/LC_MESSAGES/plpgsql-9.1.mo
|
||||
share/locale/pl/LC_MESSAGES/postgres-9.1.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/plpgsql-9.1.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/postgres-9.1.mo
|
||||
share/locale/ro/LC_MESSAGES/plpgsql-9.1.mo
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile.common,v 1.1.1.1 2011/09/15 08:27:38 adam Exp $
|
||||
# $NetBSD: Makefile.common,v 1.2 2011/09/27 11:04:49 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.0
|
||||
DISTNAME= postgresql-9.1.1
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= ${PGSQL_MIRRORS:=source/v${PKGVERSION_NOREV}/}
|
||||
EXTRACT_SUFX= .tar.bz2
|
||||
|
@ -34,6 +34,7 @@ LICENSE= postgresql-license
|
|||
|
||||
CONFLICTS+= postgresql-[0-9]*
|
||||
CONFLICTS+= postgresql[0-8][0-9]-*
|
||||
CONFLICTS+= postgresql9[02-9]-*
|
||||
|
||||
DISTINFO_FILE?= ${.CURDIR}/../../databases/postgresql91/distinfo
|
||||
COMMON_FILESDIR?= ${.CURDIR}/../../databases/postgresql91/files
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2011/09/15 08:27:38 adam Exp $
|
||||
$NetBSD: distinfo,v 1.2 2011/09/27 11:04:49 adam Exp $
|
||||
|
||||
SHA1 (postgresql-9.1.0.tar.bz2) = 25d4999b587fb4e85ed4b541967c5c2d52354ba1
|
||||
RMD160 (postgresql-9.1.0.tar.bz2) = c943430b98b5dac8296fa5b937ef85e03dee08c5
|
||||
Size (postgresql-9.1.0.tar.bz2) = 14788869 bytes
|
||||
SHA1 (postgresql-9.1.1.tar.bz2) = 4df7b6f6b23acdac5ea198e3623796a2b62fc7a4
|
||||
RMD160 (postgresql-9.1.1.tar.bz2) = 294c0e04bebcf07fa88fb5d5e5837c99f736edd3
|
||||
Size (postgresql-9.1.1.tar.bz2) = 14884071 bytes
|
||||
SHA1 (patch-config_perl.m4) = c7e5aaff1c47d2e33df7692a412ef984c77ffcc0
|
||||
SHA1 (patch-configure) = dab79533dac06a79a5aa8439d6b15830d8d2fba7
|
||||
SHA1 (patch-contrib_dblink_Makefile) = 4960ad57d42465fae203870548e4c53f8a32ce04
|
||||
|
|
Loading…
Reference in a new issue