Sun Dec 19 09:53:55 2010 UTC ()
Changes 8.3.13:
* Force the default wal_sync_method to be fdatasync on Linux
* 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 persistent slowdown of autovacuum workers when multiple workers
  remain active for a long time
* 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
* Avoid memory leakage while "ANALYZE"'ing complex index expressions
* Ensure an index that uses a whole-row Var still depends on its
  table
* Do not "inline" a SQL function with multiple OUT parameters
* Behave correctly if ORDER BY, LIMIT, FOR UPDATE, or WITH is
  attached to the VALUES part of INSERT ... VALUES
* Fix constant-folding of COALESCE() expressions
* Fix postmaster crash when connection acceptance (accept() or one of
  the calls made immediately after it) fails, and the postmaster was
  compiled with GSSAPI support
* Fix missed unlink of temporary files when log_temp_files is active
* Add print functionality for InhRelation nodes
* Fix incorrect calculation of distance from a point to a horizontal
  line segment
* Fix PL/pgSQL's handling of "simple" expressions to not fail in
  recursion or error-recovery cases
* Fix PL/Python's handling of set-returning functions
* Fix bug in "contrib/cube"'s GiST picksplit algorithm
* Don't emit "identifier will be truncated" notices in
  "contrib/dblink" except when creating new connections
* Fix potential coredump on missing public key in "contrib/pgcrypto"
* Fix memory leak in "contrib/xml2"'s XPath query functions
* Update time zone data files to tzdata release 2010o for DST law
  changes in Fiji and Samoa; also historical corrections for Hong
  Kong.


(adam)
diff -r1.3 -r1.4 pkgsrc/databases/postgresql83/Makefile
diff -r1.15 -r1.16 pkgsrc/databases/postgresql83/Makefile.common
diff -r1.13 -r1.14 pkgsrc/databases/postgresql83/distinfo
diff -r1.4 -r1.5 pkgsrc/databases/postgresql83/options.mk
diff -r1.4 -r1.5 pkgsrc/databases/postgresql83-adminpack/Makefile
diff -r1.1.1.1 -r1.2 pkgsrc/databases/postgresql83-adminpack/PLIST
diff -r1.18 -r1.19 pkgsrc/databases/postgresql83-client/Makefile
diff -r1.14 -r1.15 pkgsrc/databases/postgresql83-client/PLIST
diff -r1.4 -r1.5 pkgsrc/databases/postgresql83-client/buildlink3.mk
diff -r1.8 -r1.9 pkgsrc/databases/postgresql83-plperl/Makefile
diff -r1.1.1.1 -r1.2 pkgsrc/databases/postgresql83-plperl/PLIST
diff -r1.7 -r1.8 pkgsrc/databases/postgresql83-plpython/Makefile
diff -r1.1.1.1 -r1.2 pkgsrc/databases/postgresql83-plpython/PLIST
diff -r1.4 -r1.5 pkgsrc/databases/postgresql83-pltcl/Makefile
diff -r1.1.1.1 -r1.2 pkgsrc/databases/postgresql83-pltcl/PLIST
diff -r1.2 -r1.3 pkgsrc/databases/postgresql83-server/MESSAGE
diff -r1.12 -r1.13 pkgsrc/databases/postgresql83-server/Makefile
diff -r1.12 -r1.13 pkgsrc/databases/postgresql83-server/PLIST
diff -r1.2 -r1.3 pkgsrc/databases/postgresql83-server/files/pgsql.sh
diff -r1.1.1.1 -r1.2 pkgsrc/databases/postgresql83/patches/patch-an

cvs diff -r1.3 -r1.4 pkgsrc/databases/postgresql83/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql83/Attic/Makefile 2008/06/12 02:14:20 1.3
+++ pkgsrc/databases/postgresql83/Attic/Makefile 2010/12/19 09:53:52 1.4
@@ -1,13 +1,13 @@ @@ -1,13 +1,13 @@
1# $NetBSD: Makefile,v 1.3 2008/06/12 02:14:20 joerg Exp $ 1# $NetBSD: Makefile,v 1.4 2010/12/19 09:53:52 adam Exp $
2 2
3PKGNAME= postgresql83-${BASE_VERS} 3PKGNAME= ${DISTNAME:C/-/83-/}
4COMMENT= Robust, next generation, object-relational DBMS 4COMMENT= Robust, next generation, object-relational DBMS
5 5
6DEPENDS+= postgresql83-client>=${BASE_VERS}:../../databases/postgresql83-client 6DEPENDS+= postgresql83-client>=${PKGVERSION_NOREV}:../../databases/postgresql83-client
7DEPENDS+= postgresql83-server>=${BASE_VERS}:../../databases/postgresql83-server 7DEPENDS+= postgresql83-server>=${PKGVERSION_NOREV}:../../databases/postgresql83-server
8 8
9META_PACKAGE= yes 9META_PACKAGE= yes
10 10
11.include "Makefile.common" 11.include "Makefile.common"
12 12
13.include "../../mk/bsd.pkg.mk" 13.include "../../mk/bsd.pkg.mk"

cvs diff -r1.15 -r1.16 pkgsrc/databases/postgresql83/Attic/Makefile.common (expand / switch to unified diff)

--- pkgsrc/databases/postgresql83/Attic/Makefile.common 2010/12/09 23:46:32 1.15
+++ pkgsrc/databases/postgresql83/Attic/Makefile.common 2010/12/19 09:53:52 1.16
@@ -1,159 +1,115 @@ @@ -1,159 +1,115 @@
1# $NetBSD: Makefile.common,v 1.15 2010/12/09 23:46:32 asau Exp $ 1# $NetBSD: Makefile.common,v 1.16 2010/12/19 09:53:52 adam Exp $
2# 2#
3# used by databases/postgresql83-adminpack/Makefile 3# used by databases/postgresql83-adminpack/Makefile
4# used by databases/postgresql83-client/Makefile 4# used by databases/postgresql83-client/Makefile
5# used by databases/postgresql83-plperl/Makefile 5# used by databases/postgresql83-plperl/Makefile
6# used by databases/postgresql83-plpython/Makefile 6# used by databases/postgresql83-plpython/Makefile
7# used by databases/postgresql83-pltcl/Makefile 7# used by databases/postgresql83-pltcl/Makefile
8# used by databases/postgresql83-server/Makefile 8# used by databases/postgresql83-server/Makefile
9# 9#
10# This Makefile fragment is included by all PostgreSQL packages built from 10# This Makefile fragment is included by all PostgreSQL packages built from
11# the main sources of the PostgreSQL distribution except jdbc-postgresql. 11# the main sources of the PostgreSQL distribution except jdbc-postgresql.
12# 12#
13# The PostgreSQL package naming scheme, aside from the obvious piecewise 13# The PostgreSQL package naming scheme, aside from the obvious piecewise
14# packages, is as follows: 14# packages, is as follows:
15# 
16# <lang>-postgresql client-side interface to PostgreSQL 15# <lang>-postgresql client-side interface to PostgreSQL
17# postgresql-<lang> server-side module for PostgreSQL backend 16# postgresql-<lang> server-side module for PostgreSQL backend
18 17
19.include "../../databases/postgresql83/Makefile.mirrors" 18.include "../../databases/postgresql83/Makefile.mirrors"
20.include "../../databases/postgresql83/options.mk" 
21 19
22DISTNAME?= postgresql-${DIST_VERS} 20DISTNAME= postgresql-8.3.13
23CATEGORIES+= databases 21CATEGORIES= databases
24MASTER_SITES?= ${PGSQL_MIRRORS:=source/v${DIST_VERS}/} 22MASTER_SITES= ${PGSQL_MIRRORS:=source/v${PKGVERSION_NOREV}/}
25EXTRACT_SUFX= .tar.bz2 23EXTRACT_SUFX= .tar.bz2
26 24
27MAINTAINER?= adam@NetBSD.org 25MAINTAINER?= adam@NetBSD.org
28HOMEPAGE?= http://www.postgresql.org/ 26HOMEPAGE= http://www.postgresql.org/
29 27
30CONFLICTS+= postgresql-[0-9]* 28CONFLICTS+= postgresql-[0-9]*
31CONFLICTS+= postgresql73-* 29CONFLICTS+= postgresql7[0-9]-*
32CONFLICTS+= postgresql74-* 30CONFLICTS+= postgresql8[0-2]-*
33CONFLICTS+= postgresql80-* 31CONFLICTS+= postgresql8[4-9]-*
34CONFLICTS+= postgresql81-* 
35CONFLICTS+= postgresql82-* 
36CONFLICTS+= postgresql84-* 
37 32
38DISTINFO_FILE?= ${.CURDIR}/../postgresql83/distinfo 33DISTINFO_FILE?= ${.CURDIR}/../postgresql83/distinfo
39COMMON_FILESDIR?= ${.CURDIR}/../postgresql83/files 34COMMON_FILESDIR?= ${.CURDIR}/../postgresql83/files
40PATCHDIR?= ${.CURDIR}/../postgresql83/patches 35PATCHDIR?= ${.CURDIR}/../postgresql83/patches
41 36
42# Version numbering scheme: 37USE_PKGLOCALEDIR= yes
43# DIST_VERS version number on the postgresql distfile 
44# BASE_VERS pkgsrc-mangled version number (convert pl -> .) 
45# Note: Do not forget jdbc-postgresql83 when updating version 
46DIST_VERS?= 8.3.12 
47BASE_VERS?= ${DIST_VERS} 
48 
49BUILDLINK_API_DEPENDS.postgresql83-client+= postgresql83-client>=${BASE_VERS} 
50 
51GNU_CONFIGURE= yes 
52USE_TOOLS+= bison gmake lex msgfmt 38USE_TOOLS+= bison gmake lex msgfmt
53PKG_SYSCONFSUBDIR= postgresql 39PKG_SYSCONFSUBDIR= postgresql
54 40
55# in 7.4.x/8.0.x, this is done by autoconf stuff which has leading whitespace 
56USE_PKGLOCALEDIR= yes 
57SUBST_CLASSES+= pglocale 
58SUBST_FILES.pglocale= configure config/programs.m4 
59SUBST_STAGE.pglocale= pre-configure 
60SUBST_SED.pglocale= -e 's|\( localedir[ :]*=\).*|\1${PG_LOCALE_DIR}|' 
61 
62.include "../../mk/bsd.prefs.mk" 41.include "../../mk/bsd.prefs.mk"
63 42
64PG_TEMPLATE.SunOS= solaris 43PG_TEMPLATE.SunOS= solaris
65PG_TEMPLATE.IRIX= irix5 44PG_TEMPLATE.IRIX= irix5
66.if !defined(PG_TEMPLATE.${OPSYS}) 45.if !defined(PG_TEMPLATE.${OPSYS})
67PG_TEMPLATE.${OPSYS}= ${LOWER_OPSYS} 46PG_TEMPLATE.${OPSYS}= ${LOWER_OPSYS}
68.endif 47.endif
69 48
70PG_SUBPREFIX= # empty 49GNU_CONFIGURE= yes
71.if empty(PG_SUBPREFIX) 50CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR}
72PG_PREFIX= ${PREFIX} 51CONFIGURE_ARGS+= --datadir=${PREFIX}/share/postgresql
73PLIST_SUBST+= PG_SUBPREFIX= 52CONFIGURE_ARGS+= --with-docdir=${PREFIX}/share/doc/postgresql
74.else 
75PG_PREFIX= ${PREFIX}/${PG_SUBPREFIX} 
76BUILD_DEFS+= PG_SUBPREFIX 
77PLIST_SUBST+= PG_SUBPREFIX=${PG_SUBPREFIX}/ 
78BUILDLINK_PASSTHRU_DIRS+= ${PG_PREFIX} 
79.endif 
80PG_DATA_DIR= ${PG_PREFIX}/share/postgresql 
81PG_DOC_DIR= ${PG_PREFIX}/share/doc/postgresql 
82PG_LOCALE_DIR= ${PG_PREFIX}/${PKGLOCALEDIR}/locale 
83PG_ETC_DIR= ${PKG_SYSCONFDIR:S/^${PREFIX}\//${PG_PREFIX}\//} 
84 
85GNU_CONFIGURE_PREFIX= ${PG_PREFIX} 
86CONFIGURE_ARGS+= --sysconfdir=${PG_ETC_DIR} 
87CONFIGURE_ARGS+= --datadir=${PG_DATA_DIR} 
88CONFIGURE_ARGS+= --with-docdir=${PG_DOC_DIR} 
89CONFIGURE_ARGS+= --with-template=${PG_TEMPLATE.${OPSYS}} 53CONFIGURE_ARGS+= --with-template=${PG_TEMPLATE.${OPSYS}}
90CONFIGURE_ARGS+= --without-readline 
91CONFIGURE_ARGS+= --without-zlib 
92CONFIGURE_ARGS+= --enable-nls 
93 54
 55CONFIGURE_ARGS+= --enable-nls
94CONFIGURE_ARGS+= --without-perl 56CONFIGURE_ARGS+= --without-perl
95CONFIGURE_ARGS+= --without-python 57CONFIGURE_ARGS+= --without-python
 58CONFIGURE_ARGS+= --without-readline
96CONFIGURE_ARGS+= --without-tcl 59CONFIGURE_ARGS+= --without-tcl
 60CONFIGURE_ARGS+= --without-zlib
97 61
98# Enable Bonjour on Mac OS X 62# Enable Bonjour on Mac OS X
99.if ${OPSYS} == "Darwin" 63.if ${OPSYS} == "Darwin"
100CONFIGURE_ARGS+= --with-bonjour 64CONFIGURE_ARGS+= --with-bonjour
101.endif 65.endif
102 66
103# PostgreSQL explicitly forbids any use of -ffast-math 67# PostgreSQL explicitly forbids any use of -ffast-math
104BUILDLINK_TRANSFORM+= rm:-ffast-math 68BUILDLINK_TRANSFORM+= rm:-ffast-math
105 69
106# USE_LIBLTDL is "yes" or "no" depending on whether we're using libltdl 70# USE_LIBLTDL is "yes" or "no" depending on whether we're using libltdl
107# to provide "dlopen" functionality for the PostgreSQL backend. 71# to provide "dlopen" functionality for the PostgreSQL backend.
108.if ${OPSYS} == "Interix" 72.if ${OPSYS} == "Interix"
109USE_LIBLTDL?= yes 73USE_LIBLTDL?= yes
110.endif 74.endif
111USE_LIBLTDL?= no 75USE_LIBLTDL?= no
112 76
113FILES_SUBST+= PG_PREFIX=${PG_PREFIX:Q} 
114 
115.include "../../devel/gettext-lib/buildlink3.mk" 77.include "../../devel/gettext-lib/buildlink3.mk"
116 78
117.if !defined(META_PACKAGE) 79.if !defined(META_PACKAGE)
118post-extract: 80post-extract:
119 cp -f ${COMMON_FILESDIR}/Makefile.custom ${WRKSRC}/src/Makefile.custom 81 cp -f ${COMMON_FILESDIR}/Makefile.custom ${WRKSRC}/src/Makefile.custom
120 cp -f ${COMMON_FILESDIR}/Makefile.libtool ${WRKSRC}/src/Makefile.shlib 82 cp -f ${COMMON_FILESDIR}/Makefile.libtool ${WRKSRC}/src/Makefile.shlib
121. if !empty(USE_LIBLTDL:M[yY][eE][sS]) 83. if !empty(USE_LIBLTDL:M[yY][eE][sS])
122 template=${PG_TEMPLATE.${OPSYS}:Q} 
123 cp -f ${COMMON_FILESDIR}/dynloader-ltdl.h \ 84 cp -f ${COMMON_FILESDIR}/dynloader-ltdl.h \
124 ${WRKSRC}/src/backend/port/dynloader/${PG_TEMPLATE.${OPSYS}:Q}.h 85 ${WRKSRC}/src/backend/port/dynloader/${PG_TEMPLATE.${OPSYS}:Q}.h
125 ${ECHO} "static int dummy = 0;" \ 86 ${ECHO} "static int dummy = 0;" \
126 > ${WRKSRC}/src/backend/port/dynloader/${PG_TEMPLATE.${OPSYS}:Q}.c 87 > ${WRKSRC}/src/backend/port/dynloader/${PG_TEMPLATE.${OPSYS}:Q}.c
127 fi 
128. endif 88. endif
129 touch ${WRKSRC}/src/template/dragonfly 89 touch ${WRKSRC}/src/template/dragonfly
130 cp ${WRKSRC}/src/backend/port/dynloader/freebsd.c \ 90 cp ${WRKSRC}/src/backend/port/dynloader/freebsd.c \
131 ${WRKSRC}/src/backend/port/dynloader/dragonfly.c 91 ${WRKSRC}/src/backend/port/dynloader/dragonfly.c
132 cp ${WRKSRC}/src/backend/port/dynloader/freebsd.h \ 92 cp ${WRKSRC}/src/backend/port/dynloader/freebsd.h \
133 ${WRKSRC}/src/backend/port/dynloader/dragonfly.h 93 ${WRKSRC}/src/backend/port/dynloader/dragonfly.h
134 cp ${WRKSRC}/src/include/port/freebsd.h \ 94 cp ${WRKSRC}/src/include/port/freebsd.h \
135 ${WRKSRC}/src/include/port/dragonfly.h 95 ${WRKSRC}/src/include/port/dragonfly.h
136 cp ${WRKSRC}/src/makefiles/Makefile.freebsd \ 96 cp ${WRKSRC}/src/makefiles/Makefile.freebsd \
137 ${WRKSRC}/src/makefiles/Makefile.dragonfly 97 ${WRKSRC}/src/makefiles/Makefile.dragonfly
138.endif 98.endif
139 99
140# PGSQL_BLCKSZ is the size in bytes of a PostgreSQL disk page or block. 100# PGSQL_BLCKSZ is the size in bytes of a PostgreSQL disk page or block.
141# This also limits the size of a tuple. The valid values are powers 101# This also limits the size of a tuple. The valid values are powers
142# of 2 up to 32768, and the default size is 8196 (hardcoded in the 102# of 2 up to 32768, and the default size is 8196 (hardcoded in the
143# PostgreSQL sources). Please don't change this value unless you know 103# PostgreSQL sources). Please don't change this value unless you know
144# what you are doing. 104# what you are doing.
145BUILD_DEFS+= PGSQL_BLCKSZ 105BUILD_DEFS+= PGSQL_BLCKSZ
146 106
147.if defined(PGSQL_BLCKSZ) 107.if defined(PGSQL_BLCKSZ)
148.PHONY: pgsql-blcksz 108SUBST_CLASSES+= blcksz
149pre-configure: pgsql-blcksz 109SUBST_STAGE.blcksz= pre-configure
150pgsql-blcksz: 110SUBST_MESSAGE.blcksz= Adjusting BLCKSZ.
151 for file in ${WRKSRC}/src/include/pg_config_manual.h; do \ 111SUBST_FILES.blcksz= src/include/pg_config_manual.h
152 ${SED} -e "/^#define[ ]*BLCKSZ[ ]*/s/^\(#define[ ]*BLCKSZ\).*/\1 ${PGSQL_BLCKSZ}/" $$file > $$file.new; \ 112SUBST_SED.blcksz= -e 's,define BLCKSZ.*,define BLCKSZ ${PGSQL_BLCKSZ},'
153 ${MV} -f $$file.new $$file; \ 
154 done 
155.endif 113.endif
156 114
157 115.include "../../databases/postgresql83/options.mk"
158# Help to generate PLIST 
159PRINT_PLIST_AWK+= {$$0 = "$${PG_SUBPREFIX}" $$0;} 

cvs diff -r1.13 -r1.14 pkgsrc/databases/postgresql83/Attic/distinfo (expand / switch to unified diff)

--- pkgsrc/databases/postgresql83/Attic/distinfo 2010/10/07 15:52:40 1.13
+++ pkgsrc/databases/postgresql83/Attic/distinfo 2010/12/19 09:53:52 1.14
@@ -1,15 +1,15 @@ @@ -1,15 +1,15 @@
1$NetBSD: distinfo,v 1.13 2010/10/07 15:52:40 adam Exp $ 1$NetBSD: distinfo,v 1.14 2010/12/19 09:53:52 adam Exp $
2 2
3SHA1 (postgresql-8.3.12.tar.bz2) = 1c78ba53f4a37c8f9d12a4abe37ac47e0049f46a 3SHA1 (postgresql-8.3.13.tar.bz2) = 59236fc88ede4aa756970e53575a50233ebb6c19
4RMD160 (postgresql-8.3.12.tar.bz2) = 00fd0e09b2c300069e616d7f7a116b93b8c2e402 4RMD160 (postgresql-8.3.13.tar.bz2) = 029c77475a3412f10596fd36c85437233597b63c
5Size (postgresql-8.3.12.tar.bz2) = 14273431 bytes 5Size (postgresql-8.3.13.tar.bz2) = 14337117 bytes
6SHA1 (patch-aa) = aeeeaafb38e75d8e8f6639280e997ba4c905b45f 6SHA1 (patch-aa) = aeeeaafb38e75d8e8f6639280e997ba4c905b45f
7SHA1 (patch-ab) = 7bf5635b0b93c3c0d33acd4e122e102c92ce7b76 7SHA1 (patch-ab) = 7bf5635b0b93c3c0d33acd4e122e102c92ce7b76
8SHA1 (patch-ac) = 8e3a7021fdd01810d4ebcbd20002b28164b22279 8SHA1 (patch-ac) = 8e3a7021fdd01810d4ebcbd20002b28164b22279
9SHA1 (patch-ad) = fb75df841bbcc25e840ed9c2fed59232d7189200 9SHA1 (patch-ad) = fb75df841bbcc25e840ed9c2fed59232d7189200
10SHA1 (patch-af) = fcb43276c1f3349f62acfc37ac0bd6ccaae96f29 10SHA1 (patch-af) = fcb43276c1f3349f62acfc37ac0bd6ccaae96f29
11SHA1 (patch-ag) = 402d5d211af99efdfa35677299c97e91e14ed85d 11SHA1 (patch-ag) = 402d5d211af99efdfa35677299c97e91e14ed85d
12SHA1 (patch-ah) = 3640573195f66a46c37d9fca2648d6be39f5593b 12SHA1 (patch-ah) = 3640573195f66a46c37d9fca2648d6be39f5593b
13SHA1 (patch-ai) = a2364b8e1e8a3094e1c5bfb0cad2d0babe0a8841 13SHA1 (patch-ai) = a2364b8e1e8a3094e1c5bfb0cad2d0babe0a8841
14SHA1 (patch-aj) = c389f9b8f39ddb61e58b5fe87ffabb789c71d4e0 14SHA1 (patch-aj) = c389f9b8f39ddb61e58b5fe87ffabb789c71d4e0
15SHA1 (patch-an) = a1e7f421a101cf9ccddcaf3ce17aa1847cf76310 15SHA1 (patch-an) = 5981ccab104dd12f1b9baab8ca6c0ff32f873897

cvs diff -r1.4 -r1.5 pkgsrc/databases/postgresql83/Attic/options.mk (expand / switch to unified diff)

--- pkgsrc/databases/postgresql83/Attic/options.mk 2010/11/03 14:36:39 1.4
+++ pkgsrc/databases/postgresql83/Attic/options.mk 2010/12/19 09:53:52 1.5
@@ -1,37 +1,45 @@ @@ -1,37 +1,45 @@
1# $NetBSD: options.mk,v 1.4 2010/11/03 14:36:39 adam Exp $ 1# $NetBSD: options.mk,v 1.5 2010/12/19 09:53:52 adam Exp $
2 2
3PKG_OPTIONS_VAR= PKG_OPTIONS.postgresql83 3PKG_OPTIONS_VAR= PKG_OPTIONS.postgresql83
4PKG_SUPPORTED_OPTIONS= gssapi krb5 ldap pam 4PKG_SUPPORTED_OPTIONS= gssapi kerberos ldap pam xml
5 5
6.include "../../mk/bsd.options.mk" 6.include "../../mk/bsd.options.mk"
7 7
8### 8###
9### GSSAPI authentication for the PostgreSQL backend. 9### GSSAPI authentication for the PostgreSQL backend.
10### 10###
11.if !empty(PKG_OPTIONS:Mgssapi) 11.if !empty(PKG_OPTIONS:Mgssapi)
12CONFIGURE_ARGS+= --with-gssapi 12CONFIGURE_ARGS+= --with-gssapi
13.endif 13.endif
14 14
15### 15###
16### Kerberos5 authentication for the PostgreSQL backend. 16### Kerberos5 authentication for the PostgreSQL backend.
17### 17###
18.if !empty(PKG_OPTIONS:Mkrb5) 18.if !empty(PKG_OPTIONS:Mkerberos)
19. include "../../mk/krb5.buildlink3.mk" 19. include "../../mk/krb5.buildlink3.mk"
20CONFIGURE_ARGS+= --with-krb5 20CONFIGURE_ARGS+= --with-krb5
21.endif 21.endif
22 22
23### 23###
24### LDAP authentication for the PostgreSQL backend. 24### LDAP authentication for the PostgreSQL backend.
25### 25###
26.if !empty(PKG_OPTIONS:Mldap) 26.if !empty(PKG_OPTIONS:Mldap)
27. include "../../databases/openldap-client/buildlink3.mk" 27. include "../../databases/openldap-client/buildlink3.mk"
28CONFIGURE_ARGS+= --with-ldap 28CONFIGURE_ARGS+= --with-ldap
29.endif 29.endif
30 30
31### 31###
32### PAM authentication for the PostgreSQL backend. 32### PAM authentication for the PostgreSQL backend.
33### 33###
34.if !empty(PKG_OPTIONS:Mpam) 34.if !empty(PKG_OPTIONS:Mpam)
35. include "../../mk/pam.buildlink3.mk" 35. include "../../mk/pam.buildlink3.mk"
36CONFIGURE_ARGS+= --with-pam 36CONFIGURE_ARGS+= --with-pam
37.endif 37.endif
 38
 39###
 40### XML support for the PostgreSQL backend.
 41###
 42.if !empty(PKG_OPTIONS:Mxml)
 43. include "../../textproc/libxml2/buildlink3.mk"
 44CONFIGURE_ARGS+= --with-libxml
 45.endif

cvs diff -r1.4 -r1.5 pkgsrc/databases/postgresql83-adminpack/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql83-adminpack/Attic/Makefile 2010/04/12 09:53:50 1.4
+++ pkgsrc/databases/postgresql83-adminpack/Attic/Makefile 2010/12/19 09:53:53 1.5
@@ -1,22 +1,20 @@ @@ -1,22 +1,20 @@
1# $NetBSD: Makefile,v 1.4 2010/04/12 09:53:50 adam Exp $ 1# $NetBSD: Makefile,v 1.5 2010/12/19 09:53:53 adam Exp $
2 2
3PKGNAME= postgresql83-adminpack-${BASE_VERS} 3PKGNAME= ${DISTNAME:C/-/83-adminpack-/}
4COMMENT= Admin pack module for pgAdmin management 4COMMENT= Admin pack module for pgAdmin management
5 5
6PKG_DESTDIR_SUPPORT= user-destdir 6PKG_DESTDIR_SUPPORT= user-destdir
7 7
8DEPENDS+= postgresql83-server>=${BASE_VERS}:../../databases/postgresql83-server 8DEPENDS+= postgresql83-server>=${PKGVERSION_NOREV}:../../databases/postgresql83-server
9 9
10.include "../../databases/postgresql83/Makefile.common" 10.include "../../databases/postgresql83/Makefile.common"
11 11
12BUILD_DIRS= contrib/adminpack 
13 
14USE_LIBTOOL= yes 12USE_LIBTOOL= yes
15PKG_LIBTOOL= ${PKG_SHLIBTOOL} 13PKG_LIBTOOL= ${PKG_SHLIBTOOL}
16 14
 15BUILD_DIRS= contrib/adminpack
17REQD_DIRS+= ${PG_SUBPREFIX}share/doc/postgresql/contrib 16REQD_DIRS+= ${PG_SUBPREFIX}share/doc/postgresql/contrib
18REQD_DIRS+= ${PG_SUBPREFIX}share/postgresql/contrib 17REQD_DIRS+= ${PG_SUBPREFIX}share/postgresql/contrib
19 18
20.include "../../databases/postgresql83-client/buildlink3.mk" 19.include "../../databases/postgresql83-client/buildlink3.mk"
21 
22.include "../../mk/bsd.pkg.mk" 20.include "../../mk/bsd.pkg.mk"

cvs diff -r1.1.1.1 -r1.2 pkgsrc/databases/postgresql83-adminpack/Attic/PLIST (expand / switch to unified diff)

--- pkgsrc/databases/postgresql83-adminpack/Attic/PLIST 2008/03/04 12:42:13 1.1.1.1
+++ pkgsrc/databases/postgresql83-adminpack/Attic/PLIST 2010/12/19 09:53:53 1.2
@@ -1,4 +1,4 @@ @@ -1,4 +1,4 @@
1@comment $NetBSD: PLIST,v 1.1.1.1 2008/03/04 12:42:13 adam Exp $ 1@comment $NetBSD: PLIST,v 1.2 2010/12/19 09:53:53 adam Exp $
2${PG_SUBPREFIX}lib/postgresql/adminpack.la 2lib/postgresql/adminpack.la
3${PG_SUBPREFIX}share/postgresql/contrib/adminpack.sql 3share/postgresql/contrib/adminpack.sql
4${PG_SUBPREFIX}share/postgresql/contrib/uninstall_adminpack.sql 4share/postgresql/contrib/uninstall_adminpack.sql

cvs diff -r1.18 -r1.19 pkgsrc/databases/postgresql83-client/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql83-client/Attic/Makefile 2010/11/03 14:36:40 1.18
+++ pkgsrc/databases/postgresql83-client/Attic/Makefile 2010/12/19 09:53:53 1.19
@@ -1,16 +1,16 @@ @@ -1,16 +1,16 @@
1# $NetBSD: Makefile,v 1.18 2010/11/03 14:36:40 adam Exp $ 1# $NetBSD: Makefile,v 1.19 2010/12/19 09:53:53 adam Exp $
2 2
3PKGNAME= postgresql83-client-${BASE_VERS} 3PKGNAME= ${DISTNAME:C/-/83-client-/}
4COMMENT= PostgreSQL database client programs 4COMMENT= PostgreSQL database client programs
5 5
6PKG_DESTDIR_SUPPORT= user-destdir 6PKG_DESTDIR_SUPPORT= user-destdir
7 7
8.include "../../databases/postgresql83/Makefile.common" 8.include "../../databases/postgresql83/Makefile.common"
9 9
10USE_TOOLS+= gzip tar 10USE_TOOLS+= gzip tar
11USE_LIBTOOL= yes 11USE_LIBTOOL= yes
12CONFIGURE_ARGS+= --with-openssl 12CONFIGURE_ARGS+= --with-openssl
13CONFIGURE_ARGS+= --with-readline 13CONFIGURE_ARGS+= --with-readline
14CONFIGURE_ARGS+= --with-zlib 14CONFIGURE_ARGS+= --with-zlib
15 15
16# 1. The thread-safety test in ${WRSRC}/src/tools/thread does not pass on 16# 1. The thread-safety test in ${WRSRC}/src/tools/thread does not pass on
@@ -27,77 +27,70 @@ BUILD_DEFS+= PGSQL_THREAD_SAFETY @@ -27,77 +27,70 @@ BUILD_DEFS+= PGSQL_THREAD_SAFETY
27. include "../../mk/pthread.buildlink3.mk" 27. include "../../mk/pthread.buildlink3.mk"
28. if (${PTHREAD_TYPE} == "native") 28. if (${PTHREAD_TYPE} == "native")
29CONFIGURE_ARGS+= --enable-thread-safety 29CONFIGURE_ARGS+= --enable-thread-safety
30. endif 30. endif
31.endif 31.endif
32 32
33LIBS.SunOS+= -lintl 33LIBS.SunOS+= -lintl
34 34
35INSTALL_DIRS= src/include 35INSTALL_DIRS= src/include
36INSTALL_DIRS+= src/interfaces 36INSTALL_DIRS+= src/interfaces
37INSTALL_DIRS+= src/bin 37INSTALL_DIRS+= src/bin
38INSTALL_DIRS+= src/port 38INSTALL_DIRS+= src/port
39INSTALL_DIRS+= doc 39INSTALL_DIRS+= doc
40 
41BUILD_DIRS= ${INSTALL_DIRS} 40BUILD_DIRS= ${INSTALL_DIRS}
42 
43# Without this, the Darwin build fails (related to -bundle_loader). 41# Without this, the Darwin build fails (related to -bundle_loader).
44BUILD_DIRS+= src/backend 42BUILD_DIRS+= src/backend
45 43
46.for _file_ in pg_service.conf psqlrc 44.for f in pg_service.conf psqlrc
47CONF_FILES+= ${PG_DATA_DIR}/${_file_}.sample ${PG_ETC_DIR}/${_file_} 45CONF_FILES+= ${PREFIX}/share/postgresql/${f}.sample ${PKG_SYSCONFDIR}/${f}
48.endfor 46.endfor
49 47
50# XXX work around core dumps with the native libedit 48# XXX work around core dumps with the native libedit
51USE_GNU_READLINE= yes 49USE_GNU_READLINE= yes
52 50
53.include "../../devel/readline/buildlink3.mk" 51.include "../../devel/readline/buildlink3.mk"
54.include "../../devel/zlib/buildlink3.mk" 52.include "../../devel/zlib/buildlink3.mk"
55.include "../../security/openssl/buildlink3.mk" 53.include "../../security/openssl/buildlink3.mk"
56 54
57SUBST_CLASSES+= pgxs 55SUBST_CLASSES+= pgxs
58SUBST_STAGE.pgxs= post-build 56SUBST_STAGE.pgxs= post-build
59SUBST_MESSAGE.pgxs= Fixing workdir tools references in pgxs Makefile 57SUBST_MESSAGE.pgxs= Fixing workdir tools references in pgxs Makefile
60SUBST_FILES.pgxs= src/Makefile.global 58SUBST_FILES.pgxs= src/Makefile.global
61SUBST_SED.pgxs= -e 's,${WRKDIR}/.tools,${PREFIX},' 59SUBST_SED.pgxs= -e 's,${WRKDIR}/.tools,${PREFIX},'
62SUBST_SED.pgxs+= -e 's,${WRKDIR}/.wrapper,${PREFIX},' 60SUBST_SED.pgxs+= -e 's,${WRKDIR}/.wrapper,${PREFIX},'
63SUBST_SED.pgxs+= -e 's,${WRKSRC},/dev/null,' 61SUBST_SED.pgxs+= -e 's,${WRKSRC},/dev/null,'
64 62
65INSTALLATION_DIRS+= ${PG_SUBPREFIX}lib/postgresql/pgxs 63INSTALLATION_DIRS+= lib/postgresql/pgxs
66INSTALLATION_DIRS+= ${PG_SUBPREFIX}lib/postgresql/pgxs/config 64INSTALLATION_DIRS+= lib/postgresql/pgxs/config
67INSTALLATION_DIRS+= ${PG_SUBPREFIX}lib/postgresql/pgxs/src 65INSTALLATION_DIRS+= lib/postgresql/pgxs/src
68INSTALLATION_DIRS+= ${PG_SUBPREFIX}lib/postgresql/pgxs/src/makefiles 66INSTALLATION_DIRS+= lib/postgresql/pgxs/src/makefiles
69 67
70DEST_PG_PGXS= ${DESTDIR}${PG_PREFIX}/lib/postgresql/pgxs 68DEST_PGXS= ${DESTDIR}${PREFIX}/lib/postgresql/pgxs
71PG_PGXS_FILES= config/install-sh config/mkinstalldirs 69PGXS_FILES= config/install-sh config/mkinstalldirs
72PG_PGXS_FILES+= src/makefiles/pgxs.mk src/Makefile.global 70PGXS_FILES+= src/makefiles/pgxs.mk src/Makefile.global
73PG_PGXS_FILES+= src/Makefile.port src/Makefile.shlib 71PGXS_FILES+= src/Makefile.port src/Makefile.shlib
74PG_PGXS_FILES+= src/nls-global.mk 72PGXS_FILES+= src/nls-global.mk
75 73
76# On Solaris, avoid conflicts between "${SSLBASE}/include/openssl/des.h" 74# On Solaris, avoid conflicts between "${SSLBASE}/include/openssl/des.h"
77# and "/usr/include/crypt.h" -- we want the definitions in the former. 75# and "/usr/include/crypt.h" -- we want the definitions in the former.
78.if ${OPSYS} == "SunOS" 76.if ${OPSYS} == "SunOS"
79post-wrapper: 77post-wrapper:
80 touch ${BUILDLINK_DIR}/include/crypt.h 78 touch ${BUILDLINK_DIR}/include/crypt.h
81.endif 79.endif
82 80
83pre-build: 81pre-build:
84 ${RUN} ${_ULIMIT_CMD} \ 82 ${RUN} ${_ULIMIT_CMD} \
85 cd ${WRKSRC}/src/backend && \ 83 cd ${WRKSRC}/src/backend && \
86 env ${MAKE_ENV} ${MAKE_PROGRAM} ${BUILD_MAKE_FLAGS} \ 84 env ${MAKE_ENV} ${MAKE_PROGRAM} ${BUILD_MAKE_FLAGS} \
87 ../../src/include/parser/parse.h \ 85 ../../src/include/parser/parse.h \
88 ../../src/include/utils/fmgroids.h 86 ../../src/include/utils/fmgroids.h
89 87
90post-install: 88post-install:
91 cd ${WRKSRC}/doc; for file in \ 89 set -e; cd ${WRKSRC}/doc; for file in FAQ*; do \
92 FAQ* KNOWN_BUGS MISSING_FEATURES README.* TODO \ 90 ${INSTALL_DATA} $$file ${DESTDIR}${PREFIX}/share/doc/postgresql/$$file; \
93 bug.template; \ 
94 do \ 
95 ${INSTALL_DATA} $$file ${DESTDIR}${PG_DOC_DIR}/$$file; \ 
96 done 91 done
97 for file in ${PG_PGXS_FILES}; do \ 92 set -e; for file in ${PGXS_FILES}; do \
98 ${INSTALL_DATA} ${WRKSRC}/$$file ${DEST_PG_PGXS}/$$file;\ 93 ${INSTALL_DATA} ${WRKSRC}/$$file ${DEST_PGXS}/$$file; \
99 done 94 done
100 cp -R ${WRKSRC}/doc/TODO.detail ${DESTDIR}${PG_DOC_DIR} 
101 chown -R ${DOCOWN}:${DOCGRP} ${DESTDIR}${PG_DOC_DIR}/TODO.detail 
102 95
103.include "../../mk/bsd.pkg.mk" 96.include "../../mk/bsd.pkg.mk"

cvs diff -r1.14 -r1.15 pkgsrc/databases/postgresql83-client/Attic/PLIST (expand / switch to unified diff)

--- pkgsrc/databases/postgresql83-client/Attic/PLIST 2010/10/07 15:52:40 1.14
+++ pkgsrc/databases/postgresql83-client/Attic/PLIST 2010/12/19 09:53:53 1.15
@@ -1,1783 +1,1771 @@ @@ -1,1783 +1,1771 @@
1@comment $NetBSD: PLIST,v 1.14 2010/10/07 15:52:40 adam Exp $ 1@comment $NetBSD: PLIST,v 1.15 2010/12/19 09:53:53 adam Exp $
2${PG_SUBPREFIX}bin/clusterdb 2bin/clusterdb
3${PG_SUBPREFIX}bin/createdb 3bin/createdb
4${PG_SUBPREFIX}bin/createlang 4bin/createlang
5${PG_SUBPREFIX}bin/createuser 5bin/createuser
6${PG_SUBPREFIX}bin/dropdb 6bin/dropdb
7${PG_SUBPREFIX}bin/droplang 7bin/droplang
8${PG_SUBPREFIX}bin/dropuser 8bin/dropuser
9${PG_SUBPREFIX}bin/ecpg 9bin/ecpg
10${PG_SUBPREFIX}bin/initdb 10bin/initdb
11${PG_SUBPREFIX}bin/ipcclean 11bin/ipcclean
12${PG_SUBPREFIX}bin/pg_config 12bin/pg_config
13${PG_SUBPREFIX}bin/pg_controldata 13bin/pg_controldata
14${PG_SUBPREFIX}bin/pg_ctl 14bin/pg_ctl
15${PG_SUBPREFIX}bin/pg_dump 15bin/pg_dump
16${PG_SUBPREFIX}bin/pg_dumpall 16bin/pg_dumpall
17${PG_SUBPREFIX}bin/pg_resetxlog 17bin/pg_resetxlog
18${PG_SUBPREFIX}bin/pg_restore 18bin/pg_restore
19${PG_SUBPREFIX}bin/psql 19bin/psql
20${PG_SUBPREFIX}bin/reindexdb 20bin/reindexdb
21${PG_SUBPREFIX}bin/vacuumdb 21bin/vacuumdb
22${PG_SUBPREFIX}include/ecpg_config.h 22include/ecpg_config.h
23${PG_SUBPREFIX}include/ecpg_informix.h 23include/ecpg_informix.h
24${PG_SUBPREFIX}include/ecpgerrno.h 24include/ecpgerrno.h
25${PG_SUBPREFIX}include/ecpglib.h 25include/ecpglib.h
26${PG_SUBPREFIX}include/ecpgtype.h 26include/ecpgtype.h
27${PG_SUBPREFIX}include/libpq-fe.h 27include/libpq-fe.h
28${PG_SUBPREFIX}include/libpq/libpq-fs.h 28include/libpq/libpq-fs.h
29${PG_SUBPREFIX}include/pg_config.h 29include/pg_config.h
30${PG_SUBPREFIX}include/pg_config_manual.h 30include/pg_config_manual.h
31${PG_SUBPREFIX}include/pg_config_os.h 31include/pg_config_os.h
32${PG_SUBPREFIX}include/pgtypes_date.h 32include/pgtypes_date.h
33${PG_SUBPREFIX}include/pgtypes_error.h 33include/pgtypes_error.h
34${PG_SUBPREFIX}include/pgtypes_interval.h 34include/pgtypes_interval.h
35${PG_SUBPREFIX}include/pgtypes_numeric.h 35include/pgtypes_numeric.h
36${PG_SUBPREFIX}include/pgtypes_timestamp.h 36include/pgtypes_timestamp.h
37${PG_SUBPREFIX}include/postgres_ext.h 37include/postgres_ext.h
38${PG_SUBPREFIX}include/postgresql/informix/esql/datetime.h 38include/postgresql/informix/esql/datetime.h
39${PG_SUBPREFIX}include/postgresql/informix/esql/decimal.h 39include/postgresql/informix/esql/decimal.h
40${PG_SUBPREFIX}include/postgresql/informix/esql/sqlda.h 40include/postgresql/informix/esql/sqlda.h
41${PG_SUBPREFIX}include/postgresql/informix/esql/sqltypes.h 41include/postgresql/informix/esql/sqltypes.h
42${PG_SUBPREFIX}include/postgresql/internal/c.h 42include/postgresql/internal/c.h
43${PG_SUBPREFIX}include/postgresql/internal/libpq-int.h 43include/postgresql/internal/libpq-int.h
44${PG_SUBPREFIX}include/postgresql/internal/libpq/pqcomm.h 44include/postgresql/internal/libpq/pqcomm.h
45${PG_SUBPREFIX}include/postgresql/internal/port.h 45include/postgresql/internal/port.h
46${PG_SUBPREFIX}include/postgresql/internal/postgres_fe.h 46include/postgresql/internal/postgres_fe.h
47${PG_SUBPREFIX}include/postgresql/internal/pqexpbuffer.h 47include/postgresql/internal/pqexpbuffer.h
48${PG_SUBPREFIX}include/postgresql/server/access/attnum.h 48include/postgresql/server/access/attnum.h
49${PG_SUBPREFIX}include/postgresql/server/access/clog.h 49include/postgresql/server/access/clog.h
50${PG_SUBPREFIX}include/postgresql/server/access/genam.h 50include/postgresql/server/access/genam.h
51${PG_SUBPREFIX}include/postgresql/server/access/gin.h 51include/postgresql/server/access/gin.h
52${PG_SUBPREFIX}include/postgresql/server/access/gist.h 52include/postgresql/server/access/gist.h
53${PG_SUBPREFIX}include/postgresql/server/access/gist_private.h 53include/postgresql/server/access/gist_private.h
54${PG_SUBPREFIX}include/postgresql/server/access/gistscan.h 54include/postgresql/server/access/gistscan.h
55${PG_SUBPREFIX}include/postgresql/server/access/hash.h 55include/postgresql/server/access/hash.h
56${PG_SUBPREFIX}include/postgresql/server/access/heapam.h 56include/postgresql/server/access/heapam.h
57${PG_SUBPREFIX}include/postgresql/server/access/hio.h 57include/postgresql/server/access/hio.h
58${PG_SUBPREFIX}include/postgresql/server/access/htup.h 58include/postgresql/server/access/htup.h
59${PG_SUBPREFIX}include/postgresql/server/access/itup.h 59include/postgresql/server/access/itup.h
60${PG_SUBPREFIX}include/postgresql/server/access/multixact.h 60include/postgresql/server/access/multixact.h
61${PG_SUBPREFIX}include/postgresql/server/access/nbtree.h 61include/postgresql/server/access/nbtree.h
62${PG_SUBPREFIX}include/postgresql/server/access/printtup.h 62include/postgresql/server/access/printtup.h
63${PG_SUBPREFIX}include/postgresql/server/access/reloptions.h 63include/postgresql/server/access/reloptions.h
64${PG_SUBPREFIX}include/postgresql/server/access/relscan.h 64include/postgresql/server/access/relscan.h
65${PG_SUBPREFIX}include/postgresql/server/access/rewriteheap.h 65include/postgresql/server/access/rewriteheap.h
66${PG_SUBPREFIX}include/postgresql/server/access/rmgr.h 66include/postgresql/server/access/rmgr.h
67${PG_SUBPREFIX}include/postgresql/server/access/sdir.h 67include/postgresql/server/access/sdir.h
68${PG_SUBPREFIX}include/postgresql/server/access/skey.h 68include/postgresql/server/access/skey.h
69${PG_SUBPREFIX}include/postgresql/server/access/slru.h 69include/postgresql/server/access/slru.h
70${PG_SUBPREFIX}include/postgresql/server/access/subtrans.h 70include/postgresql/server/access/subtrans.h
71${PG_SUBPREFIX}include/postgresql/server/access/transam.h 71include/postgresql/server/access/transam.h
72${PG_SUBPREFIX}include/postgresql/server/access/tupdesc.h 72include/postgresql/server/access/tupdesc.h
73${PG_SUBPREFIX}include/postgresql/server/access/tupmacs.h 73include/postgresql/server/access/tupmacs.h
74${PG_SUBPREFIX}include/postgresql/server/access/tuptoaster.h 74include/postgresql/server/access/tuptoaster.h
75${PG_SUBPREFIX}include/postgresql/server/access/twophase.h 75include/postgresql/server/access/twophase.h
76${PG_SUBPREFIX}include/postgresql/server/access/twophase_rmgr.h 76include/postgresql/server/access/twophase_rmgr.h
77${PG_SUBPREFIX}include/postgresql/server/access/valid.h 77include/postgresql/server/access/valid.h
78${PG_SUBPREFIX}include/postgresql/server/access/xact.h 78include/postgresql/server/access/xact.h
79${PG_SUBPREFIX}include/postgresql/server/access/xlog.h 79include/postgresql/server/access/xlog.h
80${PG_SUBPREFIX}include/postgresql/server/access/xlog_internal.h 80include/postgresql/server/access/xlog_internal.h
81${PG_SUBPREFIX}include/postgresql/server/access/xlogdefs.h 81include/postgresql/server/access/xlogdefs.h
82${PG_SUBPREFIX}include/postgresql/server/access/xlogutils.h 82include/postgresql/server/access/xlogutils.h
83${PG_SUBPREFIX}include/postgresql/server/bootstrap/bootstrap.h 83include/postgresql/server/bootstrap/bootstrap.h
84${PG_SUBPREFIX}include/postgresql/server/c.h 84include/postgresql/server/c.h
85${PG_SUBPREFIX}include/postgresql/server/catalog/catalog.h 85include/postgresql/server/catalog/catalog.h
86${PG_SUBPREFIX}include/postgresql/server/catalog/catversion.h 86include/postgresql/server/catalog/catversion.h
87${PG_SUBPREFIX}include/postgresql/server/catalog/dependency.h 87include/postgresql/server/catalog/dependency.h
88${PG_SUBPREFIX}include/postgresql/server/catalog/heap.h 88include/postgresql/server/catalog/heap.h
89${PG_SUBPREFIX}include/postgresql/server/catalog/index.h 89include/postgresql/server/catalog/index.h
90${PG_SUBPREFIX}include/postgresql/server/catalog/indexing.h 90include/postgresql/server/catalog/indexing.h
91${PG_SUBPREFIX}include/postgresql/server/catalog/namespace.h 91include/postgresql/server/catalog/namespace.h
92${PG_SUBPREFIX}include/postgresql/server/catalog/pg_aggregate.h 92include/postgresql/server/catalog/pg_aggregate.h
93${PG_SUBPREFIX}include/postgresql/server/catalog/pg_am.h 93include/postgresql/server/catalog/pg_am.h
94${PG_SUBPREFIX}include/postgresql/server/catalog/pg_amop.h 94include/postgresql/server/catalog/pg_amop.h
95${PG_SUBPREFIX}include/postgresql/server/catalog/pg_amproc.h 95include/postgresql/server/catalog/pg_amproc.h
96${PG_SUBPREFIX}include/postgresql/server/catalog/pg_attrdef.h 96include/postgresql/server/catalog/pg_attrdef.h
97${PG_SUBPREFIX}include/postgresql/server/catalog/pg_attribute.h 97include/postgresql/server/catalog/pg_attribute.h
98${PG_SUBPREFIX}include/postgresql/server/catalog/pg_auth_members.h 98include/postgresql/server/catalog/pg_auth_members.h
99${PG_SUBPREFIX}include/postgresql/server/catalog/pg_authid.h 99include/postgresql/server/catalog/pg_authid.h
100${PG_SUBPREFIX}include/postgresql/server/catalog/pg_autovacuum.h 100include/postgresql/server/catalog/pg_autovacuum.h
101${PG_SUBPREFIX}include/postgresql/server/catalog/pg_cast.h 101include/postgresql/server/catalog/pg_cast.h
102${PG_SUBPREFIX}include/postgresql/server/catalog/pg_class.h 102include/postgresql/server/catalog/pg_class.h
103${PG_SUBPREFIX}include/postgresql/server/catalog/pg_constraint.h 103include/postgresql/server/catalog/pg_constraint.h
104${PG_SUBPREFIX}include/postgresql/server/catalog/pg_control.h 104include/postgresql/server/catalog/pg_control.h
105${PG_SUBPREFIX}include/postgresql/server/catalog/pg_conversion.h 105include/postgresql/server/catalog/pg_conversion.h
106${PG_SUBPREFIX}include/postgresql/server/catalog/pg_database.h 106include/postgresql/server/catalog/pg_database.h
107${PG_SUBPREFIX}include/postgresql/server/catalog/pg_depend.h 107include/postgresql/server/catalog/pg_depend.h
108${PG_SUBPREFIX}include/postgresql/server/catalog/pg_description.h 108include/postgresql/server/catalog/pg_description.h
109${PG_SUBPREFIX}include/postgresql/server/catalog/pg_enum.h 109include/postgresql/server/catalog/pg_enum.h
110${PG_SUBPREFIX}include/postgresql/server/catalog/pg_index.h 110include/postgresql/server/catalog/pg_index.h
111${PG_SUBPREFIX}include/postgresql/server/catalog/pg_inherits.h 111include/postgresql/server/catalog/pg_inherits.h
112${PG_SUBPREFIX}include/postgresql/server/catalog/pg_language.h 112include/postgresql/server/catalog/pg_language.h
113${PG_SUBPREFIX}include/postgresql/server/catalog/pg_largeobject.h 113include/postgresql/server/catalog/pg_largeobject.h
114${PG_SUBPREFIX}include/postgresql/server/catalog/pg_listener.h 114include/postgresql/server/catalog/pg_listener.h
115${PG_SUBPREFIX}include/postgresql/server/catalog/pg_namespace.h 115include/postgresql/server/catalog/pg_namespace.h
116${PG_SUBPREFIX}include/postgresql/server/catalog/pg_opclass.h 116include/postgresql/server/catalog/pg_opclass.h
117${PG_SUBPREFIX}include/postgresql/server/catalog/pg_operator.h 117include/postgresql/server/catalog/pg_operator.h
118${PG_SUBPREFIX}include/postgresql/server/catalog/pg_opfamily.h 118include/postgresql/server/catalog/pg_opfamily.h
119${PG_SUBPREFIX}include/postgresql/server/catalog/pg_pltemplate.h 119include/postgresql/server/catalog/pg_pltemplate.h
120${PG_SUBPREFIX}include/postgresql/server/catalog/pg_proc.h 120include/postgresql/server/catalog/pg_proc.h
121${PG_SUBPREFIX}include/postgresql/server/catalog/pg_rewrite.h 121include/postgresql/server/catalog/pg_rewrite.h
122${PG_SUBPREFIX}include/postgresql/server/catalog/pg_shdepend.h 122include/postgresql/server/catalog/pg_shdepend.h
123${PG_SUBPREFIX}include/postgresql/server/catalog/pg_shdescription.h 123include/postgresql/server/catalog/pg_shdescription.h
124${PG_SUBPREFIX}include/postgresql/server/catalog/pg_statistic.h 124include/postgresql/server/catalog/pg_statistic.h
125${PG_SUBPREFIX}include/postgresql/server/catalog/pg_tablespace.h 125include/postgresql/server/catalog/pg_tablespace.h
126${PG_SUBPREFIX}include/postgresql/server/catalog/pg_trigger.h 126include/postgresql/server/catalog/pg_trigger.h
127${PG_SUBPREFIX}include/postgresql/server/catalog/pg_ts_config.h 127include/postgresql/server/catalog/pg_ts_config.h
128${PG_SUBPREFIX}include/postgresql/server/catalog/pg_ts_config_map.h 128include/postgresql/server/catalog/pg_ts_config_map.h
129${PG_SUBPREFIX}include/postgresql/server/catalog/pg_ts_dict.h 129include/postgresql/server/catalog/pg_ts_dict.h
130${PG_SUBPREFIX}include/postgresql/server/catalog/pg_ts_parser.h 130include/postgresql/server/catalog/pg_ts_parser.h
131${PG_SUBPREFIX}include/postgresql/server/catalog/pg_ts_template.h 131include/postgresql/server/catalog/pg_ts_template.h
132${PG_SUBPREFIX}include/postgresql/server/catalog/pg_type.h 132include/postgresql/server/catalog/pg_type.h
133${PG_SUBPREFIX}include/postgresql/server/catalog/toasting.h 133include/postgresql/server/catalog/toasting.h
134${PG_SUBPREFIX}include/postgresql/server/commands/alter.h 134include/postgresql/server/commands/alter.h
135${PG_SUBPREFIX}include/postgresql/server/commands/async.h 135include/postgresql/server/commands/async.h
136${PG_SUBPREFIX}include/postgresql/server/commands/cluster.h 136include/postgresql/server/commands/cluster.h
137${PG_SUBPREFIX}include/postgresql/server/commands/comment.h 137include/postgresql/server/commands/comment.h
138${PG_SUBPREFIX}include/postgresql/server/commands/conversioncmds.h 138include/postgresql/server/commands/conversioncmds.h
139${PG_SUBPREFIX}include/postgresql/server/commands/copy.h 139include/postgresql/server/commands/copy.h
140${PG_SUBPREFIX}include/postgresql/server/commands/dbcommands.h 140include/postgresql/server/commands/dbcommands.h
141${PG_SUBPREFIX}include/postgresql/server/commands/defrem.h 141include/postgresql/server/commands/defrem.h
142${PG_SUBPREFIX}include/postgresql/server/commands/discard.h 142include/postgresql/server/commands/discard.h
143${PG_SUBPREFIX}include/postgresql/server/commands/explain.h 143include/postgresql/server/commands/explain.h
144${PG_SUBPREFIX}include/postgresql/server/commands/lockcmds.h 144include/postgresql/server/commands/lockcmds.h
145${PG_SUBPREFIX}include/postgresql/server/commands/portalcmds.h 145include/postgresql/server/commands/portalcmds.h
146${PG_SUBPREFIX}include/postgresql/server/commands/prepare.h 146include/postgresql/server/commands/prepare.h
147${PG_SUBPREFIX}include/postgresql/server/commands/proclang.h 147include/postgresql/server/commands/proclang.h
148${PG_SUBPREFIX}include/postgresql/server/commands/schemacmds.h 148include/postgresql/server/commands/schemacmds.h
149${PG_SUBPREFIX}include/postgresql/server/commands/sequence.h 149include/postgresql/server/commands/sequence.h
150${PG_SUBPREFIX}include/postgresql/server/commands/tablecmds.h 150include/postgresql/server/commands/tablecmds.h
151${PG_SUBPREFIX}include/postgresql/server/commands/tablespace.h 151include/postgresql/server/commands/tablespace.h
152${PG_SUBPREFIX}include/postgresql/server/commands/trigger.h 152include/postgresql/server/commands/trigger.h
153${PG_SUBPREFIX}include/postgresql/server/commands/typecmds.h 153include/postgresql/server/commands/typecmds.h
154${PG_SUBPREFIX}include/postgresql/server/commands/user.h 154include/postgresql/server/commands/user.h
155${PG_SUBPREFIX}include/postgresql/server/commands/vacuum.h 155include/postgresql/server/commands/vacuum.h
156${PG_SUBPREFIX}include/postgresql/server/commands/variable.h 156include/postgresql/server/commands/variable.h
157${PG_SUBPREFIX}include/postgresql/server/commands/version.h 157include/postgresql/server/commands/version.h
158${PG_SUBPREFIX}include/postgresql/server/commands/view.h 158include/postgresql/server/commands/view.h
159${PG_SUBPREFIX}include/postgresql/server/dynloader.h 159include/postgresql/server/dynloader.h
160${PG_SUBPREFIX}include/postgresql/server/executor/execdebug.h 160include/postgresql/server/executor/execdebug.h
161${PG_SUBPREFIX}include/postgresql/server/executor/execdefs.h 161include/postgresql/server/executor/execdefs.h
162${PG_SUBPREFIX}include/postgresql/server/executor/execdesc.h 162include/postgresql/server/executor/execdesc.h
163${PG_SUBPREFIX}include/postgresql/server/executor/executor.h 163include/postgresql/server/executor/executor.h
164${PG_SUBPREFIX}include/postgresql/server/executor/functions.h 164include/postgresql/server/executor/functions.h
165${PG_SUBPREFIX}include/postgresql/server/executor/hashjoin.h 165include/postgresql/server/executor/hashjoin.h
166${PG_SUBPREFIX}include/postgresql/server/executor/instrument.h 166include/postgresql/server/executor/instrument.h
167${PG_SUBPREFIX}include/postgresql/server/executor/nodeAgg.h 167include/postgresql/server/executor/nodeAgg.h
168${PG_SUBPREFIX}include/postgresql/server/executor/nodeAppend.h 168include/postgresql/server/executor/nodeAppend.h
169${PG_SUBPREFIX}include/postgresql/server/executor/nodeBitmapAnd.h 169include/postgresql/server/executor/nodeBitmapAnd.h
170${PG_SUBPREFIX}include/postgresql/server/executor/nodeBitmapHeapscan.h 170include/postgresql/server/executor/nodeBitmapHeapscan.h
171${PG_SUBPREFIX}include/postgresql/server/executor/nodeBitmapIndexscan.h 171include/postgresql/server/executor/nodeBitmapIndexscan.h
172${PG_SUBPREFIX}include/postgresql/server/executor/nodeBitmapOr.h 172include/postgresql/server/executor/nodeBitmapOr.h
173${PG_SUBPREFIX}include/postgresql/server/executor/nodeFunctionscan.h 173include/postgresql/server/executor/nodeFunctionscan.h
174${PG_SUBPREFIX}include/postgresql/server/executor/nodeGroup.h 174include/postgresql/server/executor/nodeGroup.h
175${PG_SUBPREFIX}include/postgresql/server/executor/nodeHash.h 175include/postgresql/server/executor/nodeHash.h
176${PG_SUBPREFIX}include/postgresql/server/executor/nodeHashjoin.h 176include/postgresql/server/executor/nodeHashjoin.h
177${PG_SUBPREFIX}include/postgresql/server/executor/nodeIndexscan.h 177include/postgresql/server/executor/nodeIndexscan.h
178${PG_SUBPREFIX}include/postgresql/server/executor/nodeLimit.h 178include/postgresql/server/executor/nodeLimit.h
179${PG_SUBPREFIX}include/postgresql/server/executor/nodeMaterial.h 179include/postgresql/server/executor/nodeMaterial.h
180${PG_SUBPREFIX}include/postgresql/server/executor/nodeMergejoin.h 180include/postgresql/server/executor/nodeMergejoin.h
181${PG_SUBPREFIX}include/postgresql/server/executor/nodeNestloop.h 181include/postgresql/server/executor/nodeNestloop.h
182${PG_SUBPREFIX}include/postgresql/server/executor/nodeResult.h 182include/postgresql/server/executor/nodeResult.h
183${PG_SUBPREFIX}include/postgresql/server/executor/nodeSeqscan.h 183include/postgresql/server/executor/nodeSeqscan.h
184${PG_SUBPREFIX}include/postgresql/server/executor/nodeSetOp.h 184include/postgresql/server/executor/nodeSetOp.h
185${PG_SUBPREFIX}include/postgresql/server/executor/nodeSort.h 185include/postgresql/server/executor/nodeSort.h
186${PG_SUBPREFIX}include/postgresql/server/executor/nodeSubplan.h 186include/postgresql/server/executor/nodeSubplan.h
187${PG_SUBPREFIX}include/postgresql/server/executor/nodeSubqueryscan.h 187include/postgresql/server/executor/nodeSubqueryscan.h
188${PG_SUBPREFIX}include/postgresql/server/executor/nodeTidscan.h 188include/postgresql/server/executor/nodeTidscan.h
189${PG_SUBPREFIX}include/postgresql/server/executor/nodeUnique.h 189include/postgresql/server/executor/nodeUnique.h
190${PG_SUBPREFIX}include/postgresql/server/executor/nodeValuesscan.h 190include/postgresql/server/executor/nodeValuesscan.h
191${PG_SUBPREFIX}include/postgresql/server/executor/spi.h 191include/postgresql/server/executor/spi.h
192${PG_SUBPREFIX}include/postgresql/server/executor/spi_priv.h 192include/postgresql/server/executor/spi_priv.h
193${PG_SUBPREFIX}include/postgresql/server/executor/tstoreReceiver.h 193include/postgresql/server/executor/tstoreReceiver.h
194${PG_SUBPREFIX}include/postgresql/server/executor/tuptable.h 194include/postgresql/server/executor/tuptable.h
195${PG_SUBPREFIX}include/postgresql/server/fmgr.h 195include/postgresql/server/fmgr.h
196${PG_SUBPREFIX}include/postgresql/server/funcapi.h 196include/postgresql/server/funcapi.h
197${PG_SUBPREFIX}include/postgresql/server/getaddrinfo.h 197include/postgresql/server/getaddrinfo.h
198${PG_SUBPREFIX}include/postgresql/server/getopt_long.h 198include/postgresql/server/getopt_long.h
199${PG_SUBPREFIX}include/postgresql/server/lib/dllist.h 199include/postgresql/server/lib/dllist.h
200${PG_SUBPREFIX}include/postgresql/server/lib/stringinfo.h 200include/postgresql/server/lib/stringinfo.h
201${PG_SUBPREFIX}include/postgresql/server/libpq/auth.h 201include/postgresql/server/libpq/auth.h
202${PG_SUBPREFIX}include/postgresql/server/libpq/be-fsstubs.h 202include/postgresql/server/libpq/be-fsstubs.h
203${PG_SUBPREFIX}include/postgresql/server/libpq/crypt.h 203include/postgresql/server/libpq/crypt.h
204${PG_SUBPREFIX}include/postgresql/server/libpq/hba.h 204include/postgresql/server/libpq/hba.h
205${PG_SUBPREFIX}include/postgresql/server/libpq/ip.h 205include/postgresql/server/libpq/ip.h
206${PG_SUBPREFIX}include/postgresql/server/libpq/libpq-be.h 206include/postgresql/server/libpq/libpq-be.h
207${PG_SUBPREFIX}include/postgresql/server/libpq/libpq-fs.h 207include/postgresql/server/libpq/libpq-fs.h
208${PG_SUBPREFIX}include/postgresql/server/libpq/libpq.h 208include/postgresql/server/libpq/libpq.h
209${PG_SUBPREFIX}include/postgresql/server/libpq/md5.h 209include/postgresql/server/libpq/md5.h
210${PG_SUBPREFIX}include/postgresql/server/libpq/pqcomm.h 210include/postgresql/server/libpq/pqcomm.h
211${PG_SUBPREFIX}include/postgresql/server/libpq/pqformat.h 211include/postgresql/server/libpq/pqformat.h
212${PG_SUBPREFIX}include/postgresql/server/libpq/pqsignal.h 212include/postgresql/server/libpq/pqsignal.h
213${PG_SUBPREFIX}include/postgresql/server/mb/pg_wchar.h 213include/postgresql/server/mb/pg_wchar.h
214${PG_SUBPREFIX}include/postgresql/server/miscadmin.h 214include/postgresql/server/miscadmin.h
215${PG_SUBPREFIX}include/postgresql/server/nodes/bitmapset.h 215include/postgresql/server/nodes/bitmapset.h
216${PG_SUBPREFIX}include/postgresql/server/nodes/execnodes.h 216include/postgresql/server/nodes/execnodes.h
217${PG_SUBPREFIX}include/postgresql/server/nodes/makefuncs.h 217include/postgresql/server/nodes/makefuncs.h
218${PG_SUBPREFIX}include/postgresql/server/nodes/memnodes.h 218include/postgresql/server/nodes/memnodes.h
219${PG_SUBPREFIX}include/postgresql/server/nodes/nodeFuncs.h 219include/postgresql/server/nodes/nodeFuncs.h
220${PG_SUBPREFIX}include/postgresql/server/nodes/nodes.h 220include/postgresql/server/nodes/nodes.h
221${PG_SUBPREFIX}include/postgresql/server/nodes/params.h 221include/postgresql/server/nodes/params.h
222${PG_SUBPREFIX}include/postgresql/server/nodes/parsenodes.h 222include/postgresql/server/nodes/parsenodes.h
223${PG_SUBPREFIX}include/postgresql/server/nodes/pg_list.h 223include/postgresql/server/nodes/pg_list.h
224${PG_SUBPREFIX}include/postgresql/server/nodes/plannodes.h 224include/postgresql/server/nodes/plannodes.h
225${PG_SUBPREFIX}include/postgresql/server/nodes/primnodes.h 225include/postgresql/server/nodes/primnodes.h
226${PG_SUBPREFIX}include/postgresql/server/nodes/print.h 226include/postgresql/server/nodes/print.h
227${PG_SUBPREFIX}include/postgresql/server/nodes/readfuncs.h 227include/postgresql/server/nodes/readfuncs.h
228${PG_SUBPREFIX}include/postgresql/server/nodes/relation.h 228include/postgresql/server/nodes/relation.h
229${PG_SUBPREFIX}include/postgresql/server/nodes/tidbitmap.h 229include/postgresql/server/nodes/tidbitmap.h
230${PG_SUBPREFIX}include/postgresql/server/nodes/value.h 230include/postgresql/server/nodes/value.h
231${PG_SUBPREFIX}include/postgresql/server/optimizer/clauses.h 231include/postgresql/server/optimizer/clauses.h
232${PG_SUBPREFIX}include/postgresql/server/optimizer/cost.h 232include/postgresql/server/optimizer/cost.h
233${PG_SUBPREFIX}include/postgresql/server/optimizer/geqo.h 233include/postgresql/server/optimizer/geqo.h
234${PG_SUBPREFIX}include/postgresql/server/optimizer/geqo_copy.h 234include/postgresql/server/optimizer/geqo_copy.h
235${PG_SUBPREFIX}include/postgresql/server/optimizer/geqo_gene.h 235include/postgresql/server/optimizer/geqo_gene.h
236${PG_SUBPREFIX}include/postgresql/server/optimizer/geqo_misc.h 236include/postgresql/server/optimizer/geqo_misc.h
237${PG_SUBPREFIX}include/postgresql/server/optimizer/geqo_mutation.h 237include/postgresql/server/optimizer/geqo_mutation.h
238${PG_SUBPREFIX}include/postgresql/server/optimizer/geqo_pool.h 238include/postgresql/server/optimizer/geqo_pool.h
239${PG_SUBPREFIX}include/postgresql/server/optimizer/geqo_random.h 239include/postgresql/server/optimizer/geqo_random.h
240${PG_SUBPREFIX}include/postgresql/server/optimizer/geqo_recombination.h 240include/postgresql/server/optimizer/geqo_recombination.h
241${PG_SUBPREFIX}include/postgresql/server/optimizer/geqo_selection.h 241include/postgresql/server/optimizer/geqo_selection.h
242${PG_SUBPREFIX}include/postgresql/server/optimizer/joininfo.h 242include/postgresql/server/optimizer/joininfo.h
243${PG_SUBPREFIX}include/postgresql/server/optimizer/pathnode.h 243include/postgresql/server/optimizer/pathnode.h
244${PG_SUBPREFIX}include/postgresql/server/optimizer/paths.h 244include/postgresql/server/optimizer/paths.h
245${PG_SUBPREFIX}include/postgresql/server/optimizer/plancat.h 245include/postgresql/server/optimizer/plancat.h
246${PG_SUBPREFIX}include/postgresql/server/optimizer/planmain.h 246include/postgresql/server/optimizer/planmain.h
247${PG_SUBPREFIX}include/postgresql/server/optimizer/planner.h 247include/postgresql/server/optimizer/planner.h
248${PG_SUBPREFIX}include/postgresql/server/optimizer/predtest.h 248include/postgresql/server/optimizer/predtest.h
249${PG_SUBPREFIX}include/postgresql/server/optimizer/prep.h 249include/postgresql/server/optimizer/prep.h
250${PG_SUBPREFIX}include/postgresql/server/optimizer/restrictinfo.h 250include/postgresql/server/optimizer/restrictinfo.h
251${PG_SUBPREFIX}include/postgresql/server/optimizer/subselect.h 251include/postgresql/server/optimizer/subselect.h
252${PG_SUBPREFIX}include/postgresql/server/optimizer/tlist.h 252include/postgresql/server/optimizer/tlist.h
253${PG_SUBPREFIX}include/postgresql/server/optimizer/var.h 253include/postgresql/server/optimizer/var.h
254${PG_SUBPREFIX}include/postgresql/server/parser/analyze.h 254include/postgresql/server/parser/analyze.h
255${PG_SUBPREFIX}include/postgresql/server/parser/gramparse.h 255include/postgresql/server/parser/gramparse.h
256${PG_SUBPREFIX}include/postgresql/server/parser/keywords.h 256include/postgresql/server/parser/keywords.h
257${PG_SUBPREFIX}include/postgresql/server/parser/parse.h 257include/postgresql/server/parser/parse.h
258${PG_SUBPREFIX}include/postgresql/server/parser/parse_agg.h 258include/postgresql/server/parser/parse_agg.h
259${PG_SUBPREFIX}include/postgresql/server/parser/parse_clause.h 259include/postgresql/server/parser/parse_clause.h
260${PG_SUBPREFIX}include/postgresql/server/parser/parse_coerce.h 260include/postgresql/server/parser/parse_coerce.h
261${PG_SUBPREFIX}include/postgresql/server/parser/parse_expr.h 261include/postgresql/server/parser/parse_expr.h
262${PG_SUBPREFIX}include/postgresql/server/parser/parse_func.h 262include/postgresql/server/parser/parse_func.h
263${PG_SUBPREFIX}include/postgresql/server/parser/parse_node.h 263include/postgresql/server/parser/parse_node.h
264${PG_SUBPREFIX}include/postgresql/server/parser/parse_oper.h 264include/postgresql/server/parser/parse_oper.h
265${PG_SUBPREFIX}include/postgresql/server/parser/parse_relation.h 265include/postgresql/server/parser/parse_relation.h
266${PG_SUBPREFIX}include/postgresql/server/parser/parse_target.h 266include/postgresql/server/parser/parse_target.h
267${PG_SUBPREFIX}include/postgresql/server/parser/parse_type.h 267include/postgresql/server/parser/parse_type.h
268${PG_SUBPREFIX}include/postgresql/server/parser/parse_utilcmd.h 268include/postgresql/server/parser/parse_utilcmd.h
269${PG_SUBPREFIX}include/postgresql/server/parser/parser.h 269include/postgresql/server/parser/parser.h
270${PG_SUBPREFIX}include/postgresql/server/parser/parsetree.h 270include/postgresql/server/parser/parsetree.h
271${PG_SUBPREFIX}include/postgresql/server/parser/scansup.h 271include/postgresql/server/parser/scansup.h
272${PG_SUBPREFIX}include/postgresql/server/pg_config.h 272include/postgresql/server/pg_config.h
273${PG_SUBPREFIX}include/postgresql/server/pg_config_manual.h 273include/postgresql/server/pg_config_manual.h
274${PG_SUBPREFIX}include/postgresql/server/pg_config_os.h 274include/postgresql/server/pg_config_os.h
275${PG_SUBPREFIX}include/postgresql/server/pg_trace.h 275include/postgresql/server/pg_trace.h
276${PG_SUBPREFIX}include/postgresql/server/pgstat.h 276include/postgresql/server/pgstat.h
277${PG_SUBPREFIX}include/postgresql/server/pgtime.h 277include/postgresql/server/pgtime.h
278${PG_SUBPREFIX}include/postgresql/server/port.h 278include/postgresql/server/port.h
279${PG_SUBPREFIX}include/postgresql/server/port/aix.h 279include/postgresql/server/port/aix.h
280${PG_SUBPREFIX}include/postgresql/server/port/bsdi.h 280include/postgresql/server/port/bsdi.h
281${PG_SUBPREFIX}include/postgresql/server/port/cygwin.h 281include/postgresql/server/port/cygwin.h
282${PG_SUBPREFIX}include/postgresql/server/port/darwin.h 282include/postgresql/server/port/darwin.h
283${PG_SUBPREFIX}include/postgresql/server/port/dgux.h 283include/postgresql/server/port/dgux.h
284${PG_SUBPREFIX}include/postgresql/server/port/dragonfly.h 284include/postgresql/server/port/dragonfly.h
285${PG_SUBPREFIX}include/postgresql/server/port/freebsd.h 285include/postgresql/server/port/freebsd.h
286${PG_SUBPREFIX}include/postgresql/server/port/hpux.h 286include/postgresql/server/port/hpux.h
287${PG_SUBPREFIX}include/postgresql/server/port/irix.h 287include/postgresql/server/port/irix.h
288${PG_SUBPREFIX}include/postgresql/server/port/linux.h 288include/postgresql/server/port/linux.h
289${PG_SUBPREFIX}include/postgresql/server/port/netbsd.h 289include/postgresql/server/port/netbsd.h
290${PG_SUBPREFIX}include/postgresql/server/port/nextstep.h 290include/postgresql/server/port/nextstep.h
291${PG_SUBPREFIX}include/postgresql/server/port/openbsd.h 291include/postgresql/server/port/openbsd.h
292${PG_SUBPREFIX}include/postgresql/server/port/osf.h 292include/postgresql/server/port/osf.h
293${PG_SUBPREFIX}include/postgresql/server/port/sco.h 293include/postgresql/server/port/sco.h
294${PG_SUBPREFIX}include/postgresql/server/port/solaris.h 294include/postgresql/server/port/solaris.h
295${PG_SUBPREFIX}include/postgresql/server/port/sunos4.h 295include/postgresql/server/port/sunos4.h
296${PG_SUBPREFIX}include/postgresql/server/port/svr4.h 296include/postgresql/server/port/svr4.h
297${PG_SUBPREFIX}include/postgresql/server/port/ultrix4.h 297include/postgresql/server/port/ultrix4.h
298${PG_SUBPREFIX}include/postgresql/server/port/univel.h 298include/postgresql/server/port/univel.h
299${PG_SUBPREFIX}include/postgresql/server/port/unixware.h 299include/postgresql/server/port/unixware.h
300${PG_SUBPREFIX}include/postgresql/server/port/win32.h 300include/postgresql/server/port/win32.h
301${PG_SUBPREFIX}include/postgresql/server/port/win32/arpa/inet.h 301include/postgresql/server/port/win32/arpa/inet.h
302${PG_SUBPREFIX}include/postgresql/server/port/win32/dlfcn.h 302include/postgresql/server/port/win32/dlfcn.h
303${PG_SUBPREFIX}include/postgresql/server/port/win32/grp.h 303include/postgresql/server/port/win32/grp.h
304${PG_SUBPREFIX}include/postgresql/server/port/win32/netdb.h 304include/postgresql/server/port/win32/netdb.h
305${PG_SUBPREFIX}include/postgresql/server/port/win32/netinet/in.h 305include/postgresql/server/port/win32/netinet/in.h
306${PG_SUBPREFIX}include/postgresql/server/port/win32/pwd.h 306include/postgresql/server/port/win32/pwd.h
307${PG_SUBPREFIX}include/postgresql/server/port/win32/sys/socket.h 307include/postgresql/server/port/win32/sys/socket.h
308${PG_SUBPREFIX}include/postgresql/server/port/win32/sys/wait.h 308include/postgresql/server/port/win32/sys/wait.h
309${PG_SUBPREFIX}include/postgresql/server/port/win32_msvc/dirent.h 309include/postgresql/server/port/win32_msvc/dirent.h
310${PG_SUBPREFIX}include/postgresql/server/port/win32_msvc/sys/file.h 310include/postgresql/server/port/win32_msvc/sys/file.h
311${PG_SUBPREFIX}include/postgresql/server/port/win32_msvc/sys/param.h 311include/postgresql/server/port/win32_msvc/sys/param.h
312${PG_SUBPREFIX}include/postgresql/server/port/win32_msvc/sys/time.h 312include/postgresql/server/port/win32_msvc/sys/time.h
313${PG_SUBPREFIX}include/postgresql/server/port/win32_msvc/unistd.h 313include/postgresql/server/port/win32_msvc/unistd.h
314${PG_SUBPREFIX}include/postgresql/server/port/win32_msvc/utime.h 314include/postgresql/server/port/win32_msvc/utime.h
315${PG_SUBPREFIX}include/postgresql/server/postgres.h 315include/postgresql/server/postgres.h
316${PG_SUBPREFIX}include/postgresql/server/postgres_ext.h 316include/postgresql/server/postgres_ext.h
317${PG_SUBPREFIX}include/postgresql/server/postgres_fe.h 317include/postgresql/server/postgres_fe.h
318${PG_SUBPREFIX}include/postgresql/server/postmaster/autovacuum.h 318include/postgresql/server/postmaster/autovacuum.h
319${PG_SUBPREFIX}include/postgresql/server/postmaster/bgwriter.h 319include/postgresql/server/postmaster/bgwriter.h
320${PG_SUBPREFIX}include/postgresql/server/postmaster/fork_process.h 320include/postgresql/server/postmaster/fork_process.h
321${PG_SUBPREFIX}include/postgresql/server/postmaster/pgarch.h 321include/postgresql/server/postmaster/pgarch.h
322${PG_SUBPREFIX}include/postgresql/server/postmaster/postmaster.h 322include/postgresql/server/postmaster/postmaster.h
323${PG_SUBPREFIX}include/postgresql/server/postmaster/syslogger.h 323include/postgresql/server/postmaster/syslogger.h
324${PG_SUBPREFIX}include/postgresql/server/postmaster/walwriter.h 324include/postgresql/server/postmaster/walwriter.h
325${PG_SUBPREFIX}include/postgresql/server/regex/regcustom.h 325include/postgresql/server/regex/regcustom.h
326${PG_SUBPREFIX}include/postgresql/server/regex/regerrs.h 326include/postgresql/server/regex/regerrs.h
327${PG_SUBPREFIX}include/postgresql/server/regex/regex.h 327include/postgresql/server/regex/regex.h
328${PG_SUBPREFIX}include/postgresql/server/regex/regguts.h 328include/postgresql/server/regex/regguts.h
329${PG_SUBPREFIX}include/postgresql/server/rewrite/prs2lock.h 329include/postgresql/server/rewrite/prs2lock.h
330${PG_SUBPREFIX}include/postgresql/server/rewrite/rewriteDefine.h 330include/postgresql/server/rewrite/rewriteDefine.h
331${PG_SUBPREFIX}include/postgresql/server/rewrite/rewriteHandler.h 331include/postgresql/server/rewrite/rewriteHandler.h
332${PG_SUBPREFIX}include/postgresql/server/rewrite/rewriteManip.h 332include/postgresql/server/rewrite/rewriteManip.h
333${PG_SUBPREFIX}include/postgresql/server/rewrite/rewriteRemove.h 333include/postgresql/server/rewrite/rewriteRemove.h
334${PG_SUBPREFIX}include/postgresql/server/rewrite/rewriteSupport.h 334include/postgresql/server/rewrite/rewriteSupport.h
335${PG_SUBPREFIX}include/postgresql/server/rusagestub.h 335include/postgresql/server/rusagestub.h
336${PG_SUBPREFIX}include/postgresql/server/snowball/header.h 336include/postgresql/server/snowball/header.h
337${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/api.h 337include/postgresql/server/snowball/libstemmer/api.h
338${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/header.h 338include/postgresql/server/snowball/libstemmer/header.h
339${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_danish.h 339include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_danish.h
340${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_dutch.h 340include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_dutch.h
341${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_english.h 341include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_english.h
342${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_finnish.h 342include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_finnish.h
343${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_french.h 343include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_french.h
344${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_german.h 344include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_german.h
345${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_hungarian.h 345include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_hungarian.h
346${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_italian.h 346include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_italian.h
347${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_norwegian.h 347include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_norwegian.h
348${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_porter.h 348include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_porter.h
349${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_portuguese.h 349include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_portuguese.h
350${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_spanish.h 350include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_spanish.h
351${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_swedish.h 351include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_swedish.h
352${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_2_romanian.h 352include/postgresql/server/snowball/libstemmer/stem_ISO_8859_2_romanian.h
353${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_KOI8_R_russian.h 353include/postgresql/server/snowball/libstemmer/stem_KOI8_R_russian.h
354${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_danish.h 354include/postgresql/server/snowball/libstemmer/stem_UTF_8_danish.h
355${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_dutch.h 355include/postgresql/server/snowball/libstemmer/stem_UTF_8_dutch.h
356${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_english.h 356include/postgresql/server/snowball/libstemmer/stem_UTF_8_english.h
357${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_finnish.h 357include/postgresql/server/snowball/libstemmer/stem_UTF_8_finnish.h
358${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_french.h 358include/postgresql/server/snowball/libstemmer/stem_UTF_8_french.h
359${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_german.h 359include/postgresql/server/snowball/libstemmer/stem_UTF_8_german.h
360${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_hungarian.h 360include/postgresql/server/snowball/libstemmer/stem_UTF_8_hungarian.h
361${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_italian.h 361include/postgresql/server/snowball/libstemmer/stem_UTF_8_italian.h
362${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_norwegian.h 362include/postgresql/server/snowball/libstemmer/stem_UTF_8_norwegian.h
363${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_porter.h 363include/postgresql/server/snowball/libstemmer/stem_UTF_8_porter.h
364${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_portuguese.h 364include/postgresql/server/snowball/libstemmer/stem_UTF_8_portuguese.h
365${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_romanian.h 365include/postgresql/server/snowball/libstemmer/stem_UTF_8_romanian.h
366${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_russian.h 366include/postgresql/server/snowball/libstemmer/stem_UTF_8_russian.h
367${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_spanish.h 367include/postgresql/server/snowball/libstemmer/stem_UTF_8_spanish.h
368${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_swedish.h 368include/postgresql/server/snowball/libstemmer/stem_UTF_8_swedish.h
369${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_turkish.h 369include/postgresql/server/snowball/libstemmer/stem_UTF_8_turkish.h
370${PG_SUBPREFIX}include/postgresql/server/storage/backendid.h 370include/postgresql/server/storage/backendid.h
371${PG_SUBPREFIX}include/postgresql/server/storage/block.h 371include/postgresql/server/storage/block.h
372${PG_SUBPREFIX}include/postgresql/server/storage/buf.h 372include/postgresql/server/storage/buf.h
373${PG_SUBPREFIX}include/postgresql/server/storage/buf_internals.h 373include/postgresql/server/storage/buf_internals.h
374${PG_SUBPREFIX}include/postgresql/server/storage/buffile.h 374include/postgresql/server/storage/buffile.h
375${PG_SUBPREFIX}include/postgresql/server/storage/bufmgr.h 375include/postgresql/server/storage/bufmgr.h
376${PG_SUBPREFIX}include/postgresql/server/storage/bufpage.h 376include/postgresql/server/storage/bufpage.h
377${PG_SUBPREFIX}include/postgresql/server/storage/fd.h 377include/postgresql/server/storage/fd.h
378${PG_SUBPREFIX}include/postgresql/server/storage/freespace.h 378include/postgresql/server/storage/freespace.h
379${PG_SUBPREFIX}include/postgresql/server/storage/ipc.h 379include/postgresql/server/storage/ipc.h
380${PG_SUBPREFIX}include/postgresql/server/storage/item.h 380include/postgresql/server/storage/item.h
381${PG_SUBPREFIX}include/postgresql/server/storage/itemid.h 381include/postgresql/server/storage/itemid.h
382${PG_SUBPREFIX}include/postgresql/server/storage/itempos.h 382include/postgresql/server/storage/itempos.h
383${PG_SUBPREFIX}include/postgresql/server/storage/itemptr.h 383include/postgresql/server/storage/itemptr.h
384${PG_SUBPREFIX}include/postgresql/server/storage/large_object.h 384include/postgresql/server/storage/large_object.h
385${PG_SUBPREFIX}include/postgresql/server/storage/lmgr.h 385include/postgresql/server/storage/lmgr.h
386${PG_SUBPREFIX}include/postgresql/server/storage/lock.h 386include/postgresql/server/storage/lock.h
387${PG_SUBPREFIX}include/postgresql/server/storage/lwlock.h 387include/postgresql/server/storage/lwlock.h
388${PG_SUBPREFIX}include/postgresql/server/storage/off.h 388include/postgresql/server/storage/off.h
389${PG_SUBPREFIX}include/postgresql/server/storage/pg_sema.h 389include/postgresql/server/storage/pg_sema.h
390${PG_SUBPREFIX}include/postgresql/server/storage/pg_shmem.h 390include/postgresql/server/storage/pg_shmem.h
391${PG_SUBPREFIX}include/postgresql/server/storage/pmsignal.h 391include/postgresql/server/storage/pmsignal.h
392${PG_SUBPREFIX}include/postgresql/server/storage/pos.h 392include/postgresql/server/storage/pos.h
393${PG_SUBPREFIX}include/postgresql/server/storage/proc.h 393include/postgresql/server/storage/proc.h
394${PG_SUBPREFIX}include/postgresql/server/storage/procarray.h 394include/postgresql/server/storage/procarray.h
395${PG_SUBPREFIX}include/postgresql/server/storage/relfilenode.h 395include/postgresql/server/storage/relfilenode.h
396${PG_SUBPREFIX}include/postgresql/server/storage/s_lock.h 396include/postgresql/server/storage/s_lock.h
397${PG_SUBPREFIX}include/postgresql/server/storage/shmem.h 397include/postgresql/server/storage/shmem.h
398${PG_SUBPREFIX}include/postgresql/server/storage/sinval.h 398include/postgresql/server/storage/sinval.h
399${PG_SUBPREFIX}include/postgresql/server/storage/sinvaladt.h 399include/postgresql/server/storage/sinvaladt.h
400${PG_SUBPREFIX}include/postgresql/server/storage/smgr.h 400include/postgresql/server/storage/smgr.h
401${PG_SUBPREFIX}include/postgresql/server/storage/spin.h 401include/postgresql/server/storage/spin.h
402${PG_SUBPREFIX}include/postgresql/server/tcop/dest.h 402include/postgresql/server/tcop/dest.h
403${PG_SUBPREFIX}include/postgresql/server/tcop/fastpath.h 403include/postgresql/server/tcop/fastpath.h
404${PG_SUBPREFIX}include/postgresql/server/tcop/pquery.h 404include/postgresql/server/tcop/pquery.h
405${PG_SUBPREFIX}include/postgresql/server/tcop/tcopdebug.h 405include/postgresql/server/tcop/tcopdebug.h
406${PG_SUBPREFIX}include/postgresql/server/tcop/tcopprot.h 406include/postgresql/server/tcop/tcopprot.h
407${PG_SUBPREFIX}include/postgresql/server/tcop/utility.h 407include/postgresql/server/tcop/utility.h
408${PG_SUBPREFIX}include/postgresql/server/tsearch/dicts/regis.h 408include/postgresql/server/tsearch/dicts/regis.h
409${PG_SUBPREFIX}include/postgresql/server/tsearch/dicts/spell.h 409include/postgresql/server/tsearch/dicts/spell.h
410${PG_SUBPREFIX}include/postgresql/server/tsearch/ts_cache.h 410include/postgresql/server/tsearch/ts_cache.h
411${PG_SUBPREFIX}include/postgresql/server/tsearch/ts_locale.h 411include/postgresql/server/tsearch/ts_locale.h
412${PG_SUBPREFIX}include/postgresql/server/tsearch/ts_public.h 412include/postgresql/server/tsearch/ts_public.h
413${PG_SUBPREFIX}include/postgresql/server/tsearch/ts_type.h 413include/postgresql/server/tsearch/ts_type.h
414${PG_SUBPREFIX}include/postgresql/server/tsearch/ts_utils.h 414include/postgresql/server/tsearch/ts_utils.h
415${PG_SUBPREFIX}include/postgresql/server/utils/acl.h 415include/postgresql/server/utils/acl.h
416${PG_SUBPREFIX}include/postgresql/server/utils/array.h 416include/postgresql/server/utils/array.h
417${PG_SUBPREFIX}include/postgresql/server/utils/ascii.h 417include/postgresql/server/utils/ascii.h
418${PG_SUBPREFIX}include/postgresql/server/utils/builtins.h 418include/postgresql/server/utils/builtins.h
419${PG_SUBPREFIX}include/postgresql/server/utils/cash.h 419include/postgresql/server/utils/cash.h
420${PG_SUBPREFIX}include/postgresql/server/utils/catcache.h 420include/postgresql/server/utils/catcache.h
421${PG_SUBPREFIX}include/postgresql/server/utils/combocid.h 421include/postgresql/server/utils/combocid.h
422${PG_SUBPREFIX}include/postgresql/server/utils/date.h 422include/postgresql/server/utils/date.h
423${PG_SUBPREFIX}include/postgresql/server/utils/datetime.h 423include/postgresql/server/utils/datetime.h
424${PG_SUBPREFIX}include/postgresql/server/utils/datum.h 424include/postgresql/server/utils/datum.h
425${PG_SUBPREFIX}include/postgresql/server/utils/dynahash.h 425include/postgresql/server/utils/dynahash.h
426${PG_SUBPREFIX}include/postgresql/server/utils/dynamic_loader.h 426include/postgresql/server/utils/dynamic_loader.h
427${PG_SUBPREFIX}include/postgresql/server/utils/elog.h 427include/postgresql/server/utils/elog.h
428${PG_SUBPREFIX}include/postgresql/server/utils/errcodes.h 428include/postgresql/server/utils/errcodes.h
429${PG_SUBPREFIX}include/postgresql/server/utils/flatfiles.h 429include/postgresql/server/utils/flatfiles.h
430${PG_SUBPREFIX}include/postgresql/server/utils/fmgroids.h 430include/postgresql/server/utils/fmgroids.h
431${PG_SUBPREFIX}include/postgresql/server/utils/fmgrtab.h 431include/postgresql/server/utils/fmgrtab.h
432${PG_SUBPREFIX}include/postgresql/server/utils/formatting.h 432include/postgresql/server/utils/formatting.h
433${PG_SUBPREFIX}include/postgresql/server/utils/geo_decls.h 433include/postgresql/server/utils/geo_decls.h
434${PG_SUBPREFIX}include/postgresql/server/utils/guc.h 434include/postgresql/server/utils/guc.h
435${PG_SUBPREFIX}include/postgresql/server/utils/guc_tables.h 435include/postgresql/server/utils/guc_tables.h
436${PG_SUBPREFIX}include/postgresql/server/utils/help_config.h 436include/postgresql/server/utils/help_config.h
437${PG_SUBPREFIX}include/postgresql/server/utils/hsearch.h 437include/postgresql/server/utils/hsearch.h
438${PG_SUBPREFIX}include/postgresql/server/utils/inet.h 438include/postgresql/server/utils/inet.h
439${PG_SUBPREFIX}include/postgresql/server/utils/int8.h 439include/postgresql/server/utils/int8.h
440${PG_SUBPREFIX}include/postgresql/server/utils/inval.h 440include/postgresql/server/utils/inval.h
441${PG_SUBPREFIX}include/postgresql/server/utils/logtape.h 441include/postgresql/server/utils/logtape.h
442${PG_SUBPREFIX}include/postgresql/server/utils/lsyscache.h 442include/postgresql/server/utils/lsyscache.h
443${PG_SUBPREFIX}include/postgresql/server/utils/memutils.h 443include/postgresql/server/utils/memutils.h
444${PG_SUBPREFIX}include/postgresql/server/utils/nabstime.h 444include/postgresql/server/utils/nabstime.h
445${PG_SUBPREFIX}include/postgresql/server/utils/numeric.h 445include/postgresql/server/utils/numeric.h
446${PG_SUBPREFIX}include/postgresql/server/utils/palloc.h 446include/postgresql/server/utils/palloc.h
447${PG_SUBPREFIX}include/postgresql/server/utils/pg_crc.h 447include/postgresql/server/utils/pg_crc.h
448${PG_SUBPREFIX}include/postgresql/server/utils/pg_locale.h 448include/postgresql/server/utils/pg_locale.h
449${PG_SUBPREFIX}include/postgresql/server/utils/pg_lzcompress.h 449include/postgresql/server/utils/pg_lzcompress.h
450${PG_SUBPREFIX}include/postgresql/server/utils/pg_rusage.h 450include/postgresql/server/utils/pg_rusage.h
451${PG_SUBPREFIX}include/postgresql/server/utils/plancache.h 451include/postgresql/server/utils/plancache.h
452${PG_SUBPREFIX}include/postgresql/server/utils/portal.h 452include/postgresql/server/utils/portal.h
453${PG_SUBPREFIX}include/postgresql/server/utils/ps_status.h 453include/postgresql/server/utils/ps_status.h
454${PG_SUBPREFIX}include/postgresql/server/utils/rel.h 454include/postgresql/server/utils/rel.h
455${PG_SUBPREFIX}include/postgresql/server/utils/relcache.h 455include/postgresql/server/utils/relcache.h
456${PG_SUBPREFIX}include/postgresql/server/utils/resowner.h 456include/postgresql/server/utils/resowner.h
457${PG_SUBPREFIX}include/postgresql/server/utils/selfuncs.h 457include/postgresql/server/utils/selfuncs.h
458${PG_SUBPREFIX}include/postgresql/server/utils/syscache.h 458include/postgresql/server/utils/syscache.h
459${PG_SUBPREFIX}include/postgresql/server/utils/timestamp.h 459include/postgresql/server/utils/timestamp.h
460${PG_SUBPREFIX}include/postgresql/server/utils/tqual.h 460include/postgresql/server/utils/tqual.h
461${PG_SUBPREFIX}include/postgresql/server/utils/tuplesort.h 461include/postgresql/server/utils/tuplesort.h
462${PG_SUBPREFIX}include/postgresql/server/utils/tuplestore.h 462include/postgresql/server/utils/tuplestore.h
463${PG_SUBPREFIX}include/postgresql/server/utils/typcache.h 463include/postgresql/server/utils/typcache.h
464${PG_SUBPREFIX}include/postgresql/server/utils/tzparser.h 464include/postgresql/server/utils/tzparser.h
465${PG_SUBPREFIX}include/postgresql/server/utils/uuid.h 465include/postgresql/server/utils/uuid.h
466${PG_SUBPREFIX}include/postgresql/server/utils/varbit.h 466include/postgresql/server/utils/varbit.h
467${PG_SUBPREFIX}include/postgresql/server/utils/xml.h 467include/postgresql/server/utils/xml.h
468${PG_SUBPREFIX}include/sql3types.h 468include/sql3types.h
469${PG_SUBPREFIX}include/sqlca.h 469include/sqlca.h
470${PG_SUBPREFIX}lib/libecpg.la 470lib/libecpg.la
471${PG_SUBPREFIX}lib/libecpg_compat.la 471lib/libecpg_compat.la
472${PG_SUBPREFIX}lib/libpgport.a 472lib/libpgport.a
473${PG_SUBPREFIX}lib/libpgtypes.la 473lib/libpgtypes.la
474${PG_SUBPREFIX}lib/libpq.la 474lib/libpq.la
475${PG_SUBPREFIX}lib/postgresql/pgxs/config/install-sh 475lib/postgresql/pgxs/config/install-sh
476${PG_SUBPREFIX}lib/postgresql/pgxs/config/mkinstalldirs 476lib/postgresql/pgxs/config/mkinstalldirs
477${PG_SUBPREFIX}lib/postgresql/pgxs/src/Makefile.global 477lib/postgresql/pgxs/src/Makefile.global
478${PG_SUBPREFIX}lib/postgresql/pgxs/src/Makefile.port 478lib/postgresql/pgxs/src/Makefile.port
479${PG_SUBPREFIX}lib/postgresql/pgxs/src/Makefile.shlib 479lib/postgresql/pgxs/src/Makefile.shlib
480${PG_SUBPREFIX}lib/postgresql/pgxs/src/makefiles/pgxs.mk 480lib/postgresql/pgxs/src/makefiles/pgxs.mk
481${PG_SUBPREFIX}lib/postgresql/pgxs/src/nls-global.mk 481lib/postgresql/pgxs/src/nls-global.mk
482${PG_SUBPREFIX}man/man1/clusterdb.1 482man/man1/clusterdb.1
483${PG_SUBPREFIX}man/man1/createdb.1 483man/man1/createdb.1
484${PG_SUBPREFIX}man/man1/createlang.1 484man/man1/createlang.1
485${PG_SUBPREFIX}man/man1/createuser.1 485man/man1/createuser.1
486${PG_SUBPREFIX}man/man1/dropdb.1 486man/man1/dropdb.1
487${PG_SUBPREFIX}man/man1/droplang.1 487man/man1/droplang.1
488${PG_SUBPREFIX}man/man1/dropuser.1 488man/man1/dropuser.1
489${PG_SUBPREFIX}man/man1/ecpg.1 489man/man1/ecpg.1
490${PG_SUBPREFIX}man/man1/initdb.1 490man/man1/initdb.1
491${PG_SUBPREFIX}man/man1/ipcclean.1 491man/man1/ipcclean.1
492${PG_SUBPREFIX}man/man1/pg_config.1 492man/man1/pg_config.1
493${PG_SUBPREFIX}man/man1/pg_controldata.1 493man/man1/pg_controldata.1
494${PG_SUBPREFIX}man/man1/pg_ctl.1 494man/man1/pg_ctl.1
495${PG_SUBPREFIX}man/man1/pg_dump.1 495man/man1/pg_dump.1
496${PG_SUBPREFIX}man/man1/pg_dumpall.1 496man/man1/pg_dumpall.1
497${PG_SUBPREFIX}man/man1/pg_resetxlog.1 497man/man1/pg_resetxlog.1
498${PG_SUBPREFIX}man/man1/pg_restore.1 498man/man1/pg_restore.1
499${PG_SUBPREFIX}man/man1/postgres.1 499man/man1/postgres.1
500${PG_SUBPREFIX}man/man1/postmaster.1 500man/man1/postmaster.1
501${PG_SUBPREFIX}man/man1/psql.1 501man/man1/psql.1
502${PG_SUBPREFIX}man/man1/reindexdb.1 502man/man1/reindexdb.1
503${PG_SUBPREFIX}man/man1/vacuumdb.1 503man/man1/vacuumdb.1
504${PG_SUBPREFIX}man/man7/abort.7 504man/man7/abort.7
505${PG_SUBPREFIX}man/man7/alter_aggregate.7 505man/man7/alter_aggregate.7
506${PG_SUBPREFIX}man/man7/alter_conversion.7 506man/man7/alter_conversion.7
507${PG_SUBPREFIX}man/man7/alter_database.7 507man/man7/alter_database.7
508${PG_SUBPREFIX}man/man7/alter_domain.7 508man/man7/alter_domain.7
509${PG_SUBPREFIX}man/man7/alter_function.7 509man/man7/alter_function.7
510${PG_SUBPREFIX}man/man7/alter_group.7 510man/man7/alter_group.7
511${PG_SUBPREFIX}man/man7/alter_index.7 511man/man7/alter_index.7
512${PG_SUBPREFIX}man/man7/alter_language.7 512man/man7/alter_language.7
513${PG_SUBPREFIX}man/man7/alter_operator.7 513man/man7/alter_operator.7
514${PG_SUBPREFIX}man/man7/alter_operator_class.7 514man/man7/alter_operator_class.7
515${PG_SUBPREFIX}man/man7/alter_operator_family.7 515man/man7/alter_operator_family.7
516${PG_SUBPREFIX}man/man7/alter_role.7 516man/man7/alter_role.7
517${PG_SUBPREFIX}man/man7/alter_schema.7 517man/man7/alter_schema.7
518${PG_SUBPREFIX}man/man7/alter_sequence.7 518man/man7/alter_sequence.7
519${PG_SUBPREFIX}man/man7/alter_table.7 519man/man7/alter_table.7
520${PG_SUBPREFIX}man/man7/alter_tablespace.7 520man/man7/alter_tablespace.7
521${PG_SUBPREFIX}man/man7/alter_text_search_configuration.7 521man/man7/alter_text_search_configuration.7
522${PG_SUBPREFIX}man/man7/alter_text_search_dictionary.7 522man/man7/alter_text_search_dictionary.7
523${PG_SUBPREFIX}man/man7/alter_text_search_parser.7 523man/man7/alter_text_search_parser.7
524${PG_SUBPREFIX}man/man7/alter_text_search_template.7 524man/man7/alter_text_search_template.7
525${PG_SUBPREFIX}man/man7/alter_trigger.7 525man/man7/alter_trigger.7
526${PG_SUBPREFIX}man/man7/alter_type.7 526man/man7/alter_type.7
527${PG_SUBPREFIX}man/man7/alter_user.7 527man/man7/alter_user.7
528${PG_SUBPREFIX}man/man7/alter_view.7 528man/man7/alter_view.7
529${PG_SUBPREFIX}man/man7/analyze.7 529man/man7/analyze.7
530${PG_SUBPREFIX}man/man7/begin.7 530man/man7/begin.7
531${PG_SUBPREFIX}man/man7/checkpoint.7 531man/man7/checkpoint.7
532${PG_SUBPREFIX}man/man7/close.7 532man/man7/close.7
533${PG_SUBPREFIX}man/man7/cluster.7 533man/man7/cluster.7
534${PG_SUBPREFIX}man/man7/comment.7 534man/man7/comment.7
535${PG_SUBPREFIX}man/man7/commit.7 535man/man7/commit.7
536${PG_SUBPREFIX}man/man7/commit_prepared.7 536man/man7/commit_prepared.7
537${PG_SUBPREFIX}man/man7/copy.7 537man/man7/copy.7
538${PG_SUBPREFIX}man/man7/create_aggregate.7 538man/man7/create_aggregate.7
539${PG_SUBPREFIX}man/man7/create_cast.7 539man/man7/create_cast.7
540${PG_SUBPREFIX}man/man7/create_constraint_trigger.7 540man/man7/create_constraint_trigger.7
541${PG_SUBPREFIX}man/man7/create_conversion.7 541man/man7/create_conversion.7
542${PG_SUBPREFIX}man/man7/create_database.7 542man/man7/create_database.7
543${PG_SUBPREFIX}man/man7/create_domain.7 543man/man7/create_domain.7
544${PG_SUBPREFIX}man/man7/create_function.7 544man/man7/create_function.7
545${PG_SUBPREFIX}man/man7/create_group.7 545man/man7/create_group.7
546${PG_SUBPREFIX}man/man7/create_index.7 546man/man7/create_index.7
547${PG_SUBPREFIX}man/man7/create_language.7 547man/man7/create_language.7
548${PG_SUBPREFIX}man/man7/create_operator.7 548man/man7/create_operator.7
549${PG_SUBPREFIX}man/man7/create_operator_class.7 549man/man7/create_operator_class.7
550${PG_SUBPREFIX}man/man7/create_operator_family.7 550man/man7/create_operator_family.7
551${PG_SUBPREFIX}man/man7/create_role.7 551man/man7/create_role.7
552${PG_SUBPREFIX}man/man7/create_rule.7 552man/man7/create_rule.7
553${PG_SUBPREFIX}man/man7/create_schema.7 553man/man7/create_schema.7
554${PG_SUBPREFIX}man/man7/create_sequence.7 554man/man7/create_sequence.7
555${PG_SUBPREFIX}man/man7/create_table.7 555man/man7/create_table.7
556${PG_SUBPREFIX}man/man7/create_table_as.7 556man/man7/create_table_as.7
557${PG_SUBPREFIX}man/man7/create_tablespace.7 557man/man7/create_tablespace.7
558${PG_SUBPREFIX}man/man7/create_text_search_configuration.7 558man/man7/create_text_search_configuration.7
559${PG_SUBPREFIX}man/man7/create_text_search_dictionary.7 559man/man7/create_text_search_dictionary.7
560${PG_SUBPREFIX}man/man7/create_text_search_parser.7 560man/man7/create_text_search_parser.7
561${PG_SUBPREFIX}man/man7/create_text_search_template.7 561man/man7/create_text_search_template.7
562${PG_SUBPREFIX}man/man7/create_trigger.7 562man/man7/create_trigger.7
563${PG_SUBPREFIX}man/man7/create_type.7 563man/man7/create_type.7
564${PG_SUBPREFIX}man/man7/create_user.7 564man/man7/create_user.7
565${PG_SUBPREFIX}man/man7/create_view.7 565man/man7/create_view.7
566${PG_SUBPREFIX}man/man7/deallocate.7 566man/man7/deallocate.7
567${PG_SUBPREFIX}man/man7/declare.7 567man/man7/declare.7
568${PG_SUBPREFIX}man/man7/delete.7 568man/man7/delete.7
569${PG_SUBPREFIX}man/man7/discard.7 569man/man7/discard.7
570${PG_SUBPREFIX}man/man7/drop_aggregate.7 570man/man7/drop_aggregate.7
571${PG_SUBPREFIX}man/man7/drop_cast.7 571man/man7/drop_cast.7
572${PG_SUBPREFIX}man/man7/drop_conversion.7 572man/man7/drop_conversion.7
573${PG_SUBPREFIX}man/man7/drop_database.7 573man/man7/drop_database.7
574${PG_SUBPREFIX}man/man7/drop_domain.7 574man/man7/drop_domain.7
575${PG_SUBPREFIX}man/man7/drop_function.7 575man/man7/drop_function.7
576${PG_SUBPREFIX}man/man7/drop_group.7 576man/man7/drop_group.7
577${PG_SUBPREFIX}man/man7/drop_index.7 577man/man7/drop_index.7
578${PG_SUBPREFIX}man/man7/drop_language.7 578man/man7/drop_language.7
579${PG_SUBPREFIX}man/man7/drop_operator.7 579man/man7/drop_operator.7
580${PG_SUBPREFIX}man/man7/drop_operator_class.7 580man/man7/drop_operator_class.7
581${PG_SUBPREFIX}man/man7/drop_operator_family.7 581man/man7/drop_operator_family.7
582${PG_SUBPREFIX}man/man7/drop_owned.7 582man/man7/drop_owned.7
583${PG_SUBPREFIX}man/man7/drop_role.7 583man/man7/drop_role.7
584${PG_SUBPREFIX}man/man7/drop_rule.7 584man/man7/drop_rule.7
585${PG_SUBPREFIX}man/man7/drop_schema.7 585man/man7/drop_schema.7
586${PG_SUBPREFIX}man/man7/drop_sequence.7 586man/man7/drop_sequence.7
587${PG_SUBPREFIX}man/man7/drop_table.7 587man/man7/drop_table.7
588${PG_SUBPREFIX}man/man7/drop_tablespace.7 588man/man7/drop_tablespace.7
589${PG_SUBPREFIX}man/man7/drop_text_search_configuration.7 589man/man7/drop_text_search_configuration.7
590${PG_SUBPREFIX}man/man7/drop_text_search_dictionary.7 590man/man7/drop_text_search_dictionary.7
591${PG_SUBPREFIX}man/man7/drop_text_search_parser.7 591man/man7/drop_text_search_parser.7
592${PG_SUBPREFIX}man/man7/drop_text_search_template.7 592man/man7/drop_text_search_template.7
593${PG_SUBPREFIX}man/man7/drop_trigger.7 593man/man7/drop_trigger.7
594${PG_SUBPREFIX}man/man7/drop_type.7 594man/man7/drop_type.7
595${PG_SUBPREFIX}man/man7/drop_user.7 595man/man7/drop_user.7
596${PG_SUBPREFIX}man/man7/drop_view.7 596man/man7/drop_view.7
597${PG_SUBPREFIX}man/man7/end.7 597man/man7/end.7
598${PG_SUBPREFIX}man/man7/execute.7 598man/man7/execute.7
599${PG_SUBPREFIX}man/man7/explain.7 599man/man7/explain.7
600${PG_SUBPREFIX}man/man7/fetch.7 600man/man7/fetch.7
601${PG_SUBPREFIX}man/man7/grant.7 601man/man7/grant.7
602${PG_SUBPREFIX}man/man7/insert.7 602man/man7/insert.7
603${PG_SUBPREFIX}man/man7/listen.7 603man/man7/listen.7
604${PG_SUBPREFIX}man/man7/load.7 604man/man7/load.7
605${PG_SUBPREFIX}man/man7/lock.7 605man/man7/lock.7
606${PG_SUBPREFIX}man/man7/move.7 606man/man7/move.7
607${PG_SUBPREFIX}man/man7/notify.7 607man/man7/notify.7
608${PG_SUBPREFIX}man/man7/prepare.7 608man/man7/prepare.7
609${PG_SUBPREFIX}man/man7/prepare_transaction.7 609man/man7/prepare_transaction.7
610${PG_SUBPREFIX}man/man7/reassign_owned.7 610man/man7/reassign_owned.7
611${PG_SUBPREFIX}man/man7/reindex.7 611man/man7/reindex.7
612${PG_SUBPREFIX}man/man7/release_savepoint.7 612man/man7/release_savepoint.7
613${PG_SUBPREFIX}man/man7/reset.7 613man/man7/reset.7
614${PG_SUBPREFIX}man/man7/revoke.7 614man/man7/revoke.7
615${PG_SUBPREFIX}man/man7/rollback.7 615man/man7/rollback.7
616${PG_SUBPREFIX}man/man7/rollback_prepared.7 616man/man7/rollback_prepared.7
617${PG_SUBPREFIX}man/man7/rollback_to_savepoint.7 617man/man7/rollback_to_savepoint.7
618${PG_SUBPREFIX}man/man7/savepoint.7 618man/man7/savepoint.7
619${PG_SUBPREFIX}man/man7/select.7 619man/man7/select.7
620${PG_SUBPREFIX}man/man7/select_into.7 620man/man7/select_into.7
621${PG_SUBPREFIX}man/man7/set.7 621man/man7/set.7
622${PG_SUBPREFIX}man/man7/set_constraints.7 622man/man7/set_constraints.7
623${PG_SUBPREFIX}man/man7/set_role.7 623man/man7/set_role.7
624${PG_SUBPREFIX}man/man7/set_session_authorization.7 624man/man7/set_session_authorization.7
625${PG_SUBPREFIX}man/man7/set_transaction.7 625man/man7/set_transaction.7
626${PG_SUBPREFIX}man/man7/show.7 626man/man7/show.7
627${PG_SUBPREFIX}man/man7/start_transaction.7 627man/man7/start_transaction.7
628${PG_SUBPREFIX}man/man7/truncate.7 628man/man7/truncate.7
629${PG_SUBPREFIX}man/man7/unlisten.7 629man/man7/unlisten.7
630${PG_SUBPREFIX}man/man7/update.7 630man/man7/update.7
631${PG_SUBPREFIX}man/man7/vacuum.7 631man/man7/vacuum.7
632${PG_SUBPREFIX}man/man7/values.7 632man/man7/values.7
633${PG_SUBPREFIX}share/doc/postgresql/FAQ 633share/doc/postgresql/FAQ
634${PG_SUBPREFIX}share/doc/postgresql/FAQ_AIX 634share/doc/postgresql/FAQ_AIX
635${PG_SUBPREFIX}share/doc/postgresql/FAQ_CYGWIN 635share/doc/postgresql/FAQ_CYGWIN
636${PG_SUBPREFIX}share/doc/postgresql/FAQ_DEV 636share/doc/postgresql/FAQ_DEV
637${PG_SUBPREFIX}share/doc/postgresql/FAQ_HPUX 637share/doc/postgresql/FAQ_HPUX
638${PG_SUBPREFIX}share/doc/postgresql/FAQ_IRIX 638share/doc/postgresql/FAQ_IRIX
639${PG_SUBPREFIX}share/doc/postgresql/FAQ_MINGW 639share/doc/postgresql/FAQ_MINGW
640${PG_SUBPREFIX}share/doc/postgresql/FAQ_SCO 640share/doc/postgresql/FAQ_SCO
641${PG_SUBPREFIX}share/doc/postgresql/FAQ_Solaris 641share/doc/postgresql/FAQ_Solaris
642${PG_SUBPREFIX}share/doc/postgresql/FAQ_brazilian 642share/doc/postgresql/FAQ_brazilian
643${PG_SUBPREFIX}share/doc/postgresql/FAQ_chinese_simp 643share/doc/postgresql/FAQ_chinese_simp
644${PG_SUBPREFIX}share/doc/postgresql/FAQ_chinese_trad 644share/doc/postgresql/FAQ_chinese_trad
645${PG_SUBPREFIX}share/doc/postgresql/FAQ_czech 645share/doc/postgresql/FAQ_czech
646${PG_SUBPREFIX}share/doc/postgresql/FAQ_farsi 646share/doc/postgresql/FAQ_farsi
647${PG_SUBPREFIX}share/doc/postgresql/FAQ_french 647share/doc/postgresql/FAQ_french
648${PG_SUBPREFIX}share/doc/postgresql/FAQ_german 648share/doc/postgresql/FAQ_german
649${PG_SUBPREFIX}share/doc/postgresql/FAQ_hungarian 649share/doc/postgresql/FAQ_hungarian
650${PG_SUBPREFIX}share/doc/postgresql/FAQ_japanese 650share/doc/postgresql/FAQ_japanese
651${PG_SUBPREFIX}share/doc/postgresql/FAQ_polish 651share/doc/postgresql/FAQ_polish
652${PG_SUBPREFIX}share/doc/postgresql/FAQ_russian 652share/doc/postgresql/FAQ_russian
653${PG_SUBPREFIX}share/doc/postgresql/FAQ_turkish 653share/doc/postgresql/FAQ_turkish
654${PG_SUBPREFIX}share/doc/postgresql/KNOWN_BUGS 654share/doc/postgresql/html/LEGALNOTICE.html
655${PG_SUBPREFIX}share/doc/postgresql/MISSING_FEATURES 655share/doc/postgresql/html/acronyms.html
656${PG_SUBPREFIX}share/doc/postgresql/README.mb.big5 656share/doc/postgresql/html/admin.html
657${PG_SUBPREFIX}share/doc/postgresql/README.mb.jp 657share/doc/postgresql/html/adminpack.html
658${PG_SUBPREFIX}share/doc/postgresql/TODO 658share/doc/postgresql/html/app-clusterdb.html
659${PG_SUBPREFIX}share/doc/postgresql/TODO.detail/README 659share/doc/postgresql/html/app-createdb.html
660${PG_SUBPREFIX}share/doc/postgresql/TODO.detail/locale 660share/doc/postgresql/html/app-createlang.html
661${PG_SUBPREFIX}share/doc/postgresql/TODO.detail/merge 661share/doc/postgresql/html/app-createuser.html
662${PG_SUBPREFIX}share/doc/postgresql/TODO.detail/pitr 662share/doc/postgresql/html/app-dropdb.html
663${PG_SUBPREFIX}share/doc/postgresql/TODO.detail/psql 663share/doc/postgresql/html/app-droplang.html
664${PG_SUBPREFIX}share/doc/postgresql/TODO.detail/thread 664share/doc/postgresql/html/app-dropuser.html
665${PG_SUBPREFIX}share/doc/postgresql/TODO.detail/timezone 665share/doc/postgresql/html/app-ecpg.html
666${PG_SUBPREFIX}share/doc/postgresql/TODO.detail/wal 666share/doc/postgresql/html/app-initdb.html
667${PG_SUBPREFIX}share/doc/postgresql/TODO.detail/walcontrol 667share/doc/postgresql/html/app-ipcclean.html
668${PG_SUBPREFIX}share/doc/postgresql/bug.template 668share/doc/postgresql/html/app-pg-ctl.html
669${PG_SUBPREFIX}share/doc/postgresql/html/LEGALNOTICE.html 669share/doc/postgresql/html/app-pg-dumpall.html
670${PG_SUBPREFIX}share/doc/postgresql/html/acronyms.html 670share/doc/postgresql/html/app-pgconfig.html
671${PG_SUBPREFIX}share/doc/postgresql/html/admin.html 671share/doc/postgresql/html/app-pgcontroldata.html
672${PG_SUBPREFIX}share/doc/postgresql/html/adminpack.html 672share/doc/postgresql/html/app-pgdump.html
673${PG_SUBPREFIX}share/doc/postgresql/html/app-clusterdb.html 673share/doc/postgresql/html/app-pgresetxlog.html
674${PG_SUBPREFIX}share/doc/postgresql/html/app-createdb.html 674share/doc/postgresql/html/app-pgrestore.html
675${PG_SUBPREFIX}share/doc/postgresql/html/app-createlang.html 675share/doc/postgresql/html/app-postgres.html
676${PG_SUBPREFIX}share/doc/postgresql/html/app-createuser.html 676share/doc/postgresql/html/app-postmaster.html
677${PG_SUBPREFIX}share/doc/postgresql/html/app-dropdb.html 677share/doc/postgresql/html/app-psql.html
678${PG_SUBPREFIX}share/doc/postgresql/html/app-droplang.html 678share/doc/postgresql/html/app-reindexdb.html
679${PG_SUBPREFIX}share/doc/postgresql/html/app-dropuser.html 679share/doc/postgresql/html/app-vacuumdb.html
680${PG_SUBPREFIX}share/doc/postgresql/html/app-ecpg.html 680share/doc/postgresql/html/appendixes.html
681${PG_SUBPREFIX}share/doc/postgresql/html/app-initdb.html 681share/doc/postgresql/html/applevel-consistency.html
682${PG_SUBPREFIX}share/doc/postgresql/html/app-ipcclean.html 682share/doc/postgresql/html/arrays.html
683${PG_SUBPREFIX}share/doc/postgresql/html/app-pg-ctl.html 683share/doc/postgresql/html/auth-methods.html
684${PG_SUBPREFIX}share/doc/postgresql/html/app-pg-dumpall.html 684share/doc/postgresql/html/auth-pg-hba-conf.html
685${PG_SUBPREFIX}share/doc/postgresql/html/app-pgconfig.html 685share/doc/postgresql/html/backup-dump.html
686${PG_SUBPREFIX}share/doc/postgresql/html/app-pgcontroldata.html 686share/doc/postgresql/html/backup-file.html
687${PG_SUBPREFIX}share/doc/postgresql/html/app-pgdump.html 687share/doc/postgresql/html/backup.html
688${PG_SUBPREFIX}share/doc/postgresql/html/app-pgresetxlog.html 688share/doc/postgresql/html/biblio.html
689${PG_SUBPREFIX}share/doc/postgresql/html/app-pgrestore.html 689share/doc/postgresql/html/bki-commands.html
690${PG_SUBPREFIX}share/doc/postgresql/html/app-postgres.html 690share/doc/postgresql/html/bki-example.html
691${PG_SUBPREFIX}share/doc/postgresql/html/app-postmaster.html 691share/doc/postgresql/html/bki-format.html
692${PG_SUBPREFIX}share/doc/postgresql/html/app-psql.html 692share/doc/postgresql/html/bki-structure.html
693${PG_SUBPREFIX}share/doc/postgresql/html/app-reindexdb.html 693share/doc/postgresql/html/bki.html
694${PG_SUBPREFIX}share/doc/postgresql/html/app-vacuumdb.html 694share/doc/postgresql/html/bookindex.html
695${PG_SUBPREFIX}share/doc/postgresql/html/appendixes.html 695share/doc/postgresql/html/btree-gist.html
696${PG_SUBPREFIX}share/doc/postgresql/html/applevel-consistency.html 696share/doc/postgresql/html/bug-reporting.html
697${PG_SUBPREFIX}share/doc/postgresql/html/arrays.html 697share/doc/postgresql/html/catalog-pg-aggregate.html
698${PG_SUBPREFIX}share/doc/postgresql/html/auth-methods.html 698share/doc/postgresql/html/catalog-pg-am.html
699${PG_SUBPREFIX}share/doc/postgresql/html/auth-pg-hba-conf.html 699share/doc/postgresql/html/catalog-pg-amop.html
700${PG_SUBPREFIX}share/doc/postgresql/html/backup-dump.html 700share/doc/postgresql/html/catalog-pg-amproc.html
701${PG_SUBPREFIX}share/doc/postgresql/html/backup-file.html 701share/doc/postgresql/html/catalog-pg-attrdef.html
702${PG_SUBPREFIX}share/doc/postgresql/html/backup.html 702share/doc/postgresql/html/catalog-pg-attribute.html
703${PG_SUBPREFIX}share/doc/postgresql/html/biblio.html 703share/doc/postgresql/html/catalog-pg-auth-members.html
704${PG_SUBPREFIX}share/doc/postgresql/html/bki-commands.html 704share/doc/postgresql/html/catalog-pg-authid.html
705${PG_SUBPREFIX}share/doc/postgresql/html/bki-example.html 705share/doc/postgresql/html/catalog-pg-autovacuum.html
706${PG_SUBPREFIX}share/doc/postgresql/html/bki-format.html 706share/doc/postgresql/html/catalog-pg-cast.html
707${PG_SUBPREFIX}share/doc/postgresql/html/bki-structure.html 707share/doc/postgresql/html/catalog-pg-class.html
708${PG_SUBPREFIX}share/doc/postgresql/html/bki.html 708share/doc/postgresql/html/catalog-pg-constraint.html
709${PG_SUBPREFIX}share/doc/postgresql/html/bookindex.html 709share/doc/postgresql/html/catalog-pg-conversion.html
710${PG_SUBPREFIX}share/doc/postgresql/html/btree-gist.html 710share/doc/postgresql/html/catalog-pg-database.html
711${PG_SUBPREFIX}share/doc/postgresql/html/bug-reporting.html 711share/doc/postgresql/html/catalog-pg-depend.html
712${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-aggregate.html 712share/doc/postgresql/html/catalog-pg-description.html
713${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-am.html 713share/doc/postgresql/html/catalog-pg-enum.html
714${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-amop.html 714share/doc/postgresql/html/catalog-pg-index.html
715${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-amproc.html 715share/doc/postgresql/html/catalog-pg-inherits.html
716${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-attrdef.html 716share/doc/postgresql/html/catalog-pg-language.html
717${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-attribute.html 717share/doc/postgresql/html/catalog-pg-largeobject.html
718${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-auth-members.html 718share/doc/postgresql/html/catalog-pg-listener.html
719${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-authid.html 719share/doc/postgresql/html/catalog-pg-namespace.html
720${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-autovacuum.html 720share/doc/postgresql/html/catalog-pg-opclass.html
721${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-cast.html 721share/doc/postgresql/html/catalog-pg-operator.html
722${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-class.html 722share/doc/postgresql/html/catalog-pg-opfamily.html
723${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-constraint.html 723share/doc/postgresql/html/catalog-pg-pltemplate.html
724${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-conversion.html 724share/doc/postgresql/html/catalog-pg-proc.html
725${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-database.html 725share/doc/postgresql/html/catalog-pg-rewrite.html
726${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-depend.html 726share/doc/postgresql/html/catalog-pg-shdepend.html
727${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-description.html 727share/doc/postgresql/html/catalog-pg-shdescription.html
728${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-enum.html 728share/doc/postgresql/html/catalog-pg-statistic.html
729${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-index.html 729share/doc/postgresql/html/catalog-pg-tablespace.html
730${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-inherits.html 730share/doc/postgresql/html/catalog-pg-trigger.html
731${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-language.html 731share/doc/postgresql/html/catalog-pg-ts-config-map.html
732${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-largeobject.html 732share/doc/postgresql/html/catalog-pg-ts-config.html
733${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-listener.html 733share/doc/postgresql/html/catalog-pg-ts-dict.html
734${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-namespace.html 734share/doc/postgresql/html/catalog-pg-ts-parser.html
735${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-opclass.html 735share/doc/postgresql/html/catalog-pg-ts-template.html
736${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-operator.html 736share/doc/postgresql/html/catalog-pg-type.html
737${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-opfamily.html 737share/doc/postgresql/html/catalogs-overview.html
738${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-pltemplate.html 738share/doc/postgresql/html/catalogs.html
739${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-proc.html 739share/doc/postgresql/html/charset.html
740${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-rewrite.html 740share/doc/postgresql/html/chkpass.html
741${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-shdepend.html 741share/doc/postgresql/html/client-authentication-problems.html
742${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-shdescription.html 742share/doc/postgresql/html/client-authentication.html
743${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-statistic.html 743share/doc/postgresql/html/client-interfaces.html
744${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-tablespace.html 744share/doc/postgresql/html/config-setting.html
745${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-trigger.html 745share/doc/postgresql/html/connect-estab.html
746${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-ts-config-map.html 746share/doc/postgresql/html/continuous-archiving.html
747${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-ts-config.html 747share/doc/postgresql/html/contrib-dblink-build-sql-delete.html
748${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-ts-dict.html 748share/doc/postgresql/html/contrib-dblink-build-sql-insert.html
749${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-ts-parser.html 749share/doc/postgresql/html/contrib-dblink-build-sql-update.html
750${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-ts-template.html 750share/doc/postgresql/html/contrib-dblink-cancel-query.html
751${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-type.html 751share/doc/postgresql/html/contrib-dblink-close.html
752${PG_SUBPREFIX}share/doc/postgresql/html/catalogs-overview.html 752share/doc/postgresql/html/contrib-dblink-connect-u.html
753${PG_SUBPREFIX}share/doc/postgresql/html/catalogs.html 753share/doc/postgresql/html/contrib-dblink-connect.html
754${PG_SUBPREFIX}share/doc/postgresql/html/charset.html 754share/doc/postgresql/html/contrib-dblink-current-query.html
755${PG_SUBPREFIX}share/doc/postgresql/html/chkpass.html 755share/doc/postgresql/html/contrib-dblink-disconnect.html
756${PG_SUBPREFIX}share/doc/postgresql/html/client-authentication-problems.html 756share/doc/postgresql/html/contrib-dblink-error-message.html
757${PG_SUBPREFIX}share/doc/postgresql/html/client-authentication.html 757share/doc/postgresql/html/contrib-dblink-exec.html
758${PG_SUBPREFIX}share/doc/postgresql/html/client-interfaces.html 758share/doc/postgresql/html/contrib-dblink-fetch.html
759${PG_SUBPREFIX}share/doc/postgresql/html/config-setting.html 759share/doc/postgresql/html/contrib-dblink-get-connections.html
760${PG_SUBPREFIX}share/doc/postgresql/html/connect-estab.html 760share/doc/postgresql/html/contrib-dblink-get-pkey.html
761${PG_SUBPREFIX}share/doc/postgresql/html/continuous-archiving.html 761share/doc/postgresql/html/contrib-dblink-get-result.html
762${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-build-sql-delete.html 762share/doc/postgresql/html/contrib-dblink-is-busy.html
763${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-build-sql-insert.html 763share/doc/postgresql/html/contrib-dblink-open.html
764${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-build-sql-update.html 764share/doc/postgresql/html/contrib-dblink-send-query.html
765${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-cancel-query.html 765share/doc/postgresql/html/contrib-dblink.html
766${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-close.html 766share/doc/postgresql/html/contrib-spi.html
767${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-connect-u.html 767share/doc/postgresql/html/contrib.html
768${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-connect.html 768share/doc/postgresql/html/creating-cluster.html
769${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-current-query.html 769share/doc/postgresql/html/cube.html
770${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-disconnect.html 770share/doc/postgresql/html/database-roles.html
771${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-error-message.html 771share/doc/postgresql/html/datatype-binary.html
772${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-exec.html 772share/doc/postgresql/html/datatype-bit.html
773${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-fetch.html 773share/doc/postgresql/html/datatype-boolean.html
774${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-get-connections.html 774share/doc/postgresql/html/datatype-character.html
775${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-get-pkey.html 775share/doc/postgresql/html/datatype-datetime.html
776${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-get-result.html 776share/doc/postgresql/html/datatype-enum.html
777${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-is-busy.html 777share/doc/postgresql/html/datatype-geometric.html
778${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-open.html 778share/doc/postgresql/html/datatype-money.html
779${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-send-query.html 779share/doc/postgresql/html/datatype-net-types.html
780${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink.html 780share/doc/postgresql/html/datatype-numeric.html
781${PG_SUBPREFIX}share/doc/postgresql/html/contrib-spi.html 781share/doc/postgresql/html/datatype-oid.html
782${PG_SUBPREFIX}share/doc/postgresql/html/contrib.html 782share/doc/postgresql/html/datatype-pseudo.html
783${PG_SUBPREFIX}share/doc/postgresql/html/creating-cluster.html 783share/doc/postgresql/html/datatype-textsearch.html
784${PG_SUBPREFIX}share/doc/postgresql/html/cube.html 784share/doc/postgresql/html/datatype-uuid.html
785${PG_SUBPREFIX}share/doc/postgresql/html/database-roles.html 785share/doc/postgresql/html/datatype-xml.html
786${PG_SUBPREFIX}share/doc/postgresql/html/datatype-binary.html 786share/doc/postgresql/html/datatype.html
787${PG_SUBPREFIX}share/doc/postgresql/html/datatype-bit.html 787share/doc/postgresql/html/datetime-appendix.html
788${PG_SUBPREFIX}share/doc/postgresql/html/datatype-boolean.html 788share/doc/postgresql/html/datetime-config-files.html
789${PG_SUBPREFIX}share/doc/postgresql/html/datatype-character.html 789share/doc/postgresql/html/datetime-input-rules.html
790${PG_SUBPREFIX}share/doc/postgresql/html/datatype-datetime.html 790share/doc/postgresql/html/datetime-keywords.html
791${PG_SUBPREFIX}share/doc/postgresql/html/datatype-enum.html 791share/doc/postgresql/html/datetime-units-history.html
792${PG_SUBPREFIX}share/doc/postgresql/html/datatype-geometric.html 792share/doc/postgresql/html/dblink.html
793${PG_SUBPREFIX}share/doc/postgresql/html/datatype-money.html 793share/doc/postgresql/html/ddl-alter.html
794${PG_SUBPREFIX}share/doc/postgresql/html/datatype-net-types.html 794share/doc/postgresql/html/ddl-basics.html
795${PG_SUBPREFIX}share/doc/postgresql/html/datatype-numeric.html 795share/doc/postgresql/html/ddl-constraints.html
796${PG_SUBPREFIX}share/doc/postgresql/html/datatype-oid.html 796share/doc/postgresql/html/ddl-default.html
797${PG_SUBPREFIX}share/doc/postgresql/html/datatype-pseudo.html 797share/doc/postgresql/html/ddl-depend.html
798${PG_SUBPREFIX}share/doc/postgresql/html/datatype-textsearch.html 798share/doc/postgresql/html/ddl-inherit.html
799${PG_SUBPREFIX}share/doc/postgresql/html/datatype-uuid.html 799share/doc/postgresql/html/ddl-others.html
800${PG_SUBPREFIX}share/doc/postgresql/html/datatype-xml.html 800share/doc/postgresql/html/ddl-partitioning.html
801${PG_SUBPREFIX}share/doc/postgresql/html/datatype.html 801share/doc/postgresql/html/ddl-priv.html
802${PG_SUBPREFIX}share/doc/postgresql/html/datetime-appendix.html 802share/doc/postgresql/html/ddl-schemas.html
803${PG_SUBPREFIX}share/doc/postgresql/html/datetime-config-files.html 803share/doc/postgresql/html/ddl-system-columns.html
804${PG_SUBPREFIX}share/doc/postgresql/html/datetime-input-rules.html 804share/doc/postgresql/html/ddl.html
805${PG_SUBPREFIX}share/doc/postgresql/html/datetime-keywords.html 805share/doc/postgresql/html/dict-int.html
806${PG_SUBPREFIX}share/doc/postgresql/html/datetime-units-history.html 806share/doc/postgresql/html/dict-xsyn.html
807${PG_SUBPREFIX}share/doc/postgresql/html/dblink.html 807share/doc/postgresql/html/disk-full.html
808${PG_SUBPREFIX}share/doc/postgresql/html/ddl-alter.html 808share/doc/postgresql/html/disk-usage.html
809${PG_SUBPREFIX}share/doc/postgresql/html/ddl-basics.html 809share/doc/postgresql/html/diskusage.html
810${PG_SUBPREFIX}share/doc/postgresql/html/ddl-constraints.html 810share/doc/postgresql/html/dml-delete.html
811${PG_SUBPREFIX}share/doc/postgresql/html/ddl-default.html 811share/doc/postgresql/html/dml-insert.html
812${PG_SUBPREFIX}share/doc/postgresql/html/ddl-depend.html 812share/doc/postgresql/html/dml-update.html
813${PG_SUBPREFIX}share/doc/postgresql/html/ddl-inherit.html 813share/doc/postgresql/html/dml.html
814${PG_SUBPREFIX}share/doc/postgresql/html/ddl-others.html 814share/doc/postgresql/html/docguide-authoring.html
815${PG_SUBPREFIX}share/doc/postgresql/html/ddl-partitioning.html 815share/doc/postgresql/html/docguide-build.html
816${PG_SUBPREFIX}share/doc/postgresql/html/ddl-priv.html 816share/doc/postgresql/html/docguide-docbook.html
817${PG_SUBPREFIX}share/doc/postgresql/html/ddl-schemas.html 817share/doc/postgresql/html/docguide-style.html
818${PG_SUBPREFIX}share/doc/postgresql/html/ddl-system-columns.html 818share/doc/postgresql/html/docguide-toolsets.html
819${PG_SUBPREFIX}share/doc/postgresql/html/ddl.html 819share/doc/postgresql/html/docguide.html
820${PG_SUBPREFIX}share/doc/postgresql/html/dict-int.html 820share/doc/postgresql/html/dynamic-trace.html
821${PG_SUBPREFIX}share/doc/postgresql/html/dict-xsyn.html 821share/doc/postgresql/html/earthdistance.html
822${PG_SUBPREFIX}share/doc/postgresql/html/disk-full.html 822share/doc/postgresql/html/ecpg-commands.html
823${PG_SUBPREFIX}share/doc/postgresql/html/disk-usage.html 823share/doc/postgresql/html/ecpg-concept.html
824${PG_SUBPREFIX}share/doc/postgresql/html/diskusage.html 824share/doc/postgresql/html/ecpg-connect.html
825${PG_SUBPREFIX}share/doc/postgresql/html/dml-delete.html 825share/doc/postgresql/html/ecpg-descriptors.html
826${PG_SUBPREFIX}share/doc/postgresql/html/dml-insert.html 826share/doc/postgresql/html/ecpg-develop.html
827${PG_SUBPREFIX}share/doc/postgresql/html/dml-update.html 827share/doc/postgresql/html/ecpg-disconnect.html
828${PG_SUBPREFIX}share/doc/postgresql/html/dml.html 828share/doc/postgresql/html/ecpg-dynamic.html
829${PG_SUBPREFIX}share/doc/postgresql/html/docguide-authoring.html 829share/doc/postgresql/html/ecpg-errors.html
830${PG_SUBPREFIX}share/doc/postgresql/html/docguide-build.html 830share/doc/postgresql/html/ecpg-informix-compat.html
831${PG_SUBPREFIX}share/doc/postgresql/html/docguide-docbook.html 831share/doc/postgresql/html/ecpg-library.html
832${PG_SUBPREFIX}share/doc/postgresql/html/docguide-style.html 832share/doc/postgresql/html/ecpg-pgtypes.html
833${PG_SUBPREFIX}share/doc/postgresql/html/docguide-toolsets.html 833share/doc/postgresql/html/ecpg-preproc.html
834${PG_SUBPREFIX}share/doc/postgresql/html/docguide.html 834share/doc/postgresql/html/ecpg-process.html
835${PG_SUBPREFIX}share/doc/postgresql/html/dynamic-trace.html 835share/doc/postgresql/html/ecpg-set-connection.html
836${PG_SUBPREFIX}share/doc/postgresql/html/earthdistance.html 836share/doc/postgresql/html/ecpg-variables.html
837${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-commands.html 837share/doc/postgresql/html/ecpg.html
838${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-concept.html 838share/doc/postgresql/html/encryption-options.html
839${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-connect.html 839share/doc/postgresql/html/errcodes-appendix.html
840${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-descriptors.html 840share/doc/postgresql/html/error-message-reporting.html
841${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-develop.html 841share/doc/postgresql/html/error-style-guide.html
842${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-disconnect.html 842share/doc/postgresql/html/executor.html
843${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-dynamic.html 843share/doc/postgresql/html/explicit-joins.html
844${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-errors.html 844share/doc/postgresql/html/explicit-locking.html
845${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-informix-compat.html 845share/doc/postgresql/html/extend-how.html
846${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-library.html 846share/doc/postgresql/html/extend-type-system.html
847${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-pgtypes.html 847share/doc/postgresql/html/extend.html
848${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-preproc.html 848share/doc/postgresql/html/external-extensions.html
849${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-process.html 849share/doc/postgresql/html/external-interfaces.html
850${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-set-connection.html 850share/doc/postgresql/html/external-pl.html
851${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-variables.html 851share/doc/postgresql/html/external-projects.html
852${PG_SUBPREFIX}share/doc/postgresql/html/ecpg.html 852share/doc/postgresql/html/features-sql-standard.html
853${PG_SUBPREFIX}share/doc/postgresql/html/encryption-options.html 853share/doc/postgresql/html/features.html
854${PG_SUBPREFIX}share/doc/postgresql/html/errcodes-appendix.html 854share/doc/postgresql/html/functions-admin.html
855${PG_SUBPREFIX}share/doc/postgresql/html/error-message-reporting.html 855share/doc/postgresql/html/functions-aggregate.html
856${PG_SUBPREFIX}share/doc/postgresql/html/error-style-guide.html 856share/doc/postgresql/html/functions-array.html
857${PG_SUBPREFIX}share/doc/postgresql/html/executor.html 857share/doc/postgresql/html/functions-binarystring.html
858${PG_SUBPREFIX}share/doc/postgresql/html/explicit-joins.html 858share/doc/postgresql/html/functions-bitstring.html
859${PG_SUBPREFIX}share/doc/postgresql/html/explicit-locking.html 859share/doc/postgresql/html/functions-comparison.html
860${PG_SUBPREFIX}share/doc/postgresql/html/extend-how.html 860share/doc/postgresql/html/functions-comparisons.html
861${PG_SUBPREFIX}share/doc/postgresql/html/extend-type-system.html 861share/doc/postgresql/html/functions-conditional.html
862${PG_SUBPREFIX}share/doc/postgresql/html/extend.html 862share/doc/postgresql/html/functions-datetime.html
863${PG_SUBPREFIX}share/doc/postgresql/html/external-extensions.html 863share/doc/postgresql/html/functions-enum.html
864${PG_SUBPREFIX}share/doc/postgresql/html/external-interfaces.html 864share/doc/postgresql/html/functions-formatting.html
865${PG_SUBPREFIX}share/doc/postgresql/html/external-pl.html 865share/doc/postgresql/html/functions-geometry.html
866${PG_SUBPREFIX}share/doc/postgresql/html/external-projects.html 866share/doc/postgresql/html/functions-info.html
867${PG_SUBPREFIX}share/doc/postgresql/html/features-sql-standard.html 867share/doc/postgresql/html/functions-logical.html
868${PG_SUBPREFIX}share/doc/postgresql/html/features.html 868share/doc/postgresql/html/functions-matching.html
869${PG_SUBPREFIX}share/doc/postgresql/html/functions-admin.html 869share/doc/postgresql/html/functions-math.html
870${PG_SUBPREFIX}share/doc/postgresql/html/functions-aggregate.html 870share/doc/postgresql/html/functions-net.html
871${PG_SUBPREFIX}share/doc/postgresql/html/functions-array.html 871share/doc/postgresql/html/functions-sequence.html
872${PG_SUBPREFIX}share/doc/postgresql/html/functions-binarystring.html 872share/doc/postgresql/html/functions-srf.html
873${PG_SUBPREFIX}share/doc/postgresql/html/functions-bitstring.html 873share/doc/postgresql/html/functions-string.html
874${PG_SUBPREFIX}share/doc/postgresql/html/functions-comparison.html 874share/doc/postgresql/html/functions-subquery.html
875${PG_SUBPREFIX}share/doc/postgresql/html/functions-comparisons.html 875share/doc/postgresql/html/functions-textsearch.html
876${PG_SUBPREFIX}share/doc/postgresql/html/functions-conditional.html 876share/doc/postgresql/html/functions-xml.html
877${PG_SUBPREFIX}share/doc/postgresql/html/functions-datetime.html 877share/doc/postgresql/html/functions.html
878${PG_SUBPREFIX}share/doc/postgresql/html/functions-enum.html 878share/doc/postgresql/html/fuzzystrmatch.html
879${PG_SUBPREFIX}share/doc/postgresql/html/functions-formatting.html 879share/doc/postgresql/html/geqo-biblio.html
880${PG_SUBPREFIX}share/doc/postgresql/html/functions-geometry.html 880share/doc/postgresql/html/geqo-intro.html
881${PG_SUBPREFIX}share/doc/postgresql/html/functions-info.html 881share/doc/postgresql/html/geqo-intro2.html
882${PG_SUBPREFIX}share/doc/postgresql/html/functions-logical.html 882share/doc/postgresql/html/geqo-pg-intro.html
883${PG_SUBPREFIX}share/doc/postgresql/html/functions-matching.html 883share/doc/postgresql/html/geqo.html
884${PG_SUBPREFIX}share/doc/postgresql/html/functions-math.html 884share/doc/postgresql/html/gin-examples.html
885${PG_SUBPREFIX}share/doc/postgresql/html/functions-net.html 885share/doc/postgresql/html/gin-extensibility.html
886${PG_SUBPREFIX}share/doc/postgresql/html/functions-sequence.html 886share/doc/postgresql/html/gin-implementation.html
887${PG_SUBPREFIX}share/doc/postgresql/html/functions-srf.html 887share/doc/postgresql/html/gin-intro.html
888${PG_SUBPREFIX}share/doc/postgresql/html/functions-string.html 888share/doc/postgresql/html/gin-limit.html
889${PG_SUBPREFIX}share/doc/postgresql/html/functions-subquery.html 889share/doc/postgresql/html/gin-tips.html
890${PG_SUBPREFIX}share/doc/postgresql/html/functions-textsearch.html 890share/doc/postgresql/html/gin.html
891${PG_SUBPREFIX}share/doc/postgresql/html/functions-xml.html 891share/doc/postgresql/html/gist-examples.html
892${PG_SUBPREFIX}share/doc/postgresql/html/functions.html 892share/doc/postgresql/html/gist-extensibility.html
893${PG_SUBPREFIX}share/doc/postgresql/html/fuzzystrmatch.html 893share/doc/postgresql/html/gist-implementation.html
894${PG_SUBPREFIX}share/doc/postgresql/html/geqo-biblio.html 894share/doc/postgresql/html/gist-intro.html
895${PG_SUBPREFIX}share/doc/postgresql/html/geqo-intro.html 895share/doc/postgresql/html/gist-recovery.html
896${PG_SUBPREFIX}share/doc/postgresql/html/geqo-intro2.html 896share/doc/postgresql/html/gist.html
897${PG_SUBPREFIX}share/doc/postgresql/html/geqo-pg-intro.html 897share/doc/postgresql/html/git.html
898${PG_SUBPREFIX}share/doc/postgresql/html/geqo.html 898share/doc/postgresql/html/high-availability.html
899${PG_SUBPREFIX}share/doc/postgresql/html/gin-examples.html 899share/doc/postgresql/html/history.html
900${PG_SUBPREFIX}share/doc/postgresql/html/gin-extensibility.html 900share/doc/postgresql/html/hstore.html
901${PG_SUBPREFIX}share/doc/postgresql/html/gin-implementation.html 901share/doc/postgresql/html/index-catalog.html
902${PG_SUBPREFIX}share/doc/postgresql/html/gin-intro.html 902share/doc/postgresql/html/index-cost-estimation.html
903${PG_SUBPREFIX}share/doc/postgresql/html/gin-limit.html 903share/doc/postgresql/html/index-functions.html
904${PG_SUBPREFIX}share/doc/postgresql/html/gin-tips.html 904share/doc/postgresql/html/index-locking.html
905${PG_SUBPREFIX}share/doc/postgresql/html/gin.html 905share/doc/postgresql/html/index-scanning.html
906${PG_SUBPREFIX}share/doc/postgresql/html/gist-examples.html 906share/doc/postgresql/html/index-unique-checks.html
907${PG_SUBPREFIX}share/doc/postgresql/html/gist-extensibility.html 907share/doc/postgresql/html/index.html
908${PG_SUBPREFIX}share/doc/postgresql/html/gist-implementation.html 908share/doc/postgresql/html/indexam.html
909${PG_SUBPREFIX}share/doc/postgresql/html/gist-intro.html 909share/doc/postgresql/html/indexes-bitmap-scans.html
910${PG_SUBPREFIX}share/doc/postgresql/html/gist-recovery.html 910share/doc/postgresql/html/indexes-examine.html
911${PG_SUBPREFIX}share/doc/postgresql/html/gist.html 911share/doc/postgresql/html/indexes-expressional.html
912${PG_SUBPREFIX}share/doc/postgresql/html/git.html 912share/doc/postgresql/html/indexes-intro.html
913${PG_SUBPREFIX}share/doc/postgresql/html/high-availability.html 913share/doc/postgresql/html/indexes-multicolumn.html
914${PG_SUBPREFIX}share/doc/postgresql/html/history.html 914share/doc/postgresql/html/indexes-opclass.html
915${PG_SUBPREFIX}share/doc/postgresql/html/hstore.html 915share/doc/postgresql/html/indexes-ordering.html
916${PG_SUBPREFIX}share/doc/postgresql/html/index-catalog.html 916share/doc/postgresql/html/indexes-partial.html
917${PG_SUBPREFIX}share/doc/postgresql/html/index-cost-estimation.html 917share/doc/postgresql/html/indexes-types.html
918${PG_SUBPREFIX}share/doc/postgresql/html/index-functions.html 918share/doc/postgresql/html/indexes-unique.html
919${PG_SUBPREFIX}share/doc/postgresql/html/index-locking.html 919share/doc/postgresql/html/indexes.html
920${PG_SUBPREFIX}share/doc/postgresql/html/index-scanning.html 920share/doc/postgresql/html/information-schema.html
921${PG_SUBPREFIX}share/doc/postgresql/html/index-unique-checks.html 921share/doc/postgresql/html/infoschema-administrable-role-authorizations.html
922${PG_SUBPREFIX}share/doc/postgresql/html/index.html 922share/doc/postgresql/html/infoschema-applicable-roles.html
923${PG_SUBPREFIX}share/doc/postgresql/html/indexam.html 923share/doc/postgresql/html/infoschema-attributes.html
924${PG_SUBPREFIX}share/doc/postgresql/html/indexes-bitmap-scans.html 924share/doc/postgresql/html/infoschema-check-constraint-routine-usage.html
925${PG_SUBPREFIX}share/doc/postgresql/html/indexes-examine.html 925share/doc/postgresql/html/infoschema-check-constraints.html
926${PG_SUBPREFIX}share/doc/postgresql/html/indexes-expressional.html 926share/doc/postgresql/html/infoschema-column-domain-usage.html
927${PG_SUBPREFIX}share/doc/postgresql/html/indexes-intro.html 927share/doc/postgresql/html/infoschema-column-privileges.html
928${PG_SUBPREFIX}share/doc/postgresql/html/indexes-multicolumn.html 928share/doc/postgresql/html/infoschema-column-udt-usage.html
929${PG_SUBPREFIX}share/doc/postgresql/html/indexes-opclass.html 929share/doc/postgresql/html/infoschema-columns.html
930${PG_SUBPREFIX}share/doc/postgresql/html/indexes-ordering.html 930share/doc/postgresql/html/infoschema-constraint-column-usage.html
931${PG_SUBPREFIX}share/doc/postgresql/html/indexes-partial.html 931share/doc/postgresql/html/infoschema-constraint-table-usage.html
932${PG_SUBPREFIX}share/doc/postgresql/html/indexes-types.html 932share/doc/postgresql/html/infoschema-data-type-privileges.html
933${PG_SUBPREFIX}share/doc/postgresql/html/indexes-unique.html 933share/doc/postgresql/html/infoschema-datatypes.html
934${PG_SUBPREFIX}share/doc/postgresql/html/indexes.html 934share/doc/postgresql/html/infoschema-domain-constraints.html
935${PG_SUBPREFIX}share/doc/postgresql/html/information-schema.html 935share/doc/postgresql/html/infoschema-domain-udt-usage.html
936${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-administrable-role-authorizations.html 936share/doc/postgresql/html/infoschema-domains.html
937${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-applicable-roles.html 937share/doc/postgresql/html/infoschema-element-types.html
938${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-attributes.html 938share/doc/postgresql/html/infoschema-enabled-roles.html
939${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-check-constraint-routine-usage.html 939share/doc/postgresql/html/infoschema-information-schema-catalog-name.html
940${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-check-constraints.html 940share/doc/postgresql/html/infoschema-key-column-usage.html
941${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-column-domain-usage.html 941share/doc/postgresql/html/infoschema-parameters.html
942${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-column-privileges.html 942share/doc/postgresql/html/infoschema-referential-constraints.html
943${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-column-udt-usage.html 943share/doc/postgresql/html/infoschema-role-column-grants.html
944${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-columns.html 944share/doc/postgresql/html/infoschema-role-routine-grants.html
945${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-constraint-column-usage.html 945share/doc/postgresql/html/infoschema-role-table-grants.html
946${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-constraint-table-usage.html 946share/doc/postgresql/html/infoschema-role-usage-grants.html
947${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-data-type-privileges.html 947share/doc/postgresql/html/infoschema-routine-privileges.html
948${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-datatypes.html 948share/doc/postgresql/html/infoschema-routines.html
949${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-domain-constraints.html 949share/doc/postgresql/html/infoschema-schema.html
950${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-domain-udt-usage.html 950share/doc/postgresql/html/infoschema-schemata.html
951${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-domains.html 951share/doc/postgresql/html/infoschema-sequences.html
952${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-element-types.html 952share/doc/postgresql/html/infoschema-sql-features.html
953${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-enabled-roles.html 953share/doc/postgresql/html/infoschema-sql-implementation-info.html
954${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-information-schema-catalog-name.html 954share/doc/postgresql/html/infoschema-sql-languages.html
955${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-key-column-usage.html 955share/doc/postgresql/html/infoschema-sql-packages.html
956${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-parameters.html 956share/doc/postgresql/html/infoschema-sql-parts.html
957${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-referential-constraints.html 957share/doc/postgresql/html/infoschema-sql-sizing-profiles.html
958${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-role-column-grants.html 958share/doc/postgresql/html/infoschema-sql-sizing.html
959${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-role-routine-grants.html 959share/doc/postgresql/html/infoschema-table-constraints.html
960${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-role-table-grants.html 960share/doc/postgresql/html/infoschema-table-privileges.html
961${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-role-usage-grants.html 961share/doc/postgresql/html/infoschema-tables.html
962${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-routine-privileges.html 962share/doc/postgresql/html/infoschema-triggers.html
963${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-routines.html 963share/doc/postgresql/html/infoschema-usage-privileges.html
964${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-schema.html 964share/doc/postgresql/html/infoschema-view-column-usage.html
965${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-schemata.html 965share/doc/postgresql/html/infoschema-view-routine-usage.html
966${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-sequences.html 966share/doc/postgresql/html/infoschema-view-table-usage.html
967${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-sql-features.html 967share/doc/postgresql/html/infoschema-views.html
968${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-sql-implementation-info.html 968share/doc/postgresql/html/install-getsource.html
969${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-sql-languages.html 969share/doc/postgresql/html/install-post.html
970${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-sql-packages.html 970share/doc/postgresql/html/install-procedure.html
971${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-sql-parts.html 971share/doc/postgresql/html/install-requirements.html
972${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-sql-sizing-profiles.html 972share/doc/postgresql/html/install-short.html
973${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-sql-sizing.html 973share/doc/postgresql/html/install-upgrading.html
974${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-table-constraints.html 974share/doc/postgresql/html/install-win32-full.html
975${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-table-privileges.html 975share/doc/postgresql/html/install-win32-libpq.html
976${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-tables.html 976share/doc/postgresql/html/install-win32.html
977${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-triggers.html 977share/doc/postgresql/html/installation.html
978${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-usage-privileges.html 978share/doc/postgresql/html/intagg.html
979${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-view-column-usage.html 979share/doc/postgresql/html/intarray.html
980${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-view-routine-usage.html 980share/doc/postgresql/html/internals.html
981${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-view-table-usage.html 981share/doc/postgresql/html/intro-whatis.html
982${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-views.html 982share/doc/postgresql/html/isn.html
983${PG_SUBPREFIX}share/doc/postgresql/html/install-getsource.html 983share/doc/postgresql/html/kernel-resources.html
984${PG_SUBPREFIX}share/doc/postgresql/html/install-post.html 984share/doc/postgresql/html/largeobjects.html
985${PG_SUBPREFIX}share/doc/postgresql/html/install-procedure.html 985share/doc/postgresql/html/libpq-async.html
986${PG_SUBPREFIX}share/doc/postgresql/html/install-requirements.html 986share/doc/postgresql/html/libpq-build.html
987${PG_SUBPREFIX}share/doc/postgresql/html/install-short.html 987share/doc/postgresql/html/libpq-cancel.html
988${PG_SUBPREFIX}share/doc/postgresql/html/install-upgrading.html 988share/doc/postgresql/html/libpq-connect.html
989${PG_SUBPREFIX}share/doc/postgresql/html/install-win32-full.html 989share/doc/postgresql/html/libpq-control.html
990${PG_SUBPREFIX}share/doc/postgresql/html/install-win32-libpq.html 990share/doc/postgresql/html/libpq-copy.html
991${PG_SUBPREFIX}share/doc/postgresql/html/install-win32.html 991share/doc/postgresql/html/libpq-envars.html
992${PG_SUBPREFIX}share/doc/postgresql/html/installation.html 992share/doc/postgresql/html/libpq-example.html
993${PG_SUBPREFIX}share/doc/postgresql/html/intagg.html 993share/doc/postgresql/html/libpq-exec.html
994${PG_SUBPREFIX}share/doc/postgresql/html/intarray.html 994share/doc/postgresql/html/libpq-fastpath.html
995${PG_SUBPREFIX}share/doc/postgresql/html/internals.html 995share/doc/postgresql/html/libpq-ldap.html
996${PG_SUBPREFIX}share/doc/postgresql/html/intro-whatis.html 996share/doc/postgresql/html/libpq-misc.html
997${PG_SUBPREFIX}share/doc/postgresql/html/isn.html 997share/doc/postgresql/html/libpq-notice-processing.html
998${PG_SUBPREFIX}share/doc/postgresql/html/kernel-resources.html 998share/doc/postgresql/html/libpq-notify.html
999${PG_SUBPREFIX}share/doc/postgresql/html/largeobjects.html 999share/doc/postgresql/html/libpq-pgpass.html
1000${PG_SUBPREFIX}share/doc/postgresql/html/libpq-async.html 1000share/doc/postgresql/html/libpq-pgservice.html
1001${PG_SUBPREFIX}share/doc/postgresql/html/libpq-build.html 1001share/doc/postgresql/html/libpq-ssl.html
1002${PG_SUBPREFIX}share/doc/postgresql/html/libpq-cancel.html 1002share/doc/postgresql/html/libpq-status.html
1003${PG_SUBPREFIX}share/doc/postgresql/html/libpq-connect.html 1003share/doc/postgresql/html/libpq-threading.html
1004${PG_SUBPREFIX}share/doc/postgresql/html/libpq-control.html 1004share/doc/postgresql/html/libpq.html
1005${PG_SUBPREFIX}share/doc/postgresql/html/libpq-copy.html 1005share/doc/postgresql/html/lo-examplesect.html
1006${PG_SUBPREFIX}share/doc/postgresql/html/libpq-envars.html 1006share/doc/postgresql/html/lo-funcs.html
1007${PG_SUBPREFIX}share/doc/postgresql/html/libpq-example.html 1007share/doc/postgresql/html/lo-implementation.html
1008${PG_SUBPREFIX}share/doc/postgresql/html/libpq-exec.html 1008share/doc/postgresql/html/lo-interfaces.html
1009${PG_SUBPREFIX}share/doc/postgresql/html/libpq-fastpath.html 1009share/doc/postgresql/html/lo-intro.html
1010${PG_SUBPREFIX}share/doc/postgresql/html/libpq-ldap.html 1010share/doc/postgresql/html/lo.html
1011${PG_SUBPREFIX}share/doc/postgresql/html/libpq-misc.html 1011share/doc/postgresql/html/locale.html
1012${PG_SUBPREFIX}share/doc/postgresql/html/libpq-notice-processing.html 1012share/doc/postgresql/html/locking-indexes.html
1013${PG_SUBPREFIX}share/doc/postgresql/html/libpq-notify.html 1013share/doc/postgresql/html/logfile-maintenance.html
1014${PG_SUBPREFIX}share/doc/postgresql/html/libpq-pgpass.html 1014share/doc/postgresql/html/ltree.html
1015${PG_SUBPREFIX}share/doc/postgresql/html/libpq-pgservice.html 1015share/doc/postgresql/html/maintenance.html
1016${PG_SUBPREFIX}share/doc/postgresql/html/libpq-ssl.html 1016share/doc/postgresql/html/manage-ag-config.html
1017${PG_SUBPREFIX}share/doc/postgresql/html/libpq-status.html 1017share/doc/postgresql/html/manage-ag-createdb.html
1018${PG_SUBPREFIX}share/doc/postgresql/html/libpq-threading.html 1018share/doc/postgresql/html/manage-ag-dropdb.html
1019${PG_SUBPREFIX}share/doc/postgresql/html/libpq.html 1019share/doc/postgresql/html/manage-ag-overview.html
1020${PG_SUBPREFIX}share/doc/postgresql/html/lo-examplesect.html 1020share/doc/postgresql/html/manage-ag-tablespaces.html
1021${PG_SUBPREFIX}share/doc/postgresql/html/lo-funcs.html 1021share/doc/postgresql/html/manage-ag-templatedbs.html
1022${PG_SUBPREFIX}share/doc/postgresql/html/lo-implementation.html 1022share/doc/postgresql/html/managing-databases.html
1023${PG_SUBPREFIX}share/doc/postgresql/html/lo-interfaces.html 1023share/doc/postgresql/html/migration.html
1024${PG_SUBPREFIX}share/doc/postgresql/html/lo-intro.html 1024share/doc/postgresql/html/monitoring-locks.html
1025${PG_SUBPREFIX}share/doc/postgresql/html/lo.html 1025share/doc/postgresql/html/monitoring-ps.html
1026${PG_SUBPREFIX}share/doc/postgresql/html/locale.html 1026share/doc/postgresql/html/monitoring-stats.html
1027${PG_SUBPREFIX}share/doc/postgresql/html/locking-indexes.html 1027share/doc/postgresql/html/monitoring.html
1028${PG_SUBPREFIX}share/doc/postgresql/html/logfile-maintenance.html 1028share/doc/postgresql/html/multibyte.html
1029${PG_SUBPREFIX}share/doc/postgresql/html/ltree.html 1029share/doc/postgresql/html/mvcc-intro.html
1030${PG_SUBPREFIX}share/doc/postgresql/html/maintenance.html 1030share/doc/postgresql/html/mvcc.html
1031${PG_SUBPREFIX}share/doc/postgresql/html/manage-ag-config.html 1031share/doc/postgresql/html/nls-programmer.html
1032${PG_SUBPREFIX}share/doc/postgresql/html/manage-ag-createdb.html 1032share/doc/postgresql/html/nls-translator.html
1033${PG_SUBPREFIX}share/doc/postgresql/html/manage-ag-dropdb.html 1033share/doc/postgresql/html/nls.html
1034${PG_SUBPREFIX}share/doc/postgresql/html/manage-ag-overview.html 1034share/doc/postgresql/html/notation.html
1035${PG_SUBPREFIX}share/doc/postgresql/html/manage-ag-tablespaces.html 1035share/doc/postgresql/html/oid2name.html
1036${PG_SUBPREFIX}share/doc/postgresql/html/manage-ag-templatedbs.html 1036share/doc/postgresql/html/overview.html
1037${PG_SUBPREFIX}share/doc/postgresql/html/managing-databases.html 1037share/doc/postgresql/html/pageinspect.html
1038${PG_SUBPREFIX}share/doc/postgresql/html/migration.html 1038share/doc/postgresql/html/parser-stage.html
1039${PG_SUBPREFIX}share/doc/postgresql/html/monitoring-locks.html 1039share/doc/postgresql/html/performance-tips.html
1040${PG_SUBPREFIX}share/doc/postgresql/html/monitoring-ps.html 1040share/doc/postgresql/html/perm-functions.html
1041${PG_SUBPREFIX}share/doc/postgresql/html/monitoring-stats.html 1041share/doc/postgresql/html/pgbench.html
1042${PG_SUBPREFIX}share/doc/postgresql/html/monitoring.html 1042share/doc/postgresql/html/pgbuffercache.html
1043${PG_SUBPREFIX}share/doc/postgresql/html/multibyte.html 1043share/doc/postgresql/html/pgcrypto.html
1044${PG_SUBPREFIX}share/doc/postgresql/html/mvcc-intro.html 1044share/doc/postgresql/html/pgfreespacemap.html
1045${PG_SUBPREFIX}share/doc/postgresql/html/mvcc.html 1045share/doc/postgresql/html/pgrowlocks.html
1046${PG_SUBPREFIX}share/doc/postgresql/html/nls-programmer.html 1046share/doc/postgresql/html/pgstandby.html
1047${PG_SUBPREFIX}share/doc/postgresql/html/nls-translator.html 1047share/doc/postgresql/html/pgstattuple.html
1048${PG_SUBPREFIX}share/doc/postgresql/html/nls.html 1048share/doc/postgresql/html/pgtrgm.html
1049${PG_SUBPREFIX}share/doc/postgresql/html/notation.html 1049share/doc/postgresql/html/planner-optimizer.html
1050${PG_SUBPREFIX}share/doc/postgresql/html/oid2name.html 1050share/doc/postgresql/html/planner-stats-details.html
1051${PG_SUBPREFIX}share/doc/postgresql/html/overview.html 1051share/doc/postgresql/html/planner-stats.html
1052${PG_SUBPREFIX}share/doc/postgresql/html/pageinspect.html 1052share/doc/postgresql/html/plhandler.html
1053${PG_SUBPREFIX}share/doc/postgresql/html/parser-stage.html 1053share/doc/postgresql/html/plperl-data.html
1054${PG_SUBPREFIX}share/doc/postgresql/html/performance-tips.html 1054share/doc/postgresql/html/plperl-database.html
1055${PG_SUBPREFIX}share/doc/postgresql/html/perm-functions.html 1055share/doc/postgresql/html/plperl-funcs.html
1056${PG_SUBPREFIX}share/doc/postgresql/html/pgbench.html 1056share/doc/postgresql/html/plperl-global.html
1057${PG_SUBPREFIX}share/doc/postgresql/html/pgbuffercache.html 1057share/doc/postgresql/html/plperl-missing.html
1058${PG_SUBPREFIX}share/doc/postgresql/html/pgcrypto.html 1058share/doc/postgresql/html/plperl-triggers.html
1059${PG_SUBPREFIX}share/doc/postgresql/html/pgfreespacemap.html 1059share/doc/postgresql/html/plperl-trusted.html
1060${PG_SUBPREFIX}share/doc/postgresql/html/pgrowlocks.html 1060share/doc/postgresql/html/plperl.html
1061${PG_SUBPREFIX}share/doc/postgresql/html/pgstandby.html 1061share/doc/postgresql/html/plpgsql-control-structures.html
1062${PG_SUBPREFIX}share/doc/postgresql/html/pgstattuple.html 1062share/doc/postgresql/html/plpgsql-cursors.html
1063${PG_SUBPREFIX}share/doc/postgresql/html/pgtrgm.html 1063share/doc/postgresql/html/plpgsql-declarations.html
1064${PG_SUBPREFIX}share/doc/postgresql/html/planner-optimizer.html 1064share/doc/postgresql/html/plpgsql-development-tips.html
1065${PG_SUBPREFIX}share/doc/postgresql/html/planner-stats-details.html 1065share/doc/postgresql/html/plpgsql-errors-and-messages.html
1066${PG_SUBPREFIX}share/doc/postgresql/html/planner-stats.html 1066share/doc/postgresql/html/plpgsql-expressions.html
1067${PG_SUBPREFIX}share/doc/postgresql/html/plhandler.html 1067share/doc/postgresql/html/plpgsql-implementation.html
1068${PG_SUBPREFIX}share/doc/postgresql/html/plperl-data.html 1068share/doc/postgresql/html/plpgsql-overview.html
1069${PG_SUBPREFIX}share/doc/postgresql/html/plperl-database.html 1069share/doc/postgresql/html/plpgsql-porting.html
1070${PG_SUBPREFIX}share/doc/postgresql/html/plperl-funcs.html 1070share/doc/postgresql/html/plpgsql-statements.html
1071${PG_SUBPREFIX}share/doc/postgresql/html/plperl-global.html 1071share/doc/postgresql/html/plpgsql-structure.html
1072${PG_SUBPREFIX}share/doc/postgresql/html/plperl-missing.html 1072share/doc/postgresql/html/plpgsql-trigger.html
1073${PG_SUBPREFIX}share/doc/postgresql/html/plperl-triggers.html 1073share/doc/postgresql/html/plpgsql.html
1074${PG_SUBPREFIX}share/doc/postgresql/html/plperl-trusted.html 1074share/doc/postgresql/html/plpython-database.html
1075${PG_SUBPREFIX}share/doc/postgresql/html/plperl.html 1075share/doc/postgresql/html/plpython-funcs.html
1076${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql-control-structures.html 1076share/doc/postgresql/html/plpython-trigger.html
1077${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql-cursors.html 1077share/doc/postgresql/html/plpython.html
1078${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql-declarations.html 1078share/doc/postgresql/html/pltcl-data.html
1079${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql-development-tips.html 1079share/doc/postgresql/html/pltcl-dbaccess.html
1080${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql-errors-and-messages.html 1080share/doc/postgresql/html/pltcl-functions.html
1081${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql-expressions.html 1081share/doc/postgresql/html/pltcl-global.html
1082${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql-implementation.html 1082share/doc/postgresql/html/pltcl-overview.html
1083${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql-overview.html 1083share/doc/postgresql/html/pltcl-procnames.html
1084${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql-porting.html 1084share/doc/postgresql/html/pltcl-trigger.html
1085${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql-statements.html 1085share/doc/postgresql/html/pltcl-unknown.html
1086${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql-structure.html 1086share/doc/postgresql/html/pltcl.html
1087${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql-trigger.html 1087share/doc/postgresql/html/populate.html
1088${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql.html 1088share/doc/postgresql/html/postgres-user.html
1089${PG_SUBPREFIX}share/doc/postgresql/html/plpython-database.html 1089share/doc/postgresql/html/preface.html
1090${PG_SUBPREFIX}share/doc/postgresql/html/plpython-funcs.html 1090share/doc/postgresql/html/preventing-server-spoofing.html
1091${PG_SUBPREFIX}share/doc/postgresql/html/plpython-trigger.html 1091share/doc/postgresql/html/privileges.html
1092${PG_SUBPREFIX}share/doc/postgresql/html/plpython.html 1092share/doc/postgresql/html/protocol-changes.html
1093${PG_SUBPREFIX}share/doc/postgresql/html/pltcl-data.html 1093share/doc/postgresql/html/protocol-error-fields.html
1094${PG_SUBPREFIX}share/doc/postgresql/html/pltcl-dbaccess.html 1094share/doc/postgresql/html/protocol-flow.html
1095${PG_SUBPREFIX}share/doc/postgresql/html/pltcl-functions.html 1095share/doc/postgresql/html/protocol-message-formats.html
1096${PG_SUBPREFIX}share/doc/postgresql/html/pltcl-global.html 1096share/doc/postgresql/html/protocol-message-types.html
1097${PG_SUBPREFIX}share/doc/postgresql/html/pltcl-overview.html 1097share/doc/postgresql/html/protocol-overview.html
1098${PG_SUBPREFIX}share/doc/postgresql/html/pltcl-procnames.html 1098share/doc/postgresql/html/protocol.html
1099${PG_SUBPREFIX}share/doc/postgresql/html/pltcl-trigger.html 1099share/doc/postgresql/html/queries-limit.html
1100${PG_SUBPREFIX}share/doc/postgresql/html/pltcl-unknown.html 1100share/doc/postgresql/html/queries-order.html
1101${PG_SUBPREFIX}share/doc/postgresql/html/pltcl.html 1101share/doc/postgresql/html/queries-overview.html
1102${PG_SUBPREFIX}share/doc/postgresql/html/populate.html 1102share/doc/postgresql/html/queries-select-lists.html
1103${PG_SUBPREFIX}share/doc/postgresql/html/postgres-user.html 1103share/doc/postgresql/html/queries-table-expressions.html
1104${PG_SUBPREFIX}share/doc/postgresql/html/preface.html 1104share/doc/postgresql/html/queries-union.html
1105${PG_SUBPREFIX}share/doc/postgresql/html/preventing-server-spoofing.html 1105share/doc/postgresql/html/queries-values.html
1106${PG_SUBPREFIX}share/doc/postgresql/html/privileges.html 1106share/doc/postgresql/html/queries.html
1107${PG_SUBPREFIX}share/doc/postgresql/html/protocol-changes.html 1107share/doc/postgresql/html/query-path.html
1108${PG_SUBPREFIX}share/doc/postgresql/html/protocol-error-fields.html 1108share/doc/postgresql/html/querytree.html
1109${PG_SUBPREFIX}share/doc/postgresql/html/protocol-flow.html 1109share/doc/postgresql/html/reference-client.html
1110${PG_SUBPREFIX}share/doc/postgresql/html/protocol-message-formats.html 1110share/doc/postgresql/html/reference-server.html
1111${PG_SUBPREFIX}share/doc/postgresql/html/protocol-message-types.html 1111share/doc/postgresql/html/reference.html
1112${PG_SUBPREFIX}share/doc/postgresql/html/protocol-overview.html 1112share/doc/postgresql/html/regress-evaluation.html
1113${PG_SUBPREFIX}share/doc/postgresql/html/protocol.html 1113share/doc/postgresql/html/regress-run.html
1114${PG_SUBPREFIX}share/doc/postgresql/html/queries-limit.html 1114share/doc/postgresql/html/regress-variant.html
1115${PG_SUBPREFIX}share/doc/postgresql/html/queries-order.html 1115share/doc/postgresql/html/regress.html
1116${PG_SUBPREFIX}share/doc/postgresql/html/queries-overview.html 1116share/doc/postgresql/html/release-0-01.html
1117${PG_SUBPREFIX}share/doc/postgresql/html/queries-select-lists.html 1117share/doc/postgresql/html/release-0-02.html
1118${PG_SUBPREFIX}share/doc/postgresql/html/queries-table-expressions.html 1118share/doc/postgresql/html/release-0-03.html
1119${PG_SUBPREFIX}share/doc/postgresql/html/queries-union.html 1119share/doc/postgresql/html/release-1-0.html
1120${PG_SUBPREFIX}share/doc/postgresql/html/queries-values.html 1120share/doc/postgresql/html/release-1-01.html
1121${PG_SUBPREFIX}share/doc/postgresql/html/queries.html 1121share/doc/postgresql/html/release-1-02.html
1122${PG_SUBPREFIX}share/doc/postgresql/html/query-path.html 1122share/doc/postgresql/html/release-1-09.html
1123${PG_SUBPREFIX}share/doc/postgresql/html/querytree.html 1123share/doc/postgresql/html/release-6-0.html
1124${PG_SUBPREFIX}share/doc/postgresql/html/reference-client.html 1124share/doc/postgresql/html/release-6-1-1.html
1125${PG_SUBPREFIX}share/doc/postgresql/html/reference-server.html 1125share/doc/postgresql/html/release-6-1.html
1126${PG_SUBPREFIX}share/doc/postgresql/html/reference.html 1126share/doc/postgresql/html/release-6-2-1.html
1127${PG_SUBPREFIX}share/doc/postgresql/html/regress-evaluation.html 1127share/doc/postgresql/html/release-6-2.html
1128${PG_SUBPREFIX}share/doc/postgresql/html/regress-run.html 1128share/doc/postgresql/html/release-6-3-1.html
1129${PG_SUBPREFIX}share/doc/postgresql/html/regress-variant.html 1129share/doc/postgresql/html/release-6-3-2.html
1130${PG_SUBPREFIX}share/doc/postgresql/html/regress.html 1130share/doc/postgresql/html/release-6-3.html
1131${PG_SUBPREFIX}share/doc/postgresql/html/release-0-01.html 1131share/doc/postgresql/html/release-6-4-1.html
1132${PG_SUBPREFIX}share/doc/postgresql/html/release-0-02.html 1132share/doc/postgresql/html/release-6-4-2.html
1133${PG_SUBPREFIX}share/doc/postgresql/html/release-0-03.html 1133share/doc/postgresql/html/release-6-4.html
1134${PG_SUBPREFIX}share/doc/postgresql/html/release-1-0.html 1134share/doc/postgresql/html/release-6-5-1.html
1135${PG_SUBPREFIX}share/doc/postgresql/html/release-1-01.html 1135share/doc/postgresql/html/release-6-5-2.html
1136${PG_SUBPREFIX}share/doc/postgresql/html/release-1-02.html 1136share/doc/postgresql/html/release-6-5-3.html
1137${PG_SUBPREFIX}share/doc/postgresql/html/release-1-09.html 1137share/doc/postgresql/html/release-6-5.html
1138${PG_SUBPREFIX}share/doc/postgresql/html/release-6-0.html 1138share/doc/postgresql/html/release-7-0-1.html
1139${PG_SUBPREFIX}share/doc/postgresql/html/release-6-1-1.html 1139share/doc/postgresql/html/release-7-0-2.html
1140${PG_SUBPREFIX}share/doc/postgresql/html/release-6-1.html 1140share/doc/postgresql/html/release-7-0-3.html
1141${PG_SUBPREFIX}share/doc/postgresql/html/release-6-2-1.html 1141share/doc/postgresql/html/release-7-0.html
1142${PG_SUBPREFIX}share/doc/postgresql/html/release-6-2.html 1142share/doc/postgresql/html/release-7-1-1.html
1143${PG_SUBPREFIX}share/doc/postgresql/html/release-6-3-1.html 1143share/doc/postgresql/html/release-7-1-2.html
1144${PG_SUBPREFIX}share/doc/postgresql/html/release-6-3-2.html 1144share/doc/postgresql/html/release-7-1-3.html
1145${PG_SUBPREFIX}share/doc/postgresql/html/release-6-3.html 1145share/doc/postgresql/html/release-7-1.html
1146${PG_SUBPREFIX}share/doc/postgresql/html/release-6-4-1.html 1146share/doc/postgresql/html/release-7-2-1.html
1147${PG_SUBPREFIX}share/doc/postgresql/html/release-6-4-2.html 1147share/doc/postgresql/html/release-7-2-2.html
1148${PG_SUBPREFIX}share/doc/postgresql/html/release-6-4.html 1148share/doc/postgresql/html/release-7-2-3.html
1149${PG_SUBPREFIX}share/doc/postgresql/html/release-6-5-1.html 1149share/doc/postgresql/html/release-7-2-4.html
1150${PG_SUBPREFIX}share/doc/postgresql/html/release-6-5-2.html 1150share/doc/postgresql/html/release-7-2-5.html
1151${PG_SUBPREFIX}share/doc/postgresql/html/release-6-5-3.html 1151share/doc/postgresql/html/release-7-2-6.html
1152${PG_SUBPREFIX}share/doc/postgresql/html/release-6-5.html 1152share/doc/postgresql/html/release-7-2-7.html
1153${PG_SUBPREFIX}share/doc/postgresql/html/release-7-0-1.html 1153share/doc/postgresql/html/release-7-2-8.html
1154${PG_SUBPREFIX}share/doc/postgresql/html/release-7-0-2.html 1154share/doc/postgresql/html/release-7-2.html
1155${PG_SUBPREFIX}share/doc/postgresql/html/release-7-0-3.html 1155share/doc/postgresql/html/release-7-3-1.html
1156${PG_SUBPREFIX}share/doc/postgresql/html/release-7-0.html 1156share/doc/postgresql/html/release-7-3-10.html
1157${PG_SUBPREFIX}share/doc/postgresql/html/release-7-1-1.html 1157share/doc/postgresql/html/release-7-3-11.html
1158${PG_SUBPREFIX}share/doc/postgresql/html/release-7-1-2.html 1158share/doc/postgresql/html/release-7-3-12.html
1159${PG_SUBPREFIX}share/doc/postgresql/html/release-7-1-3.html 1159share/doc/postgresql/html/release-7-3-13.html
1160${PG_SUBPREFIX}share/doc/postgresql/html/release-7-1.html 1160share/doc/postgresql/html/release-7-3-14.html
1161${PG_SUBPREFIX}share/doc/postgresql/html/release-7-2-1.html 1161share/doc/postgresql/html/release-7-3-15.html
1162${PG_SUBPREFIX}share/doc/postgresql/html/release-7-2-2.html 1162share/doc/postgresql/html/release-7-3-16.html
1163${PG_SUBPREFIX}share/doc/postgresql/html/release-7-2-3.html 1163share/doc/postgresql/html/release-7-3-17.html
1164${PG_SUBPREFIX}share/doc/postgresql/html/release-7-2-4.html 1164share/doc/postgresql/html/release-7-3-18.html
1165${PG_SUBPREFIX}share/doc/postgresql/html/release-7-2-5.html 1165share/doc/postgresql/html/release-7-3-19.html
1166${PG_SUBPREFIX}share/doc/postgresql/html/release-7-2-6.html 1166share/doc/postgresql/html/release-7-3-2.html
1167${PG_SUBPREFIX}share/doc/postgresql/html/release-7-2-7.html 1167share/doc/postgresql/html/release-7-3-20.html
1168${PG_SUBPREFIX}share/doc/postgresql/html/release-7-2-8.html 1168share/doc/postgresql/html/release-7-3-21.html
1169${PG_SUBPREFIX}share/doc/postgresql/html/release-7-2.html 1169share/doc/postgresql/html/release-7-3-3.html
1170${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-1.html 1170share/doc/postgresql/html/release-7-3-4.html
1171${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-10.html 1171share/doc/postgresql/html/release-7-3-5.html
1172${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-11.html 1172share/doc/postgresql/html/release-7-3-6.html
1173${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-12.html 1173share/doc/postgresql/html/release-7-3-7.html
1174${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-13.html 1174share/doc/postgresql/html/release-7-3-8.html
1175${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-14.html 1175share/doc/postgresql/html/release-7-3-9.html
1176${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-15.html 1176share/doc/postgresql/html/release-7-3.html
1177${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-16.html 1177share/doc/postgresql/html/release-7-4-1.html
1178${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-17.html 1178share/doc/postgresql/html/release-7-4-10.html
1179${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-18.html 1179share/doc/postgresql/html/release-7-4-11.html
1180${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-19.html 1180share/doc/postgresql/html/release-7-4-12.html
1181${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-2.html 1181share/doc/postgresql/html/release-7-4-13.html
1182${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-20.html 1182share/doc/postgresql/html/release-7-4-14.html
1183${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-21.html 1183share/doc/postgresql/html/release-7-4-15.html
1184${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-3.html 1184share/doc/postgresql/html/release-7-4-16.html
1185${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-4.html 1185share/doc/postgresql/html/release-7-4-17.html
1186${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-5.html 1186share/doc/postgresql/html/release-7-4-18.html
1187${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-6.html 1187share/doc/postgresql/html/release-7-4-19.html
1188${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-7.html 1188share/doc/postgresql/html/release-7-4-2.html
1189${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-8.html 1189share/doc/postgresql/html/release-7-4-20.html
1190${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-9.html 1190share/doc/postgresql/html/release-7-4-21.html
1191${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3.html 1191share/doc/postgresql/html/release-7-4-22.html
1192${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-1.html 1192share/doc/postgresql/html/release-7-4-23.html
1193${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-10.html 1193share/doc/postgresql/html/release-7-4-24.html
1194${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-11.html 1194share/doc/postgresql/html/release-7-4-25.html
1195${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-12.html 1195share/doc/postgresql/html/release-7-4-26.html
1196${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-13.html 1196share/doc/postgresql/html/release-7-4-27.html
1197${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-14.html 1197share/doc/postgresql/html/release-7-4-28.html
1198${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-15.html 1198share/doc/postgresql/html/release-7-4-29.html
1199${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-16.html 1199share/doc/postgresql/html/release-7-4-3.html
1200${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-17.html 1200share/doc/postgresql/html/release-7-4-30.html
1201${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-18.html 1201share/doc/postgresql/html/release-7-4-4.html
1202${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-19.html 1202share/doc/postgresql/html/release-7-4-5.html
1203${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-2.html 1203share/doc/postgresql/html/release-7-4-6.html
1204${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-20.html 1204share/doc/postgresql/html/release-7-4-7.html
1205${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-21.html 1205share/doc/postgresql/html/release-7-4-8.html
1206${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-22.html 1206share/doc/postgresql/html/release-7-4-9.html
1207${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-23.html 1207share/doc/postgresql/html/release-7-4.html
1208${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-24.html 1208share/doc/postgresql/html/release-8-0-1.html
1209${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-25.html 1209share/doc/postgresql/html/release-8-0-10.html
1210${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-26.html 1210share/doc/postgresql/html/release-8-0-11.html
1211${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-27.html 1211share/doc/postgresql/html/release-8-0-12.html
1212${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-28.html 1212share/doc/postgresql/html/release-8-0-13.html
1213${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-29.html 1213share/doc/postgresql/html/release-8-0-14.html
1214${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-3.html 1214share/doc/postgresql/html/release-8-0-15.html
1215${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-30.html 1215share/doc/postgresql/html/release-8-0-16.html
1216${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-4.html 1216share/doc/postgresql/html/release-8-0-17.html
1217${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-5.html 1217share/doc/postgresql/html/release-8-0-18.html
1218${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-6.html 1218share/doc/postgresql/html/release-8-0-19.html
1219${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-7.html 1219share/doc/postgresql/html/release-8-0-2.html
1220${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-8.html 1220share/doc/postgresql/html/release-8-0-20.html
1221${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-9.html 1221share/doc/postgresql/html/release-8-0-21.html
1222${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4.html 1222share/doc/postgresql/html/release-8-0-22.html
1223${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-1.html 1223share/doc/postgresql/html/release-8-0-23.html
1224${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-10.html 1224share/doc/postgresql/html/release-8-0-24.html
1225${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-11.html 1225share/doc/postgresql/html/release-8-0-25.html
1226${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-12.html 1226share/doc/postgresql/html/release-8-0-26.html
1227${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-13.html 1227share/doc/postgresql/html/release-8-0-3.html
1228${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-14.html 1228share/doc/postgresql/html/release-8-0-4.html
1229${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-15.html 1229share/doc/postgresql/html/release-8-0-5.html
1230${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-16.html 1230share/doc/postgresql/html/release-8-0-6.html
1231${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-17.html 1231share/doc/postgresql/html/release-8-0-7.html
1232${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-18.html 1232share/doc/postgresql/html/release-8-0-8.html
1233${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-19.html 1233share/doc/postgresql/html/release-8-0-9.html
1234${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-2.html 1234share/doc/postgresql/html/release-8-0.html
1235${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-20.html 1235share/doc/postgresql/html/release-8-1-1.html
1236${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-21.html 1236share/doc/postgresql/html/release-8-1-10.html
1237${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-22.html 1237share/doc/postgresql/html/release-8-1-11.html
1238${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-23.html 1238share/doc/postgresql/html/release-8-1-12.html
1239${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-24.html 1239share/doc/postgresql/html/release-8-1-13.html
1240${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-25.html 1240share/doc/postgresql/html/release-8-1-14.html
1241${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-26.html 1241share/doc/postgresql/html/release-8-1-15.html
1242${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-3.html 1242share/doc/postgresql/html/release-8-1-16.html
1243${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-4.html 1243share/doc/postgresql/html/release-8-1-17.html
1244${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-5.html 1244share/doc/postgresql/html/release-8-1-18.html
1245${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-6.html 1245share/doc/postgresql/html/release-8-1-19.html
1246${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-7.html 1246share/doc/postgresql/html/release-8-1-2.html
1247${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-8.html 1247share/doc/postgresql/html/release-8-1-20.html
1248${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-9.html 1248share/doc/postgresql/html/release-8-1-21.html
1249${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0.html 1249share/doc/postgresql/html/release-8-1-22.html
1250${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-1.html 1250share/doc/postgresql/html/release-8-1-23.html
1251${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-10.html 1251share/doc/postgresql/html/release-8-1-3.html
1252${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-11.html 1252share/doc/postgresql/html/release-8-1-4.html
1253${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-12.html 1253share/doc/postgresql/html/release-8-1-5.html
1254${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-13.html 1254share/doc/postgresql/html/release-8-1-6.html
1255${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-14.html 1255share/doc/postgresql/html/release-8-1-7.html
1256${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-15.html 1256share/doc/postgresql/html/release-8-1-8.html
1257${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-16.html 1257share/doc/postgresql/html/release-8-1-9.html
1258${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-17.html 1258share/doc/postgresql/html/release-8-1.html
1259${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-18.html 1259share/doc/postgresql/html/release-8-2-1.html
1260${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-19.html 1260share/doc/postgresql/html/release-8-2-10.html
1261${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-2.html 1261share/doc/postgresql/html/release-8-2-11.html
1262${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-20.html 1262share/doc/postgresql/html/release-8-2-12.html
1263${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-21.html 1263share/doc/postgresql/html/release-8-2-13.html
1264${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-22.html 1264share/doc/postgresql/html/release-8-2-14.html
1265${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-3.html 1265share/doc/postgresql/html/release-8-2-15.html
1266${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-4.html 1266share/doc/postgresql/html/release-8-2-16.html
1267${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-5.html 1267share/doc/postgresql/html/release-8-2-17.html
1268${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-6.html 1268share/doc/postgresql/html/release-8-2-18.html
1269${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-7.html 1269share/doc/postgresql/html/release-8-2-19.html
1270${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-8.html 1270share/doc/postgresql/html/release-8-2-2.html
1271${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-9.html 1271share/doc/postgresql/html/release-8-2-3.html
1272${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1.html 1272share/doc/postgresql/html/release-8-2-4.html
1273${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-1.html 1273share/doc/postgresql/html/release-8-2-5.html
1274${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-10.html 1274share/doc/postgresql/html/release-8-2-6.html
1275${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-11.html 1275share/doc/postgresql/html/release-8-2-7.html
1276${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-12.html 1276share/doc/postgresql/html/release-8-2-8.html
1277${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-13.html 1277share/doc/postgresql/html/release-8-2-9.html
1278${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-14.html 1278share/doc/postgresql/html/release-8-2.html
1279${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-15.html 1279share/doc/postgresql/html/release-8-3-1.html
1280${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-16.html 1280share/doc/postgresql/html/release-8-3-10.html
1281${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-17.html 1281share/doc/postgresql/html/release-8-3-11.html
1282${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-18.html 1282share/doc/postgresql/html/release-8-3-12.html
1283${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-2.html 1283share/doc/postgresql/html/release-8-3-13.html
1284${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-3.html 1284share/doc/postgresql/html/release-8-3-2.html
1285${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-4.html 1285share/doc/postgresql/html/release-8-3-3.html
1286${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-5.html 1286share/doc/postgresql/html/release-8-3-4.html
1287${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-6.html 1287share/doc/postgresql/html/release-8-3-5.html
1288${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-7.html 1288share/doc/postgresql/html/release-8-3-6.html
1289${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-8.html 1289share/doc/postgresql/html/release-8-3-7.html
1290${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-9.html 1290share/doc/postgresql/html/release-8-3-8.html
1291${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2.html 1291share/doc/postgresql/html/release-8-3-9.html
1292${PG_SUBPREFIX}share/doc/postgresql/html/release-8-3-1.html 1292share/doc/postgresql/html/release-8-3.html
1293${PG_SUBPREFIX}share/doc/postgresql/html/release-8-3-10.html 1293share/doc/postgresql/html/release.html
1294${PG_SUBPREFIX}share/doc/postgresql/html/release-8-3-11.html 1294share/doc/postgresql/html/resources.html
1295${PG_SUBPREFIX}share/doc/postgresql/html/release-8-3-12.html 1295share/doc/postgresql/html/role-attributes.html
1296${PG_SUBPREFIX}share/doc/postgresql/html/release-8-3-2.html 1296share/doc/postgresql/html/role-membership.html
1297${PG_SUBPREFIX}share/doc/postgresql/html/release-8-3-3.html 1297share/doc/postgresql/html/routine-reindex.html
1298${PG_SUBPREFIX}share/doc/postgresql/html/release-8-3-4.html 1298share/doc/postgresql/html/routine-vacuuming.html
1299${PG_SUBPREFIX}share/doc/postgresql/html/release-8-3-5.html 1299share/doc/postgresql/html/row-estimation-examples.html
1300${PG_SUBPREFIX}share/doc/postgresql/html/release-8-3-6.html 1300share/doc/postgresql/html/rowtypes.html
1301${PG_SUBPREFIX}share/doc/postgresql/html/release-8-3-7.html 1301share/doc/postgresql/html/rule-system.html
1302${PG_SUBPREFIX}share/doc/postgresql/html/release-8-3-8.html 1302share/doc/postgresql/html/rules-privileges.html
1303${PG_SUBPREFIX}share/doc/postgresql/html/release-8-3-9.html 1303share/doc/postgresql/html/rules-status.html
1304${PG_SUBPREFIX}share/doc/postgresql/html/release-8-3.html 1304share/doc/postgresql/html/rules-triggers.html
1305${PG_SUBPREFIX}share/doc/postgresql/html/release.html 1305share/doc/postgresql/html/rules-update.html
1306${PG_SUBPREFIX}share/doc/postgresql/html/resources.html 1306share/doc/postgresql/html/rules-views.html
1307${PG_SUBPREFIX}share/doc/postgresql/html/role-attributes.html 1307share/doc/postgresql/html/rules.html
1308${PG_SUBPREFIX}share/doc/postgresql/html/role-membership.html 1308share/doc/postgresql/html/runtime-config-autovacuum.html
1309${PG_SUBPREFIX}share/doc/postgresql/html/routine-reindex.html 1309share/doc/postgresql/html/runtime-config-client.html
1310${PG_SUBPREFIX}share/doc/postgresql/html/routine-vacuuming.html 1310share/doc/postgresql/html/runtime-config-compatible.html
1311${PG_SUBPREFIX}share/doc/postgresql/html/row-estimation-examples.html 1311share/doc/postgresql/html/runtime-config-connection.html
1312${PG_SUBPREFIX}share/doc/postgresql/html/rowtypes.html 1312share/doc/postgresql/html/runtime-config-custom.html
1313${PG_SUBPREFIX}share/doc/postgresql/html/rule-system.html 1313share/doc/postgresql/html/runtime-config-developer.html
1314${PG_SUBPREFIX}share/doc/postgresql/html/rules-privileges.html 1314share/doc/postgresql/html/runtime-config-file-locations.html
1315${PG_SUBPREFIX}share/doc/postgresql/html/rules-status.html 1315share/doc/postgresql/html/runtime-config-locks.html
1316${PG_SUBPREFIX}share/doc/postgresql/html/rules-triggers.html 1316share/doc/postgresql/html/runtime-config-logging.html
1317${PG_SUBPREFIX}share/doc/postgresql/html/rules-update.html 1317share/doc/postgresql/html/runtime-config-preset.html
1318${PG_SUBPREFIX}share/doc/postgresql/html/rules-views.html 1318share/doc/postgresql/html/runtime-config-query.html
1319${PG_SUBPREFIX}share/doc/postgresql/html/rules.html 1319share/doc/postgresql/html/runtime-config-resource.html
1320${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-autovacuum.html 1320share/doc/postgresql/html/runtime-config-short.html
1321${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-client.html 1321share/doc/postgresql/html/runtime-config-statistics.html
1322${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-compatible.html 1322share/doc/postgresql/html/runtime-config-wal.html
1323${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-connection.html 1323share/doc/postgresql/html/runtime-config.html
1324${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-custom.html 1324share/doc/postgresql/html/runtime.html
1325${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-developer.html 1325share/doc/postgresql/html/seg.html
1326${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-file-locations.html 1326share/doc/postgresql/html/server-programming.html
1327${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-locks.html 1327share/doc/postgresql/html/server-shutdown.html
1328${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-logging.html 1328share/doc/postgresql/html/server-start.html
1329${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-preset.html 1329share/doc/postgresql/html/source-format.html
1330${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-query.html 1330share/doc/postgresql/html/source.html
1331${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-resource.html 1331share/doc/postgresql/html/sourcerepo.html
1332${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-short.html 1332share/doc/postgresql/html/spi-examples.html
1333${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-statistics.html 1333share/doc/postgresql/html/spi-interface-support.html
1334${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-wal.html 1334share/doc/postgresql/html/spi-interface.html
1335${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config.html 1335share/doc/postgresql/html/spi-memory.html
1336${PG_SUBPREFIX}share/doc/postgresql/html/runtime.html 1336share/doc/postgresql/html/spi-realloc.html
1337${PG_SUBPREFIX}share/doc/postgresql/html/seg.html 1337share/doc/postgresql/html/spi-spi-connect.html
1338${PG_SUBPREFIX}share/doc/postgresql/html/server-programming.html 1338share/doc/postgresql/html/spi-spi-copytuple.html
1339${PG_SUBPREFIX}share/doc/postgresql/html/server-shutdown.html 1339share/doc/postgresql/html/spi-spi-cursor-close.html
1340${PG_SUBPREFIX}share/doc/postgresql/html/server-start.html 1340share/doc/postgresql/html/spi-spi-cursor-fetch.html
1341${PG_SUBPREFIX}share/doc/postgresql/html/source-format.html 1341share/doc/postgresql/html/spi-spi-cursor-find.html
1342${PG_SUBPREFIX}share/doc/postgresql/html/source.html 1342share/doc/postgresql/html/spi-spi-cursor-move.html
1343${PG_SUBPREFIX}share/doc/postgresql/html/sourcerepo.html 1343share/doc/postgresql/html/spi-spi-cursor-open.html
1344${PG_SUBPREFIX}share/doc/postgresql/html/spi-examples.html 1344share/doc/postgresql/html/spi-spi-exec.html
1345${PG_SUBPREFIX}share/doc/postgresql/html/spi-interface-support.html 1345share/doc/postgresql/html/spi-spi-execp.html
1346${PG_SUBPREFIX}share/doc/postgresql/html/spi-interface.html 1346share/doc/postgresql/html/spi-spi-execute-plan.html
1347${PG_SUBPREFIX}share/doc/postgresql/html/spi-memory.html 1347share/doc/postgresql/html/spi-spi-execute.html
1348${PG_SUBPREFIX}share/doc/postgresql/html/spi-realloc.html 1348share/doc/postgresql/html/spi-spi-finish.html
1349${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-connect.html 1349share/doc/postgresql/html/spi-spi-fname.html
1350${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-copytuple.html 1350share/doc/postgresql/html/spi-spi-fnumber.html
1351${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-cursor-close.html 1351share/doc/postgresql/html/spi-spi-freeplan.html
1352${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-cursor-fetch.html 1352share/doc/postgresql/html/spi-spi-freetuple.html
1353${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-cursor-find.html 1353share/doc/postgresql/html/spi-spi-freetupletable.html
1354${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-cursor-move.html 1354share/doc/postgresql/html/spi-spi-getargcount.html
1355${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-cursor-open.html 1355share/doc/postgresql/html/spi-spi-getargtypeid.html
1356${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-exec.html 1356share/doc/postgresql/html/spi-spi-getbinval.html
1357${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-execp.html 1357share/doc/postgresql/html/spi-spi-getnspname.html
1358${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-execute-plan.html 1358share/doc/postgresql/html/spi-spi-getrelname.html
1359${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-execute.html 1359share/doc/postgresql/html/spi-spi-gettype.html
1360${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-finish.html 1360share/doc/postgresql/html/spi-spi-gettypeid.html
1361${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-fname.html 1361share/doc/postgresql/html/spi-spi-getvalue.html
1362${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-fnumber.html 1362share/doc/postgresql/html/spi-spi-is-cursor-plan.html
1363${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-freeplan.html 1363share/doc/postgresql/html/spi-spi-modifytuple.html
1364${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-freetuple.html 1364share/doc/postgresql/html/spi-spi-palloc.html
1365${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-freetupletable.html 1365share/doc/postgresql/html/spi-spi-pfree.html
1366${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-getargcount.html 1366share/doc/postgresql/html/spi-spi-pop.html
1367${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-getargtypeid.html 1367share/doc/postgresql/html/spi-spi-prepare-cursor.html
1368${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-getbinval.html 1368share/doc/postgresql/html/spi-spi-prepare.html
1369${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-getnspname.html 1369share/doc/postgresql/html/spi-spi-push.html
1370${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-getrelname.html 1370share/doc/postgresql/html/spi-spi-returntuple.html
1371${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-gettype.html 1371share/doc/postgresql/html/spi-spi-saveplan.html
1372${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-gettypeid.html 1372share/doc/postgresql/html/spi-spi-scroll-cursor-fetch.html
1373${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-getvalue.html 1373share/doc/postgresql/html/spi-spi-scroll-cursor-move.html
1374${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-is-cursor-plan.html 1374share/doc/postgresql/html/spi-visibility.html
1375${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-modifytuple.html 1375share/doc/postgresql/html/spi.html
1376${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-palloc.html 1376share/doc/postgresql/html/sql-abort.html
1377${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-pfree.html 1377share/doc/postgresql/html/sql-alteraggregate.html
1378${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-pop.html 1378share/doc/postgresql/html/sql-alterconversion.html
1379${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-prepare-cursor.html 1379share/doc/postgresql/html/sql-alterdatabase.html
1380${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-prepare.html 1380share/doc/postgresql/html/sql-alterdomain.html
1381${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-push.html 1381share/doc/postgresql/html/sql-alterfunction.html
1382${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-returntuple.html 1382share/doc/postgresql/html/sql-altergroup.html
1383${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-saveplan.html 1383share/doc/postgresql/html/sql-alterindex.html
1384${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-scroll-cursor-fetch.html 1384share/doc/postgresql/html/sql-alterlanguage.html
1385${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-scroll-cursor-move.html 1385share/doc/postgresql/html/sql-alteropclass.html
1386${PG_SUBPREFIX}share/doc/postgresql/html/spi-visibility.html 1386share/doc/postgresql/html/sql-alteroperator.html
1387${PG_SUBPREFIX}share/doc/postgresql/html/spi.html 1387share/doc/postgresql/html/sql-alteropfamily.html
1388${PG_SUBPREFIX}share/doc/postgresql/html/sql-abort.html 1388share/doc/postgresql/html/sql-alterrole.html
1389${PG_SUBPREFIX}share/doc/postgresql/html/sql-alteraggregate.html 1389share/doc/postgresql/html/sql-alterschema.html
1390${PG_SUBPREFIX}share/doc/postgresql/html/sql-alterconversion.html 1390share/doc/postgresql/html/sql-altersequence.html
1391${PG_SUBPREFIX}share/doc/postgresql/html/sql-alterdatabase.html 1391share/doc/postgresql/html/sql-altertable.html
1392${PG_SUBPREFIX}share/doc/postgresql/html/sql-alterdomain.html 1392share/doc/postgresql/html/sql-altertablespace.html
1393${PG_SUBPREFIX}share/doc/postgresql/html/sql-alterfunction.html 1393share/doc/postgresql/html/sql-altertrigger.html
1394${PG_SUBPREFIX}share/doc/postgresql/html/sql-altergroup.html 1394share/doc/postgresql/html/sql-altertsconfig.html
1395${PG_SUBPREFIX}share/doc/postgresql/html/sql-alterindex.html 1395share/doc/postgresql/html/sql-altertsdictionary.html
1396${PG_SUBPREFIX}share/doc/postgresql/html/sql-alterlanguage.html 1396share/doc/postgresql/html/sql-altertsparser.html
1397${PG_SUBPREFIX}share/doc/postgresql/html/sql-alteropclass.html 1397share/doc/postgresql/html/sql-altertstemplate.html
1398${PG_SUBPREFIX}share/doc/postgresql/html/sql-alteroperator.html 1398share/doc/postgresql/html/sql-altertype.html
1399${PG_SUBPREFIX}share/doc/postgresql/html/sql-alteropfamily.html 1399share/doc/postgresql/html/sql-alteruser.html
1400${PG_SUBPREFIX}share/doc/postgresql/html/sql-alterrole.html 1400share/doc/postgresql/html/sql-alterview.html
1401${PG_SUBPREFIX}share/doc/postgresql/html/sql-alterschema.html 1401share/doc/postgresql/html/sql-analyze.html
1402${PG_SUBPREFIX}share/doc/postgresql/html/sql-altersequence.html 1402share/doc/postgresql/html/sql-begin.html
1403${PG_SUBPREFIX}share/doc/postgresql/html/sql-altertable.html 1403share/doc/postgresql/html/sql-checkpoint.html
1404${PG_SUBPREFIX}share/doc/postgresql/html/sql-altertablespace.html 1404share/doc/postgresql/html/sql-close.html
1405${PG_SUBPREFIX}share/doc/postgresql/html/sql-altertrigger.html 1405share/doc/postgresql/html/sql-cluster.html
1406${PG_SUBPREFIX}share/doc/postgresql/html/sql-altertsconfig.html 1406share/doc/postgresql/html/sql-commands.html
1407${PG_SUBPREFIX}share/doc/postgresql/html/sql-altertsdictionary.html 1407share/doc/postgresql/html/sql-comment.html
1408${PG_SUBPREFIX}share/doc/postgresql/html/sql-altertsparser.html 1408share/doc/postgresql/html/sql-commit-prepared.html
1409${PG_SUBPREFIX}share/doc/postgresql/html/sql-altertstemplate.html 1409share/doc/postgresql/html/sql-commit.html
1410${PG_SUBPREFIX}share/doc/postgresql/html/sql-altertype.html 1410share/doc/postgresql/html/sql-copy.html
1411${PG_SUBPREFIX}share/doc/postgresql/html/sql-alteruser.html 1411share/doc/postgresql/html/sql-createaggregate.html
1412${PG_SUBPREFIX}share/doc/postgresql/html/sql-alterview.html 1412share/doc/postgresql/html/sql-createcast.html
1413${PG_SUBPREFIX}share/doc/postgresql/html/sql-analyze.html 1413share/doc/postgresql/html/sql-createconstraint.html
1414${PG_SUBPREFIX}share/doc/postgresql/html/sql-begin.html 1414share/doc/postgresql/html/sql-createconversion.html
1415${PG_SUBPREFIX}share/doc/postgresql/html/sql-checkpoint.html 1415share/doc/postgresql/html/sql-createdatabase.html
1416${PG_SUBPREFIX}share/doc/postgresql/html/sql-close.html 1416share/doc/postgresql/html/sql-createdomain.html
1417${PG_SUBPREFIX}share/doc/postgresql/html/sql-cluster.html 1417share/doc/postgresql/html/sql-createfunction.html
1418${PG_SUBPREFIX}share/doc/postgresql/html/sql-commands.html 1418share/doc/postgresql/html/sql-creategroup.html
1419${PG_SUBPREFIX}share/doc/postgresql/html/sql-comment.html 1419share/doc/postgresql/html/sql-createindex.html
1420${PG_SUBPREFIX}share/doc/postgresql/html/sql-commit-prepared.html 1420share/doc/postgresql/html/sql-createlanguage.html
1421${PG_SUBPREFIX}share/doc/postgresql/html/sql-commit.html 1421share/doc/postgresql/html/sql-createopclass.html
1422${PG_SUBPREFIX}share/doc/postgresql/html/sql-copy.html 1422share/doc/postgresql/html/sql-createoperator.html
1423${PG_SUBPREFIX}share/doc/postgresql/html/sql-createaggregate.html 1423share/doc/postgresql/html/sql-createopfamily.html
1424${PG_SUBPREFIX}share/doc/postgresql/html/sql-createcast.html 1424share/doc/postgresql/html/sql-createrole.html
1425${PG_SUBPREFIX}share/doc/postgresql/html/sql-createconstraint.html 1425share/doc/postgresql/html/sql-createrule.html
1426${PG_SUBPREFIX}share/doc/postgresql/html/sql-createconversion.html 1426share/doc/postgresql/html/sql-createschema.html
1427${PG_SUBPREFIX}share/doc/postgresql/html/sql-createdatabase.html 1427share/doc/postgresql/html/sql-createsequence.html
1428${PG_SUBPREFIX}share/doc/postgresql/html/sql-createdomain.html 1428share/doc/postgresql/html/sql-createtable.html
1429${PG_SUBPREFIX}share/doc/postgresql/html/sql-createfunction.html 1429share/doc/postgresql/html/sql-createtableas.html
1430${PG_SUBPREFIX}share/doc/postgresql/html/sql-creategroup.html 1430share/doc/postgresql/html/sql-createtablespace.html
1431${PG_SUBPREFIX}share/doc/postgresql/html/sql-createindex.html 1431share/doc/postgresql/html/sql-createtrigger.html
1432${PG_SUBPREFIX}share/doc/postgresql/html/sql-createlanguage.html 1432share/doc/postgresql/html/sql-createtsconfig.html
1433${PG_SUBPREFIX}share/doc/postgresql/html/sql-createopclass.html 1433share/doc/postgresql/html/sql-createtsdictionary.html
1434${PG_SUBPREFIX}share/doc/postgresql/html/sql-createoperator.html 1434share/doc/postgresql/html/sql-createtsparser.html
1435${PG_SUBPREFIX}share/doc/postgresql/html/sql-createopfamily.html 1435share/doc/postgresql/html/sql-createtstemplate.html
1436${PG_SUBPREFIX}share/doc/postgresql/html/sql-createrole.html 1436share/doc/postgresql/html/sql-createtype.html
1437${PG_SUBPREFIX}share/doc/postgresql/html/sql-createrule.html 1437share/doc/postgresql/html/sql-createuser.html
1438${PG_SUBPREFIX}share/doc/postgresql/html/sql-createschema.html 1438share/doc/postgresql/html/sql-createview.html
1439${PG_SUBPREFIX}share/doc/postgresql/html/sql-createsequence.html 1439share/doc/postgresql/html/sql-deallocate.html
1440${PG_SUBPREFIX}share/doc/postgresql/html/sql-createtable.html 1440share/doc/postgresql/html/sql-declare.html
1441${PG_SUBPREFIX}share/doc/postgresql/html/sql-createtableas.html 1441share/doc/postgresql/html/sql-delete.html
1442${PG_SUBPREFIX}share/doc/postgresql/html/sql-createtablespace.html 1442share/doc/postgresql/html/sql-discard.html
1443${PG_SUBPREFIX}share/doc/postgresql/html/sql-createtrigger.html 1443share/doc/postgresql/html/sql-drop-owned.html
1444${PG_SUBPREFIX}share/doc/postgresql/html/sql-createtsconfig.html 1444share/doc/postgresql/html/sql-dropaggregate.html
1445${PG_SUBPREFIX}share/doc/postgresql/html/sql-createtsdictionary.html 1445share/doc/postgresql/html/sql-dropcast.html
1446${PG_SUBPREFIX}share/doc/postgresql/html/sql-createtsparser.html 1446share/doc/postgresql/html/sql-dropconversion.html
1447${PG_SUBPREFIX}share/doc/postgresql/html/sql-createtstemplate.html 1447share/doc/postgresql/html/sql-dropdatabase.html
1448${PG_SUBPREFIX}share/doc/postgresql/html/sql-createtype.html 1448share/doc/postgresql/html/sql-dropdomain.html
1449${PG_SUBPREFIX}share/doc/postgresql/html/sql-createuser.html 1449share/doc/postgresql/html/sql-dropfunction.html
1450${PG_SUBPREFIX}share/doc/postgresql/html/sql-createview.html 1450share/doc/postgresql/html/sql-dropgroup.html
1451${PG_SUBPREFIX}share/doc/postgresql/html/sql-deallocate.html 1451share/doc/postgresql/html/sql-dropindex.html
1452${PG_SUBPREFIX}share/doc/postgresql/html/sql-declare.html 1452share/doc/postgresql/html/sql-droplanguage.html
1453${PG_SUBPREFIX}share/doc/postgresql/html/sql-delete.html 1453share/doc/postgresql/html/sql-dropopclass.html
1454${PG_SUBPREFIX}share/doc/postgresql/html/sql-discard.html 1454share/doc/postgresql/html/sql-dropoperator.html
1455${PG_SUBPREFIX}share/doc/postgresql/html/sql-drop-owned.html 1455share/doc/postgresql/html/sql-dropopfamily.html
1456${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropaggregate.html 1456share/doc/postgresql/html/sql-droprole.html
1457${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropcast.html 1457share/doc/postgresql/html/sql-droprule.html
1458${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropconversion.html 1458share/doc/postgresql/html/sql-dropschema.html
1459${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropdatabase.html 1459share/doc/postgresql/html/sql-dropsequence.html
1460${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropdomain.html 1460share/doc/postgresql/html/sql-droptable.html
1461${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropfunction.html 1461share/doc/postgresql/html/sql-droptablespace.html
1462${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropgroup.html 1462share/doc/postgresql/html/sql-droptrigger.html
1463${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropindex.html 1463share/doc/postgresql/html/sql-droptsconfig.html
1464${PG_SUBPREFIX}share/doc/postgresql/html/sql-droplanguage.html 1464share/doc/postgresql/html/sql-droptsdictionary.html
1465${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropopclass.html 1465share/doc/postgresql/html/sql-droptsparser.html
1466${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropoperator.html 1466share/doc/postgresql/html/sql-droptstemplate.html
1467${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropopfamily.html 1467share/doc/postgresql/html/sql-droptype.html
1468${PG_SUBPREFIX}share/doc/postgresql/html/sql-droprole.html 1468share/doc/postgresql/html/sql-dropuser.html
1469${PG_SUBPREFIX}share/doc/postgresql/html/sql-droprule.html 1469share/doc/postgresql/html/sql-dropview.html
1470${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropschema.html 1470share/doc/postgresql/html/sql-end.html
1471${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropsequence.html 1471share/doc/postgresql/html/sql-execute.html
1472${PG_SUBPREFIX}share/doc/postgresql/html/sql-droptable.html 1472share/doc/postgresql/html/sql-explain.html
1473${PG_SUBPREFIX}share/doc/postgresql/html/sql-droptablespace.html 1473share/doc/postgresql/html/sql-expressions.html
1474${PG_SUBPREFIX}share/doc/postgresql/html/sql-droptrigger.html 1474share/doc/postgresql/html/sql-fetch.html
1475${PG_SUBPREFIX}share/doc/postgresql/html/sql-droptsconfig.html 1475share/doc/postgresql/html/sql-grant.html
1476${PG_SUBPREFIX}share/doc/postgresql/html/sql-droptsdictionary.html 1476share/doc/postgresql/html/sql-insert.html
1477${PG_SUBPREFIX}share/doc/postgresql/html/sql-droptsparser.html 1477share/doc/postgresql/html/sql-keywords-appendix.html
1478${PG_SUBPREFIX}share/doc/postgresql/html/sql-droptstemplate.html 1478share/doc/postgresql/html/sql-listen.html
1479${PG_SUBPREFIX}share/doc/postgresql/html/sql-droptype.html 1479share/doc/postgresql/html/sql-load.html
1480${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropuser.html 1480share/doc/postgresql/html/sql-lock.html
1481${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropview.html 1481share/doc/postgresql/html/sql-move.html
1482${PG_SUBPREFIX}share/doc/postgresql/html/sql-end.html 1482share/doc/postgresql/html/sql-notify.html
1483${PG_SUBPREFIX}share/doc/postgresql/html/sql-execute.html 1483share/doc/postgresql/html/sql-prepare-transaction.html
1484${PG_SUBPREFIX}share/doc/postgresql/html/sql-explain.html 1484share/doc/postgresql/html/sql-prepare.html
1485${PG_SUBPREFIX}share/doc/postgresql/html/sql-expressions.html 1485share/doc/postgresql/html/sql-reassign-owned.html
1486${PG_SUBPREFIX}share/doc/postgresql/html/sql-fetch.html 1486share/doc/postgresql/html/sql-reindex.html
1487${PG_SUBPREFIX}share/doc/postgresql/html/sql-grant.html 1487share/doc/postgresql/html/sql-release-savepoint.html
1488${PG_SUBPREFIX}share/doc/postgresql/html/sql-insert.html 1488share/doc/postgresql/html/sql-reset.html
1489${PG_SUBPREFIX}share/doc/postgresql/html/sql-keywords-appendix.html 1489share/doc/postgresql/html/sql-revoke.html
1490${PG_SUBPREFIX}share/doc/postgresql/html/sql-listen.html 1490share/doc/postgresql/html/sql-rollback-prepared.html
1491${PG_SUBPREFIX}share/doc/postgresql/html/sql-load.html 1491share/doc/postgresql/html/sql-rollback-to.html
1492${PG_SUBPREFIX}share/doc/postgresql/html/sql-lock.html 1492share/doc/postgresql/html/sql-rollback.html
1493${PG_SUBPREFIX}share/doc/postgresql/html/sql-move.html 1493share/doc/postgresql/html/sql-savepoint.html
1494${PG_SUBPREFIX}share/doc/postgresql/html/sql-notify.html 1494share/doc/postgresql/html/sql-select.html
1495${PG_SUBPREFIX}share/doc/postgresql/html/sql-prepare-transaction.html 1495share/doc/postgresql/html/sql-selectinto.html
1496${PG_SUBPREFIX}share/doc/postgresql/html/sql-prepare.html 1496share/doc/postgresql/html/sql-set-constraints.html
1497${PG_SUBPREFIX}share/doc/postgresql/html/sql-reassign-owned.html 1497share/doc/postgresql/html/sql-set-role.html
1498${PG_SUBPREFIX}share/doc/postgresql/html/sql-reindex.html 1498share/doc/postgresql/html/sql-set-session-authorization.html
1499${PG_SUBPREFIX}share/doc/postgresql/html/sql-release-savepoint.html 1499share/doc/postgresql/html/sql-set-transaction.html
1500${PG_SUBPREFIX}share/doc/postgresql/html/sql-reset.html 1500share/doc/postgresql/html/sql-set.html
1501${PG_SUBPREFIX}share/doc/postgresql/html/sql-revoke.html 1501share/doc/postgresql/html/sql-show.html
1502${PG_SUBPREFIX}share/doc/postgresql/html/sql-rollback-prepared.html 1502share/doc/postgresql/html/sql-start-transaction.html
1503${PG_SUBPREFIX}share/doc/postgresql/html/sql-rollback-to.html 1503share/doc/postgresql/html/sql-syntax-lexical.html
1504${PG_SUBPREFIX}share/doc/postgresql/html/sql-rollback.html 1504share/doc/postgresql/html/sql-syntax.html
1505${PG_SUBPREFIX}share/doc/postgresql/html/sql-savepoint.html 1505share/doc/postgresql/html/sql-truncate.html
1506${PG_SUBPREFIX}share/doc/postgresql/html/sql-select.html 1506share/doc/postgresql/html/sql-unlisten.html
1507${PG_SUBPREFIX}share/doc/postgresql/html/sql-selectinto.html 1507share/doc/postgresql/html/sql-update.html
1508${PG_SUBPREFIX}share/doc/postgresql/html/sql-set-constraints.html 1508share/doc/postgresql/html/sql-vacuum.html
1509${PG_SUBPREFIX}share/doc/postgresql/html/sql-set-role.html 1509share/doc/postgresql/html/sql-values.html
1510${PG_SUBPREFIX}share/doc/postgresql/html/sql-set-session-authorization.html 1510share/doc/postgresql/html/sql.html
1511${PG_SUBPREFIX}share/doc/postgresql/html/sql-set-transaction.html 1511share/doc/postgresql/html/ssh-tunnels.html
1512${PG_SUBPREFIX}share/doc/postgresql/html/sql-set.html 1512share/doc/postgresql/html/ssl-tcp.html
1513${PG_SUBPREFIX}share/doc/postgresql/html/sql-show.html 1513share/doc/postgresql/html/sslinfo.html
1514${PG_SUBPREFIX}share/doc/postgresql/html/sql-start-transaction.html 1514share/doc/postgresql/html/storage-file-layout.html
1515${PG_SUBPREFIX}share/doc/postgresql/html/sql-syntax-lexical.html 1515share/doc/postgresql/html/storage-page-layout.html
1516${PG_SUBPREFIX}share/doc/postgresql/html/sql-syntax.html 1516share/doc/postgresql/html/storage-toast.html
1517${PG_SUBPREFIX}share/doc/postgresql/html/sql-truncate.html 1517share/doc/postgresql/html/storage.html
1518${PG_SUBPREFIX}share/doc/postgresql/html/sql-unlisten.html 1518share/doc/postgresql/html/stylesheet.css
1519${PG_SUBPREFIX}share/doc/postgresql/html/sql-update.html 1519share/doc/postgresql/html/supported-platforms.html
1520${PG_SUBPREFIX}share/doc/postgresql/html/sql-vacuum.html 1520share/doc/postgresql/html/tablefunc.html
1521${PG_SUBPREFIX}share/doc/postgresql/html/sql-values.html 1521share/doc/postgresql/html/test-parser.html
1522${PG_SUBPREFIX}share/doc/postgresql/html/sql.html 1522share/doc/postgresql/html/textsearch-configuration.html
1523${PG_SUBPREFIX}share/doc/postgresql/html/ssh-tunnels.html 1523share/doc/postgresql/html/textsearch-controls.html
1524${PG_SUBPREFIX}share/doc/postgresql/html/ssl-tcp.html 1524share/doc/postgresql/html/textsearch-debugging.html
1525${PG_SUBPREFIX}share/doc/postgresql/html/sslinfo.html 1525share/doc/postgresql/html/textsearch-dictionaries.html
1526${PG_SUBPREFIX}share/doc/postgresql/html/storage-file-layout.html 1526share/doc/postgresql/html/textsearch-features.html
1527${PG_SUBPREFIX}share/doc/postgresql/html/storage-page-layout.html 1527share/doc/postgresql/html/textsearch-indexes.html
1528${PG_SUBPREFIX}share/doc/postgresql/html/storage-toast.html 1528share/doc/postgresql/html/textsearch-intro.html
1529${PG_SUBPREFIX}share/doc/postgresql/html/storage.html 1529share/doc/postgresql/html/textsearch-limitations.html
1530${PG_SUBPREFIX}share/doc/postgresql/html/stylesheet.css 1530share/doc/postgresql/html/textsearch-migration.html
1531${PG_SUBPREFIX}share/doc/postgresql/html/supported-platforms.html 1531share/doc/postgresql/html/textsearch-parsers.html
1532${PG_SUBPREFIX}share/doc/postgresql/html/tablefunc.html 1532share/doc/postgresql/html/textsearch-psql.html
1533${PG_SUBPREFIX}share/doc/postgresql/html/test-parser.html 1533share/doc/postgresql/html/textsearch-tables.html
1534${PG_SUBPREFIX}share/doc/postgresql/html/textsearch-configuration.html 1534share/doc/postgresql/html/textsearch.html
1535${PG_SUBPREFIX}share/doc/postgresql/html/textsearch-controls.html 1535share/doc/postgresql/html/transaction-iso.html
1536${PG_SUBPREFIX}share/doc/postgresql/html/textsearch-debugging.html 1536share/doc/postgresql/html/trigger-datachanges.html
1537${PG_SUBPREFIX}share/doc/postgresql/html/textsearch-dictionaries.html 1537share/doc/postgresql/html/trigger-definition.html
1538${PG_SUBPREFIX}share/doc/postgresql/html/textsearch-features.html 1538share/doc/postgresql/html/trigger-example.html
1539${PG_SUBPREFIX}share/doc/postgresql/html/textsearch-indexes.html 1539share/doc/postgresql/html/trigger-interface.html
1540${PG_SUBPREFIX}share/doc/postgresql/html/textsearch-intro.html 1540share/doc/postgresql/html/triggers.html
1541${PG_SUBPREFIX}share/doc/postgresql/html/textsearch-limitations.html 1541share/doc/postgresql/html/tsearch2.html
1542${PG_SUBPREFIX}share/doc/postgresql/html/textsearch-migration.html 1542share/doc/postgresql/html/tutorial-accessdb.html
1543${PG_SUBPREFIX}share/doc/postgresql/html/textsearch-parsers.html 1543share/doc/postgresql/html/tutorial-advanced-intro.html
1544${PG_SUBPREFIX}share/doc/postgresql/html/textsearch-psql.html 1544share/doc/postgresql/html/tutorial-advanced.html
1545${PG_SUBPREFIX}share/doc/postgresql/html/textsearch-tables.html 1545share/doc/postgresql/html/tutorial-agg.html
1546${PG_SUBPREFIX}share/doc/postgresql/html/textsearch.html 1546share/doc/postgresql/html/tutorial-arch.html
1547${PG_SUBPREFIX}share/doc/postgresql/html/transaction-iso.html 1547share/doc/postgresql/html/tutorial-concepts.html
1548${PG_SUBPREFIX}share/doc/postgresql/html/trigger-datachanges.html 1548share/doc/postgresql/html/tutorial-conclusion.html
1549${PG_SUBPREFIX}share/doc/postgresql/html/trigger-definition.html 1549share/doc/postgresql/html/tutorial-createdb.html
1550${PG_SUBPREFIX}share/doc/postgresql/html/trigger-example.html 1550share/doc/postgresql/html/tutorial-delete.html
1551${PG_SUBPREFIX}share/doc/postgresql/html/trigger-interface.html 1551share/doc/postgresql/html/tutorial-fk.html
1552${PG_SUBPREFIX}share/doc/postgresql/html/triggers.html 1552share/doc/postgresql/html/tutorial-inheritance.html
1553${PG_SUBPREFIX}share/doc/postgresql/html/tsearch2.html 1553share/doc/postgresql/html/tutorial-install.html
1554${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-accessdb.html 1554share/doc/postgresql/html/tutorial-join.html
1555${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-advanced-intro.html 1555share/doc/postgresql/html/tutorial-populate.html
1556${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-advanced.html 1556share/doc/postgresql/html/tutorial-select.html
1557${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-agg.html 1557share/doc/postgresql/html/tutorial-sql-intro.html
1558${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-arch.html 1558share/doc/postgresql/html/tutorial-sql.html
1559${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-concepts.html 1559share/doc/postgresql/html/tutorial-start.html
1560${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-conclusion.html 1560share/doc/postgresql/html/tutorial-table.html
1561${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-createdb.html 1561share/doc/postgresql/html/tutorial-transactions.html
1562${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-delete.html 1562share/doc/postgresql/html/tutorial-update.html
1563${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-fk.html 1563share/doc/postgresql/html/tutorial-views.html
1564${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-inheritance.html 1564share/doc/postgresql/html/tutorial.html
1565${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-install.html 1565share/doc/postgresql/html/typeconv-func.html
1566${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-join.html 1566share/doc/postgresql/html/typeconv-oper.html
1567${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-populate.html 1567share/doc/postgresql/html/typeconv-overview.html
1568${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-select.html 1568share/doc/postgresql/html/typeconv-query.html
1569${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-sql-intro.html 1569share/doc/postgresql/html/typeconv-union-case.html
1570${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-sql.html 1570share/doc/postgresql/html/typeconv.html
1571${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-start.html 1571share/doc/postgresql/html/unsupported-features-sql-standard.html
1572${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-table.html 1572share/doc/postgresql/html/user-manag.html
1573${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-transactions.html 1573share/doc/postgresql/html/using-explain.html
1574${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-update.html 1574share/doc/postgresql/html/uuid-ossp.html
1575${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-views.html 1575share/doc/postgresql/html/vacuumlo.html
1576${PG_SUBPREFIX}share/doc/postgresql/html/tutorial.html 1576share/doc/postgresql/html/view-pg-cursors.html
1577${PG_SUBPREFIX}share/doc/postgresql/html/typeconv-func.html 1577share/doc/postgresql/html/view-pg-group.html
1578${PG_SUBPREFIX}share/doc/postgresql/html/typeconv-oper.html 1578share/doc/postgresql/html/view-pg-indexes.html
1579${PG_SUBPREFIX}share/doc/postgresql/html/typeconv-overview.html 1579share/doc/postgresql/html/view-pg-locks.html
1580${PG_SUBPREFIX}share/doc/postgresql/html/typeconv-query.html 1580share/doc/postgresql/html/view-pg-prepared-statements.html
1581${PG_SUBPREFIX}share/doc/postgresql/html/typeconv-union-case.html 1581share/doc/postgresql/html/view-pg-prepared-xacts.html
1582${PG_SUBPREFIX}share/doc/postgresql/html/typeconv.html 1582share/doc/postgresql/html/view-pg-roles.html
1583${PG_SUBPREFIX}share/doc/postgresql/html/unsupported-features-sql-standard.html 1583share/doc/postgresql/html/view-pg-rules.html
1584${PG_SUBPREFIX}share/doc/postgresql/html/user-manag.html 1584share/doc/postgresql/html/view-pg-settings.html
1585${PG_SUBPREFIX}share/doc/postgresql/html/using-explain.html 1585share/doc/postgresql/html/view-pg-shadow.html
1586${PG_SUBPREFIX}share/doc/postgresql/html/uuid-ossp.html 1586share/doc/postgresql/html/view-pg-stats.html
1587${PG_SUBPREFIX}share/doc/postgresql/html/vacuumlo.html 1587share/doc/postgresql/html/view-pg-tables.html
1588${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-cursors.html 1588share/doc/postgresql/html/view-pg-timezone-abbrevs.html
1589${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-group.html 1589share/doc/postgresql/html/view-pg-timezone-names.html
1590${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-indexes.html 1590share/doc/postgresql/html/view-pg-user.html
1591${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-locks.html 1591share/doc/postgresql/html/view-pg-views.html
1592${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-prepared-statements.html 1592share/doc/postgresql/html/views-overview.html
1593${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-prepared-xacts.html 1593share/doc/postgresql/html/wal-async-commit.html
1594${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-roles.html 1594share/doc/postgresql/html/wal-configuration.html
1595${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-rules.html 1595share/doc/postgresql/html/wal-internals.html
1596${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-settings.html 1596share/doc/postgresql/html/wal-intro.html
1597${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-shadow.html 1597share/doc/postgresql/html/wal-reliability.html
1598${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-stats.html 1598share/doc/postgresql/html/wal.html
1599${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-tables.html 1599share/doc/postgresql/html/warm-standby.html
1600${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-timezone-abbrevs.html 1600share/doc/postgresql/html/xaggr.html
1601${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-timezone-names.html 1601share/doc/postgresql/html/xfunc-c.html
1602${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-user.html 1602share/doc/postgresql/html/xfunc-internal.html
1603${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-views.html 1603share/doc/postgresql/html/xfunc-overload.html
1604${PG_SUBPREFIX}share/doc/postgresql/html/views-overview.html 1604share/doc/postgresql/html/xfunc-pl.html
1605${PG_SUBPREFIX}share/doc/postgresql/html/wal-async-commit.html 1605share/doc/postgresql/html/xfunc-sql.html
1606${PG_SUBPREFIX}share/doc/postgresql/html/wal-configuration.html 1606share/doc/postgresql/html/xfunc-volatility.html
1607${PG_SUBPREFIX}share/doc/postgresql/html/wal-internals.html 1607share/doc/postgresql/html/xfunc.html
1608${PG_SUBPREFIX}share/doc/postgresql/html/wal-intro.html 1608share/doc/postgresql/html/xindex.html
1609${PG_SUBPREFIX}share/doc/postgresql/html/wal-reliability.html 1609share/doc/postgresql/html/xml2.html
1610${PG_SUBPREFIX}share/doc/postgresql/html/wal.html 1610share/doc/postgresql/html/xoper-optimization.html
1611${PG_SUBPREFIX}share/doc/postgresql/html/warm-standby.html 1611share/doc/postgresql/html/xoper.html
1612${PG_SUBPREFIX}share/doc/postgresql/html/xaggr.html 1612share/doc/postgresql/html/xplang-install.html
1613${PG_SUBPREFIX}share/doc/postgresql/html/xfunc-c.html 1613share/doc/postgresql/html/xplang.html
1614${PG_SUBPREFIX}share/doc/postgresql/html/xfunc-internal.html 1614share/doc/postgresql/html/xtypes.html
1615${PG_SUBPREFIX}share/doc/postgresql/html/xfunc-overload.html 1615share/locale/af/LC_MESSAGES/libpq.mo
1616${PG_SUBPREFIX}share/doc/postgresql/html/xfunc-pl.html 1616share/locale/cs/LC_MESSAGES/initdb.mo
1617${PG_SUBPREFIX}share/doc/postgresql/html/xfunc-sql.html 1617share/locale/cs/LC_MESSAGES/libpq.mo
1618${PG_SUBPREFIX}share/doc/postgresql/html/xfunc-volatility.html 1618share/locale/cs/LC_MESSAGES/pg_config.mo
1619${PG_SUBPREFIX}share/doc/postgresql/html/xfunc.html 1619share/locale/cs/LC_MESSAGES/pg_controldata.mo
1620${PG_SUBPREFIX}share/doc/postgresql/html/xindex.html 1620share/locale/cs/LC_MESSAGES/pg_ctl.mo
1621${PG_SUBPREFIX}share/doc/postgresql/html/xml2.html 1621share/locale/cs/LC_MESSAGES/pg_dump.mo
1622${PG_SUBPREFIX}share/doc/postgresql/html/xoper-optimization.html 1622share/locale/cs/LC_MESSAGES/pg_resetxlog.mo
1623${PG_SUBPREFIX}share/doc/postgresql/html/xoper.html 1623share/locale/cs/LC_MESSAGES/pgscripts.mo
1624${PG_SUBPREFIX}share/doc/postgresql/html/xplang-install.html 1624share/locale/cs/LC_MESSAGES/psql.mo
1625${PG_SUBPREFIX}share/doc/postgresql/html/xplang.html 1625share/locale/de/LC_MESSAGES/initdb.mo
1626${PG_SUBPREFIX}share/doc/postgresql/html/xtypes.html 1626share/locale/de/LC_MESSAGES/libpq.mo
1627${PG_SUBPREFIX}share/locale/af/LC_MESSAGES/libpq.mo 1627share/locale/de/LC_MESSAGES/pg_config.mo
1628${PG_SUBPREFIX}share/locale/cs/LC_MESSAGES/initdb.mo 1628share/locale/de/LC_MESSAGES/pg_controldata.mo
1629${PG_SUBPREFIX}share/locale/cs/LC_MESSAGES/libpq.mo 1629share/locale/de/LC_MESSAGES/pg_ctl.mo
1630${PG_SUBPREFIX}share/locale/cs/LC_MESSAGES/pg_config.mo 1630share/locale/de/LC_MESSAGES/pg_dump.mo
1631${PG_SUBPREFIX}share/locale/cs/LC_MESSAGES/pg_controldata.mo 1631share/locale/de/LC_MESSAGES/pg_resetxlog.mo
1632${PG_SUBPREFIX}share/locale/cs/LC_MESSAGES/pg_ctl.mo 1632share/locale/de/LC_MESSAGES/pgscripts.mo
1633${PG_SUBPREFIX}share/locale/cs/LC_MESSAGES/pg_dump.mo 1633share/locale/de/LC_MESSAGES/psql.mo
1634${PG_SUBPREFIX}share/locale/cs/LC_MESSAGES/pg_resetxlog.mo 1634share/locale/es/LC_MESSAGES/initdb.mo
1635${PG_SUBPREFIX}share/locale/cs/LC_MESSAGES/pgscripts.mo 1635share/locale/es/LC_MESSAGES/libpq.mo
1636${PG_SUBPREFIX}share/locale/cs/LC_MESSAGES/psql.mo 1636share/locale/es/LC_MESSAGES/pg_config.mo
1637${PG_SUBPREFIX}share/locale/de/LC_MESSAGES/initdb.mo 1637share/locale/es/LC_MESSAGES/pg_controldata.mo
1638${PG_SUBPREFIX}share/locale/de/LC_MESSAGES/libpq.mo 1638share/locale/es/LC_MESSAGES/pg_ctl.mo
1639${PG_SUBPREFIX}share/locale/de/LC_MESSAGES/pg_config.mo 1639share/locale/es/LC_MESSAGES/pg_dump.mo
1640${PG_SUBPREFIX}share/locale/de/LC_MESSAGES/pg_controldata.mo 1640share/locale/es/LC_MESSAGES/pg_resetxlog.mo
1641${PG_SUBPREFIX}share/locale/de/LC_MESSAGES/pg_ctl.mo 1641share/locale/es/LC_MESSAGES/pgscripts.mo
1642${PG_SUBPREFIX}share/locale/de/LC_MESSAGES/pg_dump.mo 1642share/locale/es/LC_MESSAGES/psql.mo
1643${PG_SUBPREFIX}share/locale/de/LC_MESSAGES/pg_resetxlog.mo 1643share/locale/fa/LC_MESSAGES/pg_controldata.mo
1644${PG_SUBPREFIX}share/locale/de/LC_MESSAGES/pgscripts.mo 1644share/locale/fa/LC_MESSAGES/psql.mo
1645${PG_SUBPREFIX}share/locale/de/LC_MESSAGES/psql.mo 1645share/locale/fr/LC_MESSAGES/initdb.mo
1646${PG_SUBPREFIX}share/locale/es/LC_MESSAGES/initdb.mo 1646share/locale/fr/LC_MESSAGES/libpq.mo
1647${PG_SUBPREFIX}share/locale/es/LC_MESSAGES/libpq.mo 1647share/locale/fr/LC_MESSAGES/pg_config.mo
1648${PG_SUBPREFIX}share/locale/es/LC_MESSAGES/pg_config.mo 1648share/locale/fr/LC_MESSAGES/pg_controldata.mo
1649${PG_SUBPREFIX}share/locale/es/LC_MESSAGES/pg_controldata.mo 1649share/locale/fr/LC_MESSAGES/pg_ctl.mo
1650${PG_SUBPREFIX}share/locale/es/LC_MESSAGES/pg_ctl.mo 1650share/locale/fr/LC_MESSAGES/pg_dump.mo
1651${PG_SUBPREFIX}share/locale/es/LC_MESSAGES/pg_dump.mo 1651share/locale/fr/LC_MESSAGES/pg_resetxlog.mo
1652${PG_SUBPREFIX}share/locale/es/LC_MESSAGES/pg_resetxlog.mo 1652share/locale/fr/LC_MESSAGES/pgscripts.mo
1653${PG_SUBPREFIX}share/locale/es/LC_MESSAGES/pgscripts.mo 1653share/locale/fr/LC_MESSAGES/psql.mo
1654${PG_SUBPREFIX}share/locale/es/LC_MESSAGES/psql.mo 1654share/locale/hr/LC_MESSAGES/libpq.mo
1655${PG_SUBPREFIX}share/locale/fa/LC_MESSAGES/pg_controldata.mo 1655share/locale/hu/LC_MESSAGES/pg_controldata.mo
1656${PG_SUBPREFIX}share/locale/fa/LC_MESSAGES/psql.mo 1656share/locale/hu/LC_MESSAGES/pg_resetxlog.mo
1657${PG_SUBPREFIX}share/locale/fr/LC_MESSAGES/initdb.mo 1657share/locale/hu/LC_MESSAGES/psql.mo
1658${PG_SUBPREFIX}share/locale/fr/LC_MESSAGES/libpq.mo 1658share/locale/it/LC_MESSAGES/initdb.mo
1659${PG_SUBPREFIX}share/locale/fr/LC_MESSAGES/pg_config.mo 1659share/locale/it/LC_MESSAGES/libpq.mo
1660${PG_SUBPREFIX}share/locale/fr/LC_MESSAGES/pg_controldata.mo 1660share/locale/it/LC_MESSAGES/pg_controldata.mo
1661${PG_SUBPREFIX}share/locale/fr/LC_MESSAGES/pg_ctl.mo 1661share/locale/it/LC_MESSAGES/pg_dump.mo
1662${PG_SUBPREFIX}share/locale/fr/LC_MESSAGES/pg_dump.mo 1662share/locale/it/LC_MESSAGES/pg_resetxlog.mo
1663${PG_SUBPREFIX}share/locale/fr/LC_MESSAGES/pg_resetxlog.mo 1663share/locale/it/LC_MESSAGES/pgscripts.mo
1664${PG_SUBPREFIX}share/locale/fr/LC_MESSAGES/pgscripts.mo 1664share/locale/it/LC_MESSAGES/psql.mo
1665${PG_SUBPREFIX}share/locale/fr/LC_MESSAGES/psql.mo 1665share/locale/ko/LC_MESSAGES/initdb.mo
1666${PG_SUBPREFIX}share/locale/hr/LC_MESSAGES/libpq.mo 1666share/locale/ko/LC_MESSAGES/libpq.mo
1667${PG_SUBPREFIX}share/locale/hu/LC_MESSAGES/pg_controldata.mo 1667share/locale/ko/LC_MESSAGES/pg_config.mo
1668${PG_SUBPREFIX}share/locale/hu/LC_MESSAGES/pg_resetxlog.mo 1668share/locale/ko/LC_MESSAGES/pg_controldata.mo
1669${PG_SUBPREFIX}share/locale/hu/LC_MESSAGES/psql.mo 1669share/locale/ko/LC_MESSAGES/pg_ctl.mo
1670${PG_SUBPREFIX}share/locale/it/LC_MESSAGES/initdb.mo 1670share/locale/ko/LC_MESSAGES/pg_dump.mo
1671${PG_SUBPREFIX}share/locale/it/LC_MESSAGES/libpq.mo 1671share/locale/ko/LC_MESSAGES/pg_resetxlog.mo
1672${PG_SUBPREFIX}share/locale/it/LC_MESSAGES/pg_controldata.mo 1672share/locale/ko/LC_MESSAGES/pgscripts.mo
1673${PG_SUBPREFIX}share/locale/it/LC_MESSAGES/pg_dump.mo 1673share/locale/ko/LC_MESSAGES/psql.mo
1674${PG_SUBPREFIX}share/locale/it/LC_MESSAGES/pg_resetxlog.mo 1674share/locale/nb/LC_MESSAGES/libpq.mo
1675${PG_SUBPREFIX}share/locale/it/LC_MESSAGES/pgscripts.mo 1675share/locale/nb/LC_MESSAGES/pg_config.mo
1676${PG_SUBPREFIX}share/locale/it/LC_MESSAGES/psql.mo 1676share/locale/nb/LC_MESSAGES/pg_controldata.mo
1677${PG_SUBPREFIX}share/locale/ko/LC_MESSAGES/initdb.mo 1677share/locale/nb/LC_MESSAGES/pg_dump.mo
1678${PG_SUBPREFIX}share/locale/ko/LC_MESSAGES/libpq.mo 1678share/locale/nb/LC_MESSAGES/pg_resetxlog.mo
1679${PG_SUBPREFIX}share/locale/ko/LC_MESSAGES/pg_config.mo 1679share/locale/nb/LC_MESSAGES/psql.mo
1680${PG_SUBPREFIX}share/locale/ko/LC_MESSAGES/pg_controldata.mo 1680share/locale/pl/LC_MESSAGES/initdb.mo
1681${PG_SUBPREFIX}share/locale/ko/LC_MESSAGES/pg_ctl.mo 1681share/locale/pl/LC_MESSAGES/libpq.mo
1682${PG_SUBPREFIX}share/locale/ko/LC_MESSAGES/pg_dump.mo 1682share/locale/pl/LC_MESSAGES/pg_config.mo
1683${PG_SUBPREFIX}share/locale/ko/LC_MESSAGES/pg_resetxlog.mo 1683share/locale/pl/LC_MESSAGES/pg_controldata.mo
1684${PG_SUBPREFIX}share/locale/ko/LC_MESSAGES/pgscripts.mo 1684share/locale/pt_BR/LC_MESSAGES/initdb.mo
1685${PG_SUBPREFIX}share/locale/ko/LC_MESSAGES/psql.mo 1685share/locale/pt_BR/LC_MESSAGES/libpq.mo
1686${PG_SUBPREFIX}share/locale/nb/LC_MESSAGES/libpq.mo 1686share/locale/pt_BR/LC_MESSAGES/pg_config.mo
1687${PG_SUBPREFIX}share/locale/nb/LC_MESSAGES/pg_config.mo 1687share/locale/pt_BR/LC_MESSAGES/pg_controldata.mo
1688${PG_SUBPREFIX}share/locale/nb/LC_MESSAGES/pg_controldata.mo 1688share/locale/pt_BR/LC_MESSAGES/pg_ctl.mo
1689${PG_SUBPREFIX}share/locale/nb/LC_MESSAGES/pg_dump.mo 1689share/locale/pt_BR/LC_MESSAGES/pg_dump.mo
1690${PG_SUBPREFIX}share/locale/nb/LC_MESSAGES/pg_resetxlog.mo 1690share/locale/pt_BR/LC_MESSAGES/pg_resetxlog.mo
1691${PG_SUBPREFIX}share/locale/nb/LC_MESSAGES/psql.mo 1691share/locale/pt_BR/LC_MESSAGES/pgscripts.mo
1692${PG_SUBPREFIX}share/locale/pl/LC_MESSAGES/initdb.mo 1692share/locale/pt_BR/LC_MESSAGES/psql.mo
1693${PG_SUBPREFIX}share/locale/pl/LC_MESSAGES/libpq.mo 1693share/locale/ro/LC_MESSAGES/initdb.mo
1694${PG_SUBPREFIX}share/locale/pl/LC_MESSAGES/pg_config.mo 1694share/locale/ro/LC_MESSAGES/pg_config.mo
1695${PG_SUBPREFIX}share/locale/pl/LC_MESSAGES/pg_controldata.mo 1695share/locale/ro/LC_MESSAGES/pg_controldata.mo
1696${PG_SUBPREFIX}share/locale/pt_BR/LC_MESSAGES/initdb.mo 1696share/locale/ro/LC_MESSAGES/pg_ctl.mo
1697${PG_SUBPREFIX}share/locale/pt_BR/LC_MESSAGES/libpq.mo 1697share/locale/ro/LC_MESSAGES/pg_dump.mo
1698${PG_SUBPREFIX}share/locale/pt_BR/LC_MESSAGES/pg_config.mo 1698share/locale/ro/LC_MESSAGES/pg_resetxlog.mo
1699${PG_SUBPREFIX}share/locale/pt_BR/LC_MESSAGES/pg_controldata.mo 1699share/locale/ro/LC_MESSAGES/pgscripts.mo
1700${PG_SUBPREFIX}share/locale/pt_BR/LC_MESSAGES/pg_ctl.mo 1700share/locale/ro/LC_MESSAGES/psql.mo
1701${PG_SUBPREFIX}share/locale/pt_BR/LC_MESSAGES/pg_dump.mo 1701share/locale/ru/LC_MESSAGES/initdb.mo
1702${PG_SUBPREFIX}share/locale/pt_BR/LC_MESSAGES/pg_resetxlog.mo 1702share/locale/ru/LC_MESSAGES/libpq.mo
1703${PG_SUBPREFIX}share/locale/pt_BR/LC_MESSAGES/pgscripts.mo 1703share/locale/ru/LC_MESSAGES/pg_config.mo
1704${PG_SUBPREFIX}share/locale/pt_BR/LC_MESSAGES/psql.mo 1704share/locale/ru/LC_MESSAGES/pg_controldata.mo
1705${PG_SUBPREFIX}share/locale/ro/LC_MESSAGES/initdb.mo 1705share/locale/ru/LC_MESSAGES/pg_ctl.mo
1706${PG_SUBPREFIX}share/locale/ro/LC_MESSAGES/pg_config.mo 1706share/locale/ru/LC_MESSAGES/pg_dump.mo
1707${PG_SUBPREFIX}share/locale/ro/LC_MESSAGES/pg_controldata.mo 1707share/locale/ru/LC_MESSAGES/pg_resetxlog.mo
1708${PG_SUBPREFIX}share/locale/ro/LC_MESSAGES/pg_ctl.mo 1708share/locale/ru/LC_MESSAGES/pgscripts.mo
1709${PG_SUBPREFIX}share/locale/ro/LC_MESSAGES/pg_dump.mo 1709share/locale/ru/LC_MESSAGES/psql.mo
1710${PG_SUBPREFIX}share/locale/ro/LC_MESSAGES/pg_resetxlog.mo 1710share/locale/sk/LC_MESSAGES/initdb.mo
1711${PG_SUBPREFIX}share/locale/ro/LC_MESSAGES/pgscripts.mo 1711share/locale/sk/LC_MESSAGES/libpq.mo
1712${PG_SUBPREFIX}share/locale/ro/LC_MESSAGES/psql.mo 1712share/locale/sk/LC_MESSAGES/pg_controldata.mo
1713${PG_SUBPREFIX}share/locale/ru/LC_MESSAGES/initdb.mo 1713share/locale/sk/LC_MESSAGES/pg_ctl.mo
1714${PG_SUBPREFIX}share/locale/ru/LC_MESSAGES/libpq.mo 1714share/locale/sk/LC_MESSAGES/pg_dump.mo
1715${PG_SUBPREFIX}share/locale/ru/LC_MESSAGES/pg_config.mo 1715share/locale/sk/LC_MESSAGES/pg_resetxlog.mo
1716${PG_SUBPREFIX}share/locale/ru/LC_MESSAGES/pg_controldata.mo 1716share/locale/sk/LC_MESSAGES/pgscripts.mo
1717${PG_SUBPREFIX}share/locale/ru/LC_MESSAGES/pg_ctl.mo 1717share/locale/sk/LC_MESSAGES/psql.mo
1718${PG_SUBPREFIX}share/locale/ru/LC_MESSAGES/pg_dump.mo 1718share/locale/sl/LC_MESSAGES/initdb.mo
1719${PG_SUBPREFIX}share/locale/ru/LC_MESSAGES/pg_resetxlog.mo 1719share/locale/sl/LC_MESSAGES/libpq.mo
1720${PG_SUBPREFIX}share/locale/ru/LC_MESSAGES/pgscripts.mo 1720share/locale/sl/LC_MESSAGES/pg_config.mo
1721${PG_SUBPREFIX}share/locale/ru/LC_MESSAGES/psql.mo 1721share/locale/sl/LC_MESSAGES/pg_controldata.mo
1722${PG_SUBPREFIX}share/locale/sk/LC_MESSAGES/initdb.mo 1722share/locale/sl/LC_MESSAGES/pg_ctl.mo
1723${PG_SUBPREFIX}share/locale/sk/LC_MESSAGES/libpq.mo 1723share/locale/sl/LC_MESSAGES/pg_dump.mo
1724${PG_SUBPREFIX}share/locale/sk/LC_MESSAGES/pg_controldata.mo 1724share/locale/sl/LC_MESSAGES/pg_resetxlog.mo
1725${PG_SUBPREFIX}share/locale/sk/LC_MESSAGES/pg_ctl.mo 1725share/locale/sl/LC_MESSAGES/pgscripts.mo
1726${PG_SUBPREFIX}share/locale/sk/LC_MESSAGES/pg_dump.mo 1726share/locale/sl/LC_MESSAGES/psql.mo
1727${PG_SUBPREFIX}share/locale/sk/LC_MESSAGES/pg_resetxlog.mo 1727share/locale/sv/LC_MESSAGES/initdb.mo
1728${PG_SUBPREFIX}share/locale/sk/LC_MESSAGES/pgscripts.mo 1728share/locale/sv/LC_MESSAGES/libpq.mo
1729${PG_SUBPREFIX}share/locale/sk/LC_MESSAGES/psql.mo 1729share/locale/sv/LC_MESSAGES/pg_config.mo
1730${PG_SUBPREFIX}share/locale/sl/LC_MESSAGES/initdb.mo 1730share/locale/sv/LC_MESSAGES/pg_controldata.mo
1731${PG_SUBPREFIX}share/locale/sl/LC_MESSAGES/libpq.mo 1731share/locale/sv/LC_MESSAGES/pg_ctl.mo
1732${PG_SUBPREFIX}share/locale/sl/LC_MESSAGES/pg_config.mo 1732share/locale/sv/LC_MESSAGES/pg_dump.mo
1733${PG_SUBPREFIX}share/locale/sl/LC_MESSAGES/pg_controldata.mo 1733share/locale/sv/LC_MESSAGES/pg_resetxlog.mo
1734${PG_SUBPREFIX}share/locale/sl/LC_MESSAGES/pg_ctl.mo 1734share/locale/sv/LC_MESSAGES/pgscripts.mo
1735${PG_SUBPREFIX}share/locale/sl/LC_MESSAGES/pg_dump.mo 1735share/locale/sv/LC_MESSAGES/psql.mo
1736${PG_SUBPREFIX}share/locale/sl/LC_MESSAGES/pg_resetxlog.mo 1736share/locale/ta/LC_MESSAGES/initdb.mo
1737${PG_SUBPREFIX}share/locale/sl/LC_MESSAGES/pgscripts.mo 1737share/locale/ta/LC_MESSAGES/libpq.mo
1738${PG_SUBPREFIX}share/locale/sl/LC_MESSAGES/psql.mo 1738share/locale/ta/LC_MESSAGES/pg_config.mo
1739${PG_SUBPREFIX}share/locale/sv/LC_MESSAGES/initdb.mo 1739share/locale/ta/LC_MESSAGES/pg_controldata.mo
1740${PG_SUBPREFIX}share/locale/sv/LC_MESSAGES/libpq.mo 1740share/locale/ta/LC_MESSAGES/pg_ctl.mo
1741${PG_SUBPREFIX}share/locale/sv/LC_MESSAGES/pg_config.mo 1741share/locale/ta/LC_MESSAGES/pg_resetxlog.mo
1742${PG_SUBPREFIX}share/locale/sv/LC_MESSAGES/pg_controldata.mo 1742share/locale/ta/LC_MESSAGES/pgscripts.mo
1743${PG_SUBPREFIX}share/locale/sv/LC_MESSAGES/pg_ctl.mo 1743share/locale/tr/LC_MESSAGES/initdb.mo
1744${PG_SUBPREFIX}share/locale/sv/LC_MESSAGES/pg_dump.mo 1744share/locale/tr/LC_MESSAGES/libpq.mo
1745${PG_SUBPREFIX}share/locale/sv/LC_MESSAGES/pg_resetxlog.mo 1745share/locale/tr/LC_MESSAGES/pg_config.mo
1746${PG_SUBPREFIX}share/locale/sv/LC_MESSAGES/pgscripts.mo 1746share/locale/tr/LC_MESSAGES/pg_controldata.mo
1747${PG_SUBPREFIX}share/locale/sv/LC_MESSAGES/psql.mo 1747share/locale/tr/LC_MESSAGES/pg_ctl.mo
1748${PG_SUBPREFIX}share/locale/ta/LC_MESSAGES/initdb.mo 1748share/locale/tr/LC_MESSAGES/pg_dump.mo
1749${PG_SUBPREFIX}share/locale/ta/LC_MESSAGES/libpq.mo 1749share/locale/tr/LC_MESSAGES/pg_resetxlog.mo
1750${PG_SUBPREFIX}share/locale/ta/LC_MESSAGES/pg_config.mo 1750share/locale/tr/LC_MESSAGES/pgscripts.mo
1751${PG_SUBPREFIX}share/locale/ta/LC_MESSAGES/pg_controldata.mo 1751share/locale/tr/LC_MESSAGES/psql.mo
1752${PG_SUBPREFIX}share/locale/ta/LC_MESSAGES/pg_ctl.mo 1752share/locale/zh_CN/LC_MESSAGES/initdb.mo
1753${PG_SUBPREFIX}share/locale/ta/LC_MESSAGES/pg_resetxlog.mo 1753share/locale/zh_CN/LC_MESSAGES/libpq.mo
1754${PG_SUBPREFIX}share/locale/ta/LC_MESSAGES/pgscripts.mo 1754share/locale/zh_CN/LC_MESSAGES/pg_config.mo
1755${PG_SUBPREFIX}share/locale/tr/LC_MESSAGES/initdb.mo 1755share/locale/zh_CN/LC_MESSAGES/pg_controldata.mo
1756${PG_SUBPREFIX}share/locale/tr/LC_MESSAGES/libpq.mo 1756share/locale/zh_CN/LC_MESSAGES/pg_ctl.mo
1757${PG_SUBPREFIX}share/locale/tr/LC_MESSAGES/pg_config.mo 1757share/locale/zh_CN/LC_MESSAGES/pg_dump.mo
1758${PG_SUBPREFIX}share/locale/tr/LC_MESSAGES/pg_controldata.mo 1758share/locale/zh_CN/LC_MESSAGES/pg_resetxlog.mo
1759${PG_SUBPREFIX}share/locale/tr/LC_MESSAGES/pg_ctl.mo 1759share/locale/zh_CN/LC_MESSAGES/pgscripts.mo
1760${PG_SUBPREFIX}share/locale/tr/LC_MESSAGES/pg_dump.mo 1760share/locale/zh_CN/LC_MESSAGES/psql.mo
1761${PG_SUBPREFIX}share/locale/tr/LC_MESSAGES/pg_resetxlog.mo 1761share/locale/zh_TW/LC_MESSAGES/initdb.mo
1762${PG_SUBPREFIX}share/locale/tr/LC_MESSAGES/pgscripts.mo 1762share/locale/zh_TW/LC_MESSAGES/libpq.mo
1763${PG_SUBPREFIX}share/locale/tr/LC_MESSAGES/psql.mo 1763share/locale/zh_TW/LC_MESSAGES/pg_config.mo
1764${PG_SUBPREFIX}share/locale/zh_CN/LC_MESSAGES/initdb.mo 1764share/locale/zh_TW/LC_MESSAGES/pg_controldata.mo
1765${PG_SUBPREFIX}share/locale/zh_CN/LC_MESSAGES/libpq.mo 1765share/locale/zh_TW/LC_MESSAGES/pg_ctl.mo
1766${PG_SUBPREFIX}share/locale/zh_CN/LC_MESSAGES/pg_config.mo 1766share/locale/zh_TW/LC_MESSAGES/pg_dump.mo
1767${PG_SUBPREFIX}share/locale/zh_CN/LC_MESSAGES/pg_controldata.mo 1767share/locale/zh_TW/LC_MESSAGES/pg_resetxlog.mo
1768${PG_SUBPREFIX}share/locale/zh_CN/LC_MESSAGES/pg_ctl.mo 1768share/locale/zh_TW/LC_MESSAGES/pgscripts.mo
1769${PG_SUBPREFIX}share/locale/zh_CN/LC_MESSAGES/pg_dump.mo 1769share/locale/zh_TW/LC_MESSAGES/psql.mo
1770${PG_SUBPREFIX}share/locale/zh_CN/LC_MESSAGES/pg_resetxlog.mo 1770share/postgresql/pg_service.conf.sample
1771${PG_SUBPREFIX}share/locale/zh_CN/LC_MESSAGES/pgscripts.mo 1771share/postgresql/psqlrc.sample
1772${PG_SUBPREFIX}share/locale/zh_CN/LC_MESSAGES/psql.mo 
1773${PG_SUBPREFIX}share/locale/zh_TW/LC_MESSAGES/initdb.mo 
1774${PG_SUBPREFIX}share/locale/zh_TW/LC_MESSAGES/libpq.mo 
1775${PG_SUBPREFIX}share/locale/zh_TW/LC_MESSAGES/pg_config.mo 
1776${PG_SUBPREFIX}share/locale/zh_TW/LC_MESSAGES/pg_controldata.mo 
1777${PG_SUBPREFIX}share/locale/zh_TW/LC_MESSAGES/pg_ctl.mo 
1778${PG_SUBPREFIX}share/locale/zh_TW/LC_MESSAGES/pg_dump.mo 
1779${PG_SUBPREFIX}share/locale/zh_TW/LC_MESSAGES/pg_resetxlog.mo 
1780${PG_SUBPREFIX}share/locale/zh_TW/LC_MESSAGES/pgscripts.mo 
1781${PG_SUBPREFIX}share/locale/zh_TW/LC_MESSAGES/psql.mo 
1782${PG_SUBPREFIX}share/postgresql/pg_service.conf.sample 
1783${PG_SUBPREFIX}share/postgresql/psqlrc.sample 

cvs diff -r1.4 -r1.5 pkgsrc/databases/postgresql83-client/Attic/buildlink3.mk (expand / switch to unified diff)

--- pkgsrc/databases/postgresql83-client/Attic/buildlink3.mk 2010/05/20 12:36:28 1.4
+++ pkgsrc/databases/postgresql83-client/Attic/buildlink3.mk 2010/12/19 09:53:53 1.5
@@ -1,28 +1,20 @@ @@ -1,28 +1,20 @@
1# $NetBSD: buildlink3.mk,v 1.4 2010/05/20 12:36:28 adam Exp $ 1# $NetBSD: buildlink3.mk,v 1.5 2010/12/19 09:53:53 adam Exp $
2 
3.include "../../mk/bsd.fast.prefs.mk" 
4 2
5BUILDLINK_TREE+= postgresql83-client 3BUILDLINK_TREE+= postgresql83-client
6 4
7.if !defined(POSTGRESQL83_CLIENT_BUILDLINK3_MK) 5.if !defined(POSTGRESQL83_CLIENT_BUILDLINK3_MK)
8POSTGRESQL83_CLIENT_BUILDLINK3_MK:= 6POSTGRESQL83_CLIENT_BUILDLINK3_MK:=
9 7
10BUILDLINK_API_DEPENDS.postgresql83-client+= postgresql83-client>=8.3.0 8BUILDLINK_API_DEPENDS.postgresql83-client+= postgresql83-client>=8.3.0
11BUILDLINK_ABI_DEPENDS.postgresql83-client?= postgresql83-client>=8.3.9nb1 9BUILDLINK_ABI_DEPENDS.postgresql83-client+= postgresql83-client>=8.3.9nb1
12BUILDLINK_PKGSRCDIR.postgresql83-client?= ../../databases/postgresql83-client 10BUILDLINK_PKGSRCDIR.postgresql83-client?= ../../databases/postgresql83-client
13 11
14.if defined(PG_SUBPREFIX) && !empty(PG_SUBPREFIX) 
15BUILDLINK_INCDIRS.postgresql83-client?= ${PG_SUBPREFIX}/include 
16BUILDLINK_LIBDIRS.postgresql83-client?= ${PG_SUBPREFIX}/lib 
17.endif 
18 
19# This variable contains the libraries need to link most clients. 12# This variable contains the libraries need to link most clients.
20BUILDLINK_LDADD.postgresql83-client= -lpq ${BUILDLINK_LDADD.gettext} 13BUILDLINK_LDADD.postgresql83-client= -lpq ${BUILDLINK_LDADD.gettext}
21 
22BUILDLINK_FILES.postgresql83-client+= bin/pg_config 14BUILDLINK_FILES.postgresql83-client+= bin/pg_config
23 15
24.include "../../security/openssl/buildlink3.mk" 16.include "../../security/openssl/buildlink3.mk"
25.include "../../devel/gettext-lib/buildlink3.mk" 17.include "../../devel/gettext-lib/buildlink3.mk"
26.endif # POSTGRESQL83_CLIENT_BUILDLINK3_MK 18.endif # POSTGRESQL83_CLIENT_BUILDLINK3_MK
27 19
28BUILDLINK_TREE+= -postgresql83-client 20BUILDLINK_TREE+= -postgresql83-client

cvs diff -r1.8 -r1.9 pkgsrc/databases/postgresql83-plperl/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql83-plperl/Attic/Makefile 2010/10/07 15:52:40 1.8
+++ pkgsrc/databases/postgresql83-plperl/Attic/Makefile 2010/12/19 09:53:53 1.9
@@ -1,26 +1,24 @@ @@ -1,26 +1,24 @@
1# $NetBSD: Makefile,v 1.8 2010/10/07 15:52:40 adam Exp $ 1# $NetBSD: Makefile,v 1.9 2010/12/19 09:53:53 adam Exp $
2 2
3PKGNAME= postgresql83-plperl-${BASE_VERS} 3PKGNAME= ${DISTNAME:C/-/83-plperl-/}
4COMMENT= PL/Perl procedural language for the PostgreSQL backend 4COMMENT= PL/Perl procedural language for the PostgreSQL backend
5 5
6PKG_DESTDIR_SUPPORT= user-destdir 6PKG_DESTDIR_SUPPORT= user-destdir
7 7
8DEPENDS+= postgresql83-server>=${BASE_VERS}:../../databases/postgresql83-server 8DEPENDS+= postgresql83-server>=${PKGVERSION}:../../databases/postgresql83-server
9 9
10.include "../../databases/postgresql83/Makefile.common" 10.include "../../databases/postgresql83/Makefile.common"
11 11
 12USE_TOOLS+= perl
 13USE_LIBTOOL= yes
 14PKG_LIBTOOL= ${PKG_SHLIBTOOL}
12PERL5_CONFIGURE= no 15PERL5_CONFIGURE= no
13CONFIGURE_ARGS+= --with-perl 16CONFIGURE_ARGS+= --with-perl
14 17
15BUILD_DIRS= src/pl/plperl 18BUILD_DIRS= src/pl/plperl
16MAKE_FILE= GNUmakefile 19MAKE_FILE= GNUmakefile
17BUILD_MAKE_FLAGS= PGXS=1 20BUILD_MAKE_FLAGS= PGXS=1
18 21
19USE_TOOLS+= perl 
20USE_LIBTOOL= yes 
21PKG_LIBTOOL= ${PKG_SHLIBTOOL} 
22 
23.include "../../databases/postgresql83-client/buildlink3.mk" 22.include "../../databases/postgresql83-client/buildlink3.mk"
24.include "../../lang/perl5/module.mk" 23.include "../../lang/perl5/module.mk"
25 
26.include "../../mk/bsd.pkg.mk" 24.include "../../mk/bsd.pkg.mk"

cvs diff -r1.1.1.1 -r1.2 pkgsrc/databases/postgresql83-plperl/Attic/PLIST (expand / switch to unified diff)

--- pkgsrc/databases/postgresql83-plperl/Attic/PLIST 2008/03/04 12:44:23 1.1.1.1
+++ pkgsrc/databases/postgresql83-plperl/Attic/PLIST 2010/12/19 09:53:53 1.2
@@ -1,2 +1,2 @@ @@ -1,2 +1,2 @@
1@comment $NetBSD: PLIST,v 1.1.1.1 2008/03/04 12:44:23 adam Exp $ 1@comment $NetBSD: PLIST,v 1.2 2010/12/19 09:53:53 adam Exp $
2${PG_SUBPREFIX}lib/postgresql/plperl.la 2lib/postgresql/plperl.la

cvs diff -r1.7 -r1.8 pkgsrc/databases/postgresql83-plpython/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql83-plpython/Attic/Makefile 2010/04/12 09:53:50 1.7
+++ pkgsrc/databases/postgresql83-plpython/Attic/Makefile 2010/12/19 09:53:54 1.8
@@ -1,23 +1,21 @@ @@ -1,23 +1,21 @@
1# $NetBSD: Makefile,v 1.7 2010/04/12 09:53:50 adam Exp $ 1# $NetBSD: Makefile,v 1.8 2010/12/19 09:53:54 adam Exp $
2 2
3PKGNAME= postgresql83-plpython-${BASE_VERS} 3PKGNAME= ${DISTNAME:C/-/83-plpython-/}
4COMMENT= PL/Python procedural language for the PostgreSQL backend 4COMMENT= PL/Python procedural language for the PostgreSQL backend
5 5
6PKG_DESTDIR_SUPPORT= user-destdir 6PKG_DESTDIR_SUPPORT= user-destdir
7 7
8DEPENDS+= postgresql83-server>=${BASE_VERS}:../../databases/postgresql83-server 8DEPENDS+= postgresql83-server>=${PKGVERSION_NOREV}:../../databases/postgresql83-server
9 9
10.include "../../databases/postgresql83/Makefile.common" 10.include "../../databases/postgresql83/Makefile.common"
11 11
 12USE_LIBTOOL= yes
 13PKG_LIBTOOL= ${PKG_SHLIBTOOL}
12CONFIGURE_ARGS+= --with-python 14CONFIGURE_ARGS+= --with-python
13CONFIGURE_ENV+= PYTHON="${PYTHONBIN}" 15CONFIGURE_ENV+= PYTHON="${PYTHONBIN}"
14 16
15BUILD_DIRS= src/pl/plpython 17BUILD_DIRS= src/pl/plpython
16 18
17USE_LIBTOOL= yes 
18PKG_LIBTOOL= ${PKG_SHLIBTOOL} 
19 
20.include "../../databases/postgresql83-client/buildlink3.mk" 19.include "../../databases/postgresql83-client/buildlink3.mk"
21.include "../../lang/python/extension.mk" 20.include "../../lang/python/extension.mk"
22 
23.include "../../mk/bsd.pkg.mk" 21.include "../../mk/bsd.pkg.mk"

cvs diff -r1.1.1.1 -r1.2 pkgsrc/databases/postgresql83-plpython/Attic/PLIST (expand / switch to unified diff)

--- pkgsrc/databases/postgresql83-plpython/Attic/PLIST 2008/03/04 12:44:41 1.1.1.1
+++ pkgsrc/databases/postgresql83-plpython/Attic/PLIST 2010/12/19 09:53:54 1.2
@@ -1,2 +1,2 @@ @@ -1,2 +1,2 @@
1@comment $NetBSD: PLIST,v 1.1.1.1 2008/03/04 12:44:41 adam Exp $ 1@comment $NetBSD: PLIST,v 1.2 2010/12/19 09:53:54 adam Exp $
2${PG_SUBPREFIX}lib/postgresql/plpython.la 2lib/postgresql/plpython.la

cvs diff -r1.4 -r1.5 pkgsrc/databases/postgresql83-pltcl/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql83-pltcl/Attic/Makefile 2010/04/12 09:53:50 1.4
+++ pkgsrc/databases/postgresql83-pltcl/Attic/Makefile 2010/12/19 09:53:54 1.5
@@ -1,25 +1,23 @@ @@ -1,25 +1,23 @@
1# $NetBSD: Makefile,v 1.4 2010/04/12 09:53:50 adam Exp $ 1# $NetBSD: Makefile,v 1.5 2010/12/19 09:53:54 adam Exp $
2 2
3PKGNAME= postgresql83-pltcl-${BASE_VERS} 3PKGNAME= ${DISTNAME:C/-/83-pltcl-/}
4COMMENT= PL/Tcl procedural language for the PostgreSQL backend 4COMMENT= PL/Tcl procedural language for the PostgreSQL backend
5 5
6PKG_DESTDIR_SUPPORT= user-destdir 6PKG_DESTDIR_SUPPORT= user-destdir
7 7
8DEPENDS+= postgresql83-server>=${BASE_VERS}:../../databases/postgresql83-server 8DEPENDS+= postgresql83-server>=${PKGVERSION_NOREV}:../../databases/postgresql83-server
9 9
10.include "../../databases/postgresql83/Makefile.common" 10.include "../../databases/postgresql83/Makefile.common"
11 11
 12USE_LIBTOOL= yes
 13PKG_LIBTOOL= ${PKG_SHLIBTOOL}
12CONFIGURE_ARGS+= --with-tcl 14CONFIGURE_ARGS+= --with-tcl
13CONFIGURE_ARGS+= --with-tclconfig="${BUILDLINK_PREFIX.tcl}/lib" 15CONFIGURE_ARGS+= --with-tclconfig="${BUILDLINK_PREFIX.tcl}/lib"
14CONFIGURE_ENV+= TCLSH="${TCLSH}" 16CONFIGURE_ENV+= TCLSH="${TCLSH}"
15TCLSH= ${BUILDLINK_PREFIX.tcl}/bin/tclsh 17TCLSH= ${BUILDLINK_PREFIX.tcl}/bin/tclsh
16 18
17BUILD_DIRS= src/pl/tcl 19BUILD_DIRS= src/pl/tcl
18 20
19USE_LIBTOOL= yes 
20PKG_LIBTOOL= ${PKG_SHLIBTOOL} 
21 
22.include "../../databases/postgresql83-client/buildlink3.mk" 21.include "../../databases/postgresql83-client/buildlink3.mk"
23.include "../../lang/tcl/buildlink3.mk" 22.include "../../lang/tcl/buildlink3.mk"
24 
25.include "../../mk/bsd.pkg.mk" 23.include "../../mk/bsd.pkg.mk"

cvs diff -r1.1.1.1 -r1.2 pkgsrc/databases/postgresql83-pltcl/Attic/PLIST (expand / switch to unified diff)

--- pkgsrc/databases/postgresql83-pltcl/Attic/PLIST 2008/03/04 12:45:02 1.1.1.1
+++ pkgsrc/databases/postgresql83-pltcl/Attic/PLIST 2010/12/19 09:53:54 1.2
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1@comment $NetBSD: PLIST,v 1.1.1.1 2008/03/04 12:45:02 adam Exp $ 1@comment $NetBSD: PLIST,v 1.2 2010/12/19 09:53:54 adam Exp $
2${PG_SUBPREFIX}bin/pltcl_delmod 2bin/pltcl_delmod
3${PG_SUBPREFIX}bin/pltcl_listmod 3bin/pltcl_listmod
4${PG_SUBPREFIX}bin/pltcl_loadmod 4bin/pltcl_loadmod
5${PG_SUBPREFIX}lib/postgresql/pltcl.la 5lib/postgresql/pltcl.la
6${PG_SUBPREFIX}share/postgresql/unknown.pltcl 6share/postgresql/unknown.pltcl

cvs diff -r1.2 -r1.3 pkgsrc/databases/postgresql83-server/Attic/MESSAGE (expand / switch to unified diff)

--- pkgsrc/databases/postgresql83-server/Attic/MESSAGE 2008/04/24 13:46:24 1.2
+++ pkgsrc/databases/postgresql83-server/Attic/MESSAGE 2010/12/19 09:53:54 1.3
@@ -1,18 +1,18 @@ @@ -1,18 +1,18 @@
1=========================================================================== 1===========================================================================
2$NetBSD: MESSAGE,v 1.2 2008/04/24 13:46:24 abs Exp $ 2$NetBSD: MESSAGE,v 1.3 2010/12/19 09:53:54 adam Exp $
3 3
4To enable this package, put the following into your /etc/rc.conf: 4To enable this package, put the following into your /etc/rc.conf:
5 5
6 pgsql=yes 6 pgsql=YES
7 pgsql_flags="-l" # enables SSL connections (TCP/IP and 7 pgsql_flags="-l" # enables SSL connections (TCP/IP and
8 # ~pgsql/data/server.crt required) 8 # ~pgsql/data/server.crt required)
9 9
10and ensure that 10and ensure that
11 11
12 ${RCD_SCRIPTS_DIR}/pgsql start 12 ${RCD_SCRIPTS_DIR}/pgsql start
13 13
14is run at the appropriate time. 14is run at the appropriate time.
15 15
16Note: PostgreSQL accepts TCP/IP connections on localhost address by default. 16Note: PostgreSQL accepts TCP/IP connections on localhost address by default.
17 17
18=========================================================================== 18===========================================================================

cvs diff -r1.12 -r1.13 pkgsrc/databases/postgresql83-server/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql83-server/Attic/Makefile 2010/11/03 14:36:40 1.12
+++ pkgsrc/databases/postgresql83-server/Attic/Makefile 2010/12/19 09:53:54 1.13
@@ -1,38 +1,40 @@ @@ -1,38 +1,40 @@
1# $NetBSD: Makefile,v 1.12 2010/11/03 14:36:40 adam Exp $ 1# $NetBSD: Makefile,v 1.13 2010/12/19 09:53:54 adam Exp $
2 2
3PKGNAME= postgresql83-server-${BASE_VERS} 3PKGNAME= ${DISTNAME:C/-/83-server-/}
4COMMENT= PostgreSQL database server programs 4COMMENT= PostgreSQL database server programs
5 5
6PKG_DESTDIR_SUPPORT= user-destdir 6PKG_DESTDIR_SUPPORT= user-destdir
7 7
8# mips has no TAS implementation 8# mips has no TAS implementation
9NOT_FOR_PLATFORM= *-*-mips 9NOT_FOR_PLATFORM= *-*-mips
10 10
11.include "../../databases/postgresql83/Makefile.common" 11.include "../../databases/postgresql83/Makefile.common"
12 12
13# Use shlibtool (invoked as "$(LIBTOOL)") to build modules. 13# Use shlibtool (invoked as "$(LIBTOOL)") to build modules.
14USE_LIBTOOL= yes 14USE_LIBTOOL= yes
15PKG_LIBTOOL= ${PKG_SHLIBTOOL} 15PKG_LIBTOOL= ${PKG_SHLIBTOOL}
16 16
17MESSAGE_SRC= ${.CURDIR}/MESSAGE 
18 
19CONFIGURE_ARGS+= --with-openssl 17CONFIGURE_ARGS+= --with-openssl
20 18
21BUILD_DIRS= src/backend 19INSTALL_DIRS= src/backend
22BUILD_DIRS+= src/backend/utils/mb/conversion_procs 20INSTALL_DIRS+= src/backend/utils/mb/conversion_procs
23BUILD_DIRS+= src/backend/snowball 21INSTALL_DIRS+= src/backend/snowball
24BUILD_DIRS+= src/timezone 22INSTALL_DIRS+= src/timezone
25BUILD_DIRS+= src/pl 23INSTALL_DIRS+= src/pl
 24BUILD_DIRS= src/port
 25BUILD_DIRS+= ${INSTALL_DIRS}
 26
 27LIBS.SunOS+= -lintl
26 28
27# PostgreSQL has loadable server-side language modules. 29# PostgreSQL has loadable server-side language modules.
28# 30#
29# Explicitly set DLOPEN_REQUIRE_PTHREADS to "no" on NetBSD as NetBSD-2.x 31# Explicitly set DLOPEN_REQUIRE_PTHREADS to "no" on NetBSD as NetBSD-2.x
30# had problems with mixing dlopen() and pthreads, which blows up in 32# had problems with mixing dlopen() and pthreads, which blows up in
31# PostgreSQL's backend (pkg/28729). This works on older and newer 33# PostgreSQL's backend (pkg/28729). This works on older and newer
32# versions of NetBSD as well since they don't have the bad interaction 34# versions of NetBSD as well since they don't have the bad interaction
33# between dlopen() and pthreads. 35# between dlopen() and pthreads.
34.if ${OPSYS} == "NetBSD" 36.if ${OPSYS} == "NetBSD"
35DLOPEN_REQUIRE_PTHREADS= no 37DLOPEN_REQUIRE_PTHREADS= no
36.endif 38.endif
37.include "../../mk/dlopen.buildlink3.mk" 39.include "../../mk/dlopen.buildlink3.mk"
38 40
@@ -52,38 +54,27 @@ PGGROUP?= pgsql @@ -52,38 +54,27 @@ PGGROUP?= pgsql
52PGHOME?= ${PREFIX}/${PGUSER} 54PGHOME?= ${PREFIX}/${PGUSER}
53FILES_SUBST+= PGUSER=${PGUSER} 55FILES_SUBST+= PGUSER=${PGUSER}
54FILES_SUBST+= PGGROUP=${PGGROUP} 56FILES_SUBST+= PGGROUP=${PGGROUP}
55FILES_SUBST+= PGHOME=${PGHOME} 57FILES_SUBST+= PGHOME=${PGHOME}
56BUILD_DEFS+= PGHOME 58BUILD_DEFS+= PGHOME
57 59
58PKG_GROUPS_VARS+= PGGROUP 60PKG_GROUPS_VARS+= PGGROUP
59PKG_USERS_VARS+= PGUSER 61PKG_USERS_VARS+= PGUSER
60 62
61PKG_GROUPS= ${PGGROUP} 63PKG_GROUPS= ${PGGROUP}
62PKG_USERS= ${PGUSER}:${PGGROUP} 64PKG_USERS= ${PGUSER}:${PGGROUP}
63PKG_GECOS.${PGUSER}= PostgreSQL database administrator 65PKG_GECOS.${PGUSER}= PostgreSQL database administrator
64PKG_HOME.${PGUSER}= ${PGHOME} 66PKG_HOME.${PGUSER}= ${PGHOME}
65PKG_SHELL.${PGUSER}= ${SH} 
66 67
67RCD_SCRIPTS= pgsql 68RCD_SCRIPTS= pgsql
68 69
69.include "../../databases/postgresql83-client/buildlink3.mk" 70.include "../../databases/postgresql83-client/buildlink3.mk"
70.include "../../security/openssl/buildlink3.mk" 71.include "../../security/openssl/buildlink3.mk"
71 72
72# Avoid conflict between "${SSLBASE}/include/openssl/des.h" and 73# Avoid conflict between "${SSLBASE}/include/openssl/des.h" and
73# "/usr/include/crypt.h" -- we want the definitions in the former. 74# "/usr/include/crypt.h" -- we want the definitions in the former.
74post-wrapper: 75post-wrapper:
75.if ${OPSYS} == "SunOS" 76.if ${OPSYS} == "SunOS"
76 touch ${BUILDLINK_DIR}/include/crypt.h 77 touch ${BUILDLINK_DIR}/include/crypt.h
77.endif 78.endif
78 79
79pre-build: 
80 ${RUN} ${_ULIMIT_CMD} \ 
81 cd ${WRKSRC}/src/backend && \ 
82 env ${MAKE_ENV} ${MAKE_PROGRAM} ${BUILD_MAKE_FLAGS} \ 
83 ../../src/include/parser/parse.h \ 
84 ../../src/include/utils/fmgroids.h 
85 ${RUN}${_ULIMIT_CMD} \ 
86 cd ${WRKSRC}/src/port && \ 
87 env ${MAKE_ENV} ${MAKE_PROGRAM} ${BUILD_MAKE_FLAGS} 
88 
89.include "../../mk/bsd.pkg.mk" 80.include "../../mk/bsd.pkg.mk"

cvs diff -r1.12 -r1.13 pkgsrc/databases/postgresql83-server/Attic/PLIST (expand / switch to unified diff)

--- pkgsrc/databases/postgresql83-server/Attic/PLIST 2010/10/07 15:52:40 1.12
+++ pkgsrc/databases/postgresql83-server/Attic/PLIST 2010/12/19 09:53:54 1.13
@@ -1,672 +1,672 @@ @@ -1,672 +1,672 @@
1@comment $NetBSD: PLIST,v 1.12 2010/10/07 15:52:40 adam Exp $ 1@comment $NetBSD: PLIST,v 1.13 2010/12/19 09:53:54 adam Exp $
2${PG_SUBPREFIX}bin/postgres 2bin/postgres
3${PG_SUBPREFIX}bin/postmaster 3bin/postmaster
4${PG_SUBPREFIX}lib/postgresql/ascii_and_mic.la 4lib/postgresql/ascii_and_mic.la
5${PG_SUBPREFIX}lib/postgresql/cyrillic_and_mic.la 5lib/postgresql/cyrillic_and_mic.la
6${PG_SUBPREFIX}lib/postgresql/dict_snowball.la 6lib/postgresql/dict_snowball.la
7${PG_SUBPREFIX}lib/postgresql/euc_cn_and_mic.la 7lib/postgresql/euc_cn_and_mic.la
8${PG_SUBPREFIX}lib/postgresql/euc_jis_2004_and_shift_jis_2004.la 8lib/postgresql/euc_jis_2004_and_shift_jis_2004.la
9${PG_SUBPREFIX}lib/postgresql/euc_jp_and_sjis.la 9lib/postgresql/euc_jp_and_sjis.la
10${PG_SUBPREFIX}lib/postgresql/euc_kr_and_mic.la 10lib/postgresql/euc_kr_and_mic.la
11${PG_SUBPREFIX}lib/postgresql/euc_tw_and_big5.la 11lib/postgresql/euc_tw_and_big5.la
12${PG_SUBPREFIX}lib/postgresql/latin2_and_win1250.la 12lib/postgresql/latin2_and_win1250.la
13${PG_SUBPREFIX}lib/postgresql/latin_and_mic.la 13lib/postgresql/latin_and_mic.la
14${PG_SUBPREFIX}lib/postgresql/plpgsql.la 14lib/postgresql/plpgsql.la
15${PG_SUBPREFIX}lib/postgresql/utf8_and_ascii.la 15lib/postgresql/utf8_and_ascii.la
16${PG_SUBPREFIX}lib/postgresql/utf8_and_big5.la 16lib/postgresql/utf8_and_big5.la
17${PG_SUBPREFIX}lib/postgresql/utf8_and_euc_jis_2004.la 17lib/postgresql/utf8_and_euc_jis_2004.la
18${PG_SUBPREFIX}lib/postgresql/utf8_and_cyrillic.la 18lib/postgresql/utf8_and_cyrillic.la
19${PG_SUBPREFIX}lib/postgresql/utf8_and_euc_cn.la 19lib/postgresql/utf8_and_euc_cn.la
20${PG_SUBPREFIX}lib/postgresql/utf8_and_euc_jp.la 20lib/postgresql/utf8_and_euc_jp.la
21${PG_SUBPREFIX}lib/postgresql/utf8_and_euc_kr.la 21lib/postgresql/utf8_and_euc_kr.la
22${PG_SUBPREFIX}lib/postgresql/utf8_and_euc_tw.la 22lib/postgresql/utf8_and_euc_tw.la
23${PG_SUBPREFIX}lib/postgresql/utf8_and_gb18030.la 23lib/postgresql/utf8_and_gb18030.la
24${PG_SUBPREFIX}lib/postgresql/utf8_and_gbk.la 24lib/postgresql/utf8_and_gbk.la
25${PG_SUBPREFIX}lib/postgresql/utf8_and_iso8859.la 25lib/postgresql/utf8_and_iso8859.la
26${PG_SUBPREFIX}lib/postgresql/utf8_and_iso8859_1.la 26lib/postgresql/utf8_and_iso8859_1.la
27${PG_SUBPREFIX}lib/postgresql/utf8_and_johab.la 27lib/postgresql/utf8_and_johab.la
28${PG_SUBPREFIX}lib/postgresql/utf8_and_shift_jis_2004.la 28lib/postgresql/utf8_and_shift_jis_2004.la
29${PG_SUBPREFIX}lib/postgresql/utf8_and_sjis.la 29lib/postgresql/utf8_and_sjis.la
30${PG_SUBPREFIX}lib/postgresql/utf8_and_uhc.la 30lib/postgresql/utf8_and_uhc.la
31${PG_SUBPREFIX}lib/postgresql/utf8_and_win.la 31lib/postgresql/utf8_and_win.la
32${PG_SUBPREFIX}share/examples/rc.d/pgsql 32share/examples/rc.d/pgsql
33${PG_SUBPREFIX}share/locale/af/LC_MESSAGES/postgres.mo 33share/locale/af/LC_MESSAGES/postgres.mo
34${PG_SUBPREFIX}share/locale/cs/LC_MESSAGES/postgres.mo 34share/locale/cs/LC_MESSAGES/postgres.mo
35${PG_SUBPREFIX}share/locale/de/LC_MESSAGES/postgres.mo 35share/locale/de/LC_MESSAGES/postgres.mo
36${PG_SUBPREFIX}share/locale/es/LC_MESSAGES/postgres.mo 36share/locale/es/LC_MESSAGES/postgres.mo
37${PG_SUBPREFIX}share/locale/fr/LC_MESSAGES/postgres.mo 37share/locale/fr/LC_MESSAGES/postgres.mo
38${PG_SUBPREFIX}share/locale/hr/LC_MESSAGES/postgres.mo 38share/locale/hr/LC_MESSAGES/postgres.mo
39${PG_SUBPREFIX}share/locale/hu/LC_MESSAGES/postgres.mo 39share/locale/hu/LC_MESSAGES/postgres.mo
40${PG_SUBPREFIX}share/locale/it/LC_MESSAGES/postgres.mo 40share/locale/it/LC_MESSAGES/postgres.mo
41${PG_SUBPREFIX}share/locale/ko/LC_MESSAGES/postgres.mo 41share/locale/ko/LC_MESSAGES/postgres.mo
42${PG_SUBPREFIX}share/locale/nb/LC_MESSAGES/postgres.mo 42share/locale/nb/LC_MESSAGES/postgres.mo
43${PG_SUBPREFIX}share/locale/nl/LC_MESSAGES/postgres.mo 43share/locale/nl/LC_MESSAGES/postgres.mo
44${PG_SUBPREFIX}share/locale/pl/LC_MESSAGES/postgres.mo 44share/locale/pl/LC_MESSAGES/postgres.mo
45${PG_SUBPREFIX}share/locale/pt_BR/LC_MESSAGES/postgres.mo 45share/locale/pt_BR/LC_MESSAGES/postgres.mo
46${PG_SUBPREFIX}share/locale/ro/LC_MESSAGES/postgres.mo 46share/locale/ro/LC_MESSAGES/postgres.mo
47${PG_SUBPREFIX}share/locale/ru/LC_MESSAGES/postgres.mo 47share/locale/ru/LC_MESSAGES/postgres.mo
48${PG_SUBPREFIX}share/locale/sk/LC_MESSAGES/postgres.mo 48share/locale/sk/LC_MESSAGES/postgres.mo
49${PG_SUBPREFIX}share/locale/sl/LC_MESSAGES/postgres.mo 49share/locale/sl/LC_MESSAGES/postgres.mo
50${PG_SUBPREFIX}share/locale/sv/LC_MESSAGES/postgres.mo 50share/locale/sv/LC_MESSAGES/postgres.mo
51${PG_SUBPREFIX}share/locale/tr/LC_MESSAGES/postgres.mo 51share/locale/tr/LC_MESSAGES/postgres.mo
52${PG_SUBPREFIX}share/locale/zh_CN/LC_MESSAGES/postgres.mo 52share/locale/zh_CN/LC_MESSAGES/postgres.mo
53${PG_SUBPREFIX}share/locale/zh_TW/LC_MESSAGES/postgres.mo 53share/locale/zh_TW/LC_MESSAGES/postgres.mo
54${PG_SUBPREFIX}share/postgresql/conversion_create.sql 54share/postgresql/conversion_create.sql
55${PG_SUBPREFIX}share/postgresql/information_schema.sql 55share/postgresql/information_schema.sql
56${PG_SUBPREFIX}share/postgresql/pg_hba.conf.sample 56share/postgresql/pg_hba.conf.sample
57${PG_SUBPREFIX}share/postgresql/pg_ident.conf.sample 57share/postgresql/pg_ident.conf.sample
58${PG_SUBPREFIX}share/postgresql/postgres.bki 58share/postgresql/postgres.bki
59${PG_SUBPREFIX}share/postgresql/postgres.description 59share/postgresql/postgres.description
60${PG_SUBPREFIX}share/postgresql/postgres.shdescription 60share/postgresql/postgres.shdescription
61${PG_SUBPREFIX}share/postgresql/postgresql.conf.sample 61share/postgresql/postgresql.conf.sample
62${PG_SUBPREFIX}share/postgresql/recovery.conf.sample 62share/postgresql/recovery.conf.sample
63${PG_SUBPREFIX}share/postgresql/sql_features.txt 63share/postgresql/sql_features.txt
64${PG_SUBPREFIX}share/postgresql/snowball_create.sql 64share/postgresql/snowball_create.sql
65${PG_SUBPREFIX}share/postgresql/system_views.sql 65share/postgresql/system_views.sql
66${PG_SUBPREFIX}share/postgresql/timezone/Africa/Abidjan 66share/postgresql/timezone/Africa/Abidjan
67${PG_SUBPREFIX}share/postgresql/timezone/Africa/Accra 67share/postgresql/timezone/Africa/Accra
68${PG_SUBPREFIX}share/postgresql/timezone/Africa/Addis_Ababa 68share/postgresql/timezone/Africa/Addis_Ababa
69${PG_SUBPREFIX}share/postgresql/timezone/Africa/Algiers 69share/postgresql/timezone/Africa/Algiers
70${PG_SUBPREFIX}share/postgresql/timezone/Africa/Asmara 70share/postgresql/timezone/Africa/Asmara
71${PG_SUBPREFIX}share/postgresql/timezone/Africa/Asmera 71share/postgresql/timezone/Africa/Asmera
72${PG_SUBPREFIX}share/postgresql/timezone/Africa/Bamako 72share/postgresql/timezone/Africa/Bamako
73${PG_SUBPREFIX}share/postgresql/timezone/Africa/Bangui 73share/postgresql/timezone/Africa/Bangui
74${PG_SUBPREFIX}share/postgresql/timezone/Africa/Banjul 74share/postgresql/timezone/Africa/Banjul
75${PG_SUBPREFIX}share/postgresql/timezone/Africa/Bissau 75share/postgresql/timezone/Africa/Bissau
76${PG_SUBPREFIX}share/postgresql/timezone/Africa/Blantyre 76share/postgresql/timezone/Africa/Blantyre
77${PG_SUBPREFIX}share/postgresql/timezone/Africa/Brazzaville 77share/postgresql/timezone/Africa/Brazzaville
78${PG_SUBPREFIX}share/postgresql/timezone/Africa/Bujumbura 78share/postgresql/timezone/Africa/Bujumbura
79${PG_SUBPREFIX}share/postgresql/timezone/Africa/Cairo 79share/postgresql/timezone/Africa/Cairo
80${PG_SUBPREFIX}share/postgresql/timezone/Africa/Casablanca 80share/postgresql/timezone/Africa/Casablanca
81${PG_SUBPREFIX}share/postgresql/timezone/Africa/Ceuta 81share/postgresql/timezone/Africa/Ceuta
82${PG_SUBPREFIX}share/postgresql/timezone/Africa/Conakry 82share/postgresql/timezone/Africa/Conakry
83${PG_SUBPREFIX}share/postgresql/timezone/Africa/Dakar 83share/postgresql/timezone/Africa/Dakar
84${PG_SUBPREFIX}share/postgresql/timezone/Africa/Dar_es_Salaam 84share/postgresql/timezone/Africa/Dar_es_Salaam
85${PG_SUBPREFIX}share/postgresql/timezone/Africa/Djibouti 85share/postgresql/timezone/Africa/Djibouti
86${PG_SUBPREFIX}share/postgresql/timezone/Africa/Douala 86share/postgresql/timezone/Africa/Douala
87${PG_SUBPREFIX}share/postgresql/timezone/Africa/El_Aaiun 87share/postgresql/timezone/Africa/El_Aaiun
88${PG_SUBPREFIX}share/postgresql/timezone/Africa/Freetown 88share/postgresql/timezone/Africa/Freetown
89${PG_SUBPREFIX}share/postgresql/timezone/Africa/Gaborone 89share/postgresql/timezone/Africa/Gaborone
90${PG_SUBPREFIX}share/postgresql/timezone/Africa/Harare 90share/postgresql/timezone/Africa/Harare
91${PG_SUBPREFIX}share/postgresql/timezone/Africa/Johannesburg 91share/postgresql/timezone/Africa/Johannesburg
92${PG_SUBPREFIX}share/postgresql/timezone/Africa/Kampala 92share/postgresql/timezone/Africa/Kampala
93${PG_SUBPREFIX}share/postgresql/timezone/Africa/Khartoum 93share/postgresql/timezone/Africa/Khartoum
94${PG_SUBPREFIX}share/postgresql/timezone/Africa/Kigali 94share/postgresql/timezone/Africa/Kigali
95${PG_SUBPREFIX}share/postgresql/timezone/Africa/Kinshasa 95share/postgresql/timezone/Africa/Kinshasa
96${PG_SUBPREFIX}share/postgresql/timezone/Africa/Lagos 96share/postgresql/timezone/Africa/Lagos
97${PG_SUBPREFIX}share/postgresql/timezone/Africa/Libreville 97share/postgresql/timezone/Africa/Libreville
98${PG_SUBPREFIX}share/postgresql/timezone/Africa/Lome 98share/postgresql/timezone/Africa/Lome
99${PG_SUBPREFIX}share/postgresql/timezone/Africa/Luanda 99share/postgresql/timezone/Africa/Luanda
100${PG_SUBPREFIX}share/postgresql/timezone/Africa/Lubumbashi 100share/postgresql/timezone/Africa/Lubumbashi
101${PG_SUBPREFIX}share/postgresql/timezone/Africa/Lusaka 101share/postgresql/timezone/Africa/Lusaka
102${PG_SUBPREFIX}share/postgresql/timezone/Africa/Malabo 102share/postgresql/timezone/Africa/Malabo
103${PG_SUBPREFIX}share/postgresql/timezone/Africa/Maputo 103share/postgresql/timezone/Africa/Maputo
104${PG_SUBPREFIX}share/postgresql/timezone/Africa/Maseru 104share/postgresql/timezone/Africa/Maseru
105${PG_SUBPREFIX}share/postgresql/timezone/Africa/Mbabane 105share/postgresql/timezone/Africa/Mbabane
106${PG_SUBPREFIX}share/postgresql/timezone/Africa/Mogadishu 106share/postgresql/timezone/Africa/Mogadishu
107${PG_SUBPREFIX}share/postgresql/timezone/Africa/Monrovia 107share/postgresql/timezone/Africa/Monrovia
108${PG_SUBPREFIX}share/postgresql/timezone/Africa/Nairobi 108share/postgresql/timezone/Africa/Nairobi
109${PG_SUBPREFIX}share/postgresql/timezone/Africa/Ndjamena 109share/postgresql/timezone/Africa/Ndjamena
110${PG_SUBPREFIX}share/postgresql/timezone/Africa/Niamey 110share/postgresql/timezone/Africa/Niamey
111${PG_SUBPREFIX}share/postgresql/timezone/Africa/Nouakchott 111share/postgresql/timezone/Africa/Nouakchott
112${PG_SUBPREFIX}share/postgresql/timezone/Africa/Ouagadougou 112share/postgresql/timezone/Africa/Ouagadougou
113${PG_SUBPREFIX}share/postgresql/timezone/Africa/Porto-Novo 113share/postgresql/timezone/Africa/Porto-Novo
114${PG_SUBPREFIX}share/postgresql/timezone/Africa/Sao_Tome 114share/postgresql/timezone/Africa/Sao_Tome
115${PG_SUBPREFIX}share/postgresql/timezone/Africa/Timbuktu 115share/postgresql/timezone/Africa/Timbuktu
116${PG_SUBPREFIX}share/postgresql/timezone/Africa/Tripoli 116share/postgresql/timezone/Africa/Tripoli
117${PG_SUBPREFIX}share/postgresql/timezone/Africa/Tunis 117share/postgresql/timezone/Africa/Tunis
118${PG_SUBPREFIX}share/postgresql/timezone/Africa/Windhoek 118share/postgresql/timezone/Africa/Windhoek
119${PG_SUBPREFIX}share/postgresql/timezone/America/Adak 119share/postgresql/timezone/America/Adak
120${PG_SUBPREFIX}share/postgresql/timezone/America/Anchorage 120share/postgresql/timezone/America/Anchorage
121${PG_SUBPREFIX}share/postgresql/timezone/America/Anguilla 121share/postgresql/timezone/America/Anguilla
122${PG_SUBPREFIX}share/postgresql/timezone/America/Antigua 122share/postgresql/timezone/America/Antigua
123${PG_SUBPREFIX}share/postgresql/timezone/America/Araguaina 123share/postgresql/timezone/America/Araguaina
124${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/Buenos_Aires 124share/postgresql/timezone/America/Argentina/Buenos_Aires
125${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/Catamarca 125share/postgresql/timezone/America/Argentina/Catamarca
126${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/ComodRivadavia 126share/postgresql/timezone/America/Argentina/ComodRivadavia
127${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/Cordoba 127share/postgresql/timezone/America/Argentina/Cordoba
128${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/Jujuy 128share/postgresql/timezone/America/Argentina/Jujuy
129${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/La_Rioja 129share/postgresql/timezone/America/Argentina/La_Rioja
130${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/Mendoza 130share/postgresql/timezone/America/Argentina/Mendoza
131${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/Rio_Gallegos 131share/postgresql/timezone/America/Argentina/Rio_Gallegos
132${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/San_Juan 132share/postgresql/timezone/America/Argentina/San_Juan
133${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/San_Luis 133share/postgresql/timezone/America/Argentina/San_Luis
134${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/Salta 134share/postgresql/timezone/America/Argentina/Salta
135${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/Tucuman 135share/postgresql/timezone/America/Argentina/Tucuman
136${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/Ushuaia 136share/postgresql/timezone/America/Argentina/Ushuaia
137${PG_SUBPREFIX}share/postgresql/timezone/America/Aruba 137share/postgresql/timezone/America/Aruba
138${PG_SUBPREFIX}share/postgresql/timezone/America/Asuncion 138share/postgresql/timezone/America/Asuncion
139${PG_SUBPREFIX}share/postgresql/timezone/America/Atka 139share/postgresql/timezone/America/Atka
140${PG_SUBPREFIX}share/postgresql/timezone/America/Atikokan 140share/postgresql/timezone/America/Atikokan
141${PG_SUBPREFIX}share/postgresql/timezone/America/Bahia 141share/postgresql/timezone/America/Bahia
142${PG_SUBPREFIX}share/postgresql/timezone/America/Bahia_Banderas 142share/postgresql/timezone/America/Bahia_Banderas
143${PG_SUBPREFIX}share/postgresql/timezone/America/Barbados 143share/postgresql/timezone/America/Barbados
144${PG_SUBPREFIX}share/postgresql/timezone/America/Belem 144share/postgresql/timezone/America/Belem
145${PG_SUBPREFIX}share/postgresql/timezone/America/Belize 145share/postgresql/timezone/America/Belize
146${PG_SUBPREFIX}share/postgresql/timezone/America/Blanc-Sablon 146share/postgresql/timezone/America/Blanc-Sablon
147${PG_SUBPREFIX}share/postgresql/timezone/America/Boa_Vista 147share/postgresql/timezone/America/Boa_Vista
148${PG_SUBPREFIX}share/postgresql/timezone/America/Bogota 148share/postgresql/timezone/America/Bogota
149${PG_SUBPREFIX}share/postgresql/timezone/America/Boise 149share/postgresql/timezone/America/Boise
150${PG_SUBPREFIX}share/postgresql/timezone/America/Buenos_Aires 150share/postgresql/timezone/America/Buenos_Aires
151${PG_SUBPREFIX}share/postgresql/timezone/America/Cambridge_Bay 151share/postgresql/timezone/America/Cambridge_Bay
152${PG_SUBPREFIX}share/postgresql/timezone/America/Campo_Grande 152share/postgresql/timezone/America/Campo_Grande
153${PG_SUBPREFIX}share/postgresql/timezone/America/Cancun 153share/postgresql/timezone/America/Cancun
154${PG_SUBPREFIX}share/postgresql/timezone/America/Caracas 154share/postgresql/timezone/America/Caracas
155${PG_SUBPREFIX}share/postgresql/timezone/America/Catamarca 155share/postgresql/timezone/America/Catamarca
156${PG_SUBPREFIX}share/postgresql/timezone/America/Cayenne 156share/postgresql/timezone/America/Cayenne
157${PG_SUBPREFIX}share/postgresql/timezone/America/Cayman 157share/postgresql/timezone/America/Cayman
158${PG_SUBPREFIX}share/postgresql/timezone/America/Chicago 158share/postgresql/timezone/America/Chicago
159${PG_SUBPREFIX}share/postgresql/timezone/America/Chihuahua 159share/postgresql/timezone/America/Chihuahua
160${PG_SUBPREFIX}share/postgresql/timezone/America/Coral_Harbour 160share/postgresql/timezone/America/Coral_Harbour
161${PG_SUBPREFIX}share/postgresql/timezone/America/Cordoba 161share/postgresql/timezone/America/Cordoba
162${PG_SUBPREFIX}share/postgresql/timezone/America/Costa_Rica 162share/postgresql/timezone/America/Costa_Rica
163${PG_SUBPREFIX}share/postgresql/timezone/America/Cuiaba 163share/postgresql/timezone/America/Cuiaba
164${PG_SUBPREFIX}share/postgresql/timezone/America/Curacao 164share/postgresql/timezone/America/Curacao
165${PG_SUBPREFIX}share/postgresql/timezone/America/Danmarkshavn 165share/postgresql/timezone/America/Danmarkshavn
166${PG_SUBPREFIX}share/postgresql/timezone/America/Dawson 166share/postgresql/timezone/America/Dawson
167${PG_SUBPREFIX}share/postgresql/timezone/America/Dawson_Creek 167share/postgresql/timezone/America/Dawson_Creek
168${PG_SUBPREFIX}share/postgresql/timezone/America/Denver 168share/postgresql/timezone/America/Denver
169${PG_SUBPREFIX}share/postgresql/timezone/America/Detroit 169share/postgresql/timezone/America/Detroit
170${PG_SUBPREFIX}share/postgresql/timezone/America/Dominica 170share/postgresql/timezone/America/Dominica
171${PG_SUBPREFIX}share/postgresql/timezone/America/Edmonton 171share/postgresql/timezone/America/Edmonton
172${PG_SUBPREFIX}share/postgresql/timezone/America/Eirunepe 172share/postgresql/timezone/America/Eirunepe
173${PG_SUBPREFIX}share/postgresql/timezone/America/El_Salvador 173share/postgresql/timezone/America/El_Salvador
174${PG_SUBPREFIX}share/postgresql/timezone/America/Ensenada 174share/postgresql/timezone/America/Ensenada
175${PG_SUBPREFIX}share/postgresql/timezone/America/Fort_Wayne 175share/postgresql/timezone/America/Fort_Wayne
176${PG_SUBPREFIX}share/postgresql/timezone/America/Fortaleza 176share/postgresql/timezone/America/Fortaleza
177${PG_SUBPREFIX}share/postgresql/timezone/America/Glace_Bay 177share/postgresql/timezone/America/Glace_Bay
178${PG_SUBPREFIX}share/postgresql/timezone/America/Godthab 178share/postgresql/timezone/America/Godthab
179${PG_SUBPREFIX}share/postgresql/timezone/America/Goose_Bay 179share/postgresql/timezone/America/Goose_Bay
180${PG_SUBPREFIX}share/postgresql/timezone/America/Grand_Turk 180share/postgresql/timezone/America/Grand_Turk
181${PG_SUBPREFIX}share/postgresql/timezone/America/Grenada 181share/postgresql/timezone/America/Grenada
182${PG_SUBPREFIX}share/postgresql/timezone/America/Guadeloupe 182share/postgresql/timezone/America/Guadeloupe
183${PG_SUBPREFIX}share/postgresql/timezone/America/Guatemala 183share/postgresql/timezone/America/Guatemala
184${PG_SUBPREFIX}share/postgresql/timezone/America/Guayaquil 184share/postgresql/timezone/America/Guayaquil
185${PG_SUBPREFIX}share/postgresql/timezone/America/Guyana 185share/postgresql/timezone/America/Guyana
186${PG_SUBPREFIX}share/postgresql/timezone/America/Halifax 186share/postgresql/timezone/America/Halifax
187${PG_SUBPREFIX}share/postgresql/timezone/America/Havana 187share/postgresql/timezone/America/Havana
188${PG_SUBPREFIX}share/postgresql/timezone/America/Hermosillo 188share/postgresql/timezone/America/Hermosillo
189${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana/Indianapolis 189share/postgresql/timezone/America/Indiana/Indianapolis
190${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana/Knox 190share/postgresql/timezone/America/Indiana/Knox
191${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana/Marengo 191share/postgresql/timezone/America/Indiana/Marengo
192${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana/Petersburg 192share/postgresql/timezone/America/Indiana/Petersburg
193${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana/Tell_City 193share/postgresql/timezone/America/Indiana/Tell_City
194${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana/Vevay 194share/postgresql/timezone/America/Indiana/Vevay
195${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana/Vincennes 195share/postgresql/timezone/America/Indiana/Vincennes
196${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana/Winamac 196share/postgresql/timezone/America/Indiana/Winamac
197${PG_SUBPREFIX}share/postgresql/timezone/America/Indianapolis 197share/postgresql/timezone/America/Indianapolis
198${PG_SUBPREFIX}share/postgresql/timezone/America/Inuvik 198share/postgresql/timezone/America/Inuvik
199${PG_SUBPREFIX}share/postgresql/timezone/America/Iqaluit 199share/postgresql/timezone/America/Iqaluit
200${PG_SUBPREFIX}share/postgresql/timezone/America/Jamaica 200share/postgresql/timezone/America/Jamaica
201${PG_SUBPREFIX}share/postgresql/timezone/America/Jujuy 201share/postgresql/timezone/America/Jujuy
202${PG_SUBPREFIX}share/postgresql/timezone/America/Juneau 202share/postgresql/timezone/America/Juneau
203${PG_SUBPREFIX}share/postgresql/timezone/America/Kentucky/Louisville 203share/postgresql/timezone/America/Kentucky/Louisville
204${PG_SUBPREFIX}share/postgresql/timezone/America/Kentucky/Monticello 204share/postgresql/timezone/America/Kentucky/Monticello
205${PG_SUBPREFIX}share/postgresql/timezone/America/Knox_IN 205share/postgresql/timezone/America/Knox_IN
206${PG_SUBPREFIX}share/postgresql/timezone/America/La_Paz 206share/postgresql/timezone/America/La_Paz
207${PG_SUBPREFIX}share/postgresql/timezone/America/Lima 207share/postgresql/timezone/America/Lima
208${PG_SUBPREFIX}share/postgresql/timezone/America/Los_Angeles 208share/postgresql/timezone/America/Los_Angeles
209${PG_SUBPREFIX}share/postgresql/timezone/America/Louisville 209share/postgresql/timezone/America/Louisville
210${PG_SUBPREFIX}share/postgresql/timezone/America/Maceio 210share/postgresql/timezone/America/Maceio
211${PG_SUBPREFIX}share/postgresql/timezone/America/Managua 211share/postgresql/timezone/America/Managua
212${PG_SUBPREFIX}share/postgresql/timezone/America/Manaus 212share/postgresql/timezone/America/Manaus
213${PG_SUBPREFIX}share/postgresql/timezone/America/Marigot 213share/postgresql/timezone/America/Marigot
214${PG_SUBPREFIX}share/postgresql/timezone/America/Martinique 214share/postgresql/timezone/America/Martinique
215${PG_SUBPREFIX}share/postgresql/timezone/America/Matamoros 215share/postgresql/timezone/America/Matamoros
216${PG_SUBPREFIX}share/postgresql/timezone/America/Mazatlan 216share/postgresql/timezone/America/Mazatlan
217${PG_SUBPREFIX}share/postgresql/timezone/America/Mendoza 217share/postgresql/timezone/America/Mendoza
218${PG_SUBPREFIX}share/postgresql/timezone/America/Menominee 218share/postgresql/timezone/America/Menominee
219${PG_SUBPREFIX}share/postgresql/timezone/America/Merida 219share/postgresql/timezone/America/Merida
220${PG_SUBPREFIX}share/postgresql/timezone/America/Mexico_City 220share/postgresql/timezone/America/Mexico_City
221${PG_SUBPREFIX}share/postgresql/timezone/America/Miquelon 221share/postgresql/timezone/America/Miquelon
222${PG_SUBPREFIX}share/postgresql/timezone/America/Moncton 222share/postgresql/timezone/America/Moncton
223${PG_SUBPREFIX}share/postgresql/timezone/America/Monterrey 223share/postgresql/timezone/America/Monterrey
224${PG_SUBPREFIX}share/postgresql/timezone/America/Montevideo 224share/postgresql/timezone/America/Montevideo
225${PG_SUBPREFIX}share/postgresql/timezone/America/Montreal 225share/postgresql/timezone/America/Montreal
226${PG_SUBPREFIX}share/postgresql/timezone/America/Montserrat 226share/postgresql/timezone/America/Montserrat
227${PG_SUBPREFIX}share/postgresql/timezone/America/Nassau 227share/postgresql/timezone/America/Nassau
228${PG_SUBPREFIX}share/postgresql/timezone/America/New_York 228share/postgresql/timezone/America/New_York
229${PG_SUBPREFIX}share/postgresql/timezone/America/Nipigon 229share/postgresql/timezone/America/Nipigon
230${PG_SUBPREFIX}share/postgresql/timezone/America/Nome 230share/postgresql/timezone/America/Nome
231${PG_SUBPREFIX}share/postgresql/timezone/America/Noronha 231share/postgresql/timezone/America/Noronha
232${PG_SUBPREFIX}share/postgresql/timezone/America/North_Dakota/Center 232share/postgresql/timezone/America/North_Dakota/Center
233${PG_SUBPREFIX}share/postgresql/timezone/America/North_Dakota/New_Salem 233share/postgresql/timezone/America/North_Dakota/New_Salem
234${PG_SUBPREFIX}share/postgresql/timezone/America/Ojinaga 234share/postgresql/timezone/America/Ojinaga
235${PG_SUBPREFIX}share/postgresql/timezone/America/Panama 235share/postgresql/timezone/America/Panama
236${PG_SUBPREFIX}share/postgresql/timezone/America/Pangnirtung 236share/postgresql/timezone/America/Pangnirtung
237${PG_SUBPREFIX}share/postgresql/timezone/America/Paramaribo 237share/postgresql/timezone/America/Paramaribo
238${PG_SUBPREFIX}share/postgresql/timezone/America/Phoenix 238share/postgresql/timezone/America/Phoenix
239${PG_SUBPREFIX}share/postgresql/timezone/America/Port-au-Prince 239share/postgresql/timezone/America/Port-au-Prince
240${PG_SUBPREFIX}share/postgresql/timezone/America/Port_of_Spain 240share/postgresql/timezone/America/Port_of_Spain
241${PG_SUBPREFIX}share/postgresql/timezone/America/Porto_Acre 241share/postgresql/timezone/America/Porto_Acre
242${PG_SUBPREFIX}share/postgresql/timezone/America/Porto_Velho 242share/postgresql/timezone/America/Porto_Velho
243${PG_SUBPREFIX}share/postgresql/timezone/America/Puerto_Rico 243share/postgresql/timezone/America/Puerto_Rico
244${PG_SUBPREFIX}share/postgresql/timezone/America/Rainy_River 244share/postgresql/timezone/America/Rainy_River
245${PG_SUBPREFIX}share/postgresql/timezone/America/Rankin_Inlet 245share/postgresql/timezone/America/Rankin_Inlet
246${PG_SUBPREFIX}share/postgresql/timezone/America/Recife 246share/postgresql/timezone/America/Recife
247${PG_SUBPREFIX}share/postgresql/timezone/America/Regina 247share/postgresql/timezone/America/Regina
248${PG_SUBPREFIX}share/postgresql/timezone/America/Resolute 248share/postgresql/timezone/America/Resolute
249${PG_SUBPREFIX}share/postgresql/timezone/America/Rio_Branco 249share/postgresql/timezone/America/Rio_Branco
250${PG_SUBPREFIX}share/postgresql/timezone/America/Rosario 250share/postgresql/timezone/America/Rosario
251${PG_SUBPREFIX}share/postgresql/timezone/America/Santarem 251share/postgresql/timezone/America/Santarem
252${PG_SUBPREFIX}share/postgresql/timezone/America/Santiago 252share/postgresql/timezone/America/Santiago
253${PG_SUBPREFIX}share/postgresql/timezone/America/Santa_Isabel 253share/postgresql/timezone/America/Santa_Isabel
254${PG_SUBPREFIX}share/postgresql/timezone/America/Santo_Domingo 254share/postgresql/timezone/America/Santo_Domingo
255${PG_SUBPREFIX}share/postgresql/timezone/America/Sao_Paulo 255share/postgresql/timezone/America/Sao_Paulo
256${PG_SUBPREFIX}share/postgresql/timezone/America/Scoresbysund 256share/postgresql/timezone/America/Scoresbysund
257${PG_SUBPREFIX}share/postgresql/timezone/America/Shiprock 257share/postgresql/timezone/America/Shiprock
258${PG_SUBPREFIX}share/postgresql/timezone/America/St_Barthelemy 258share/postgresql/timezone/America/St_Barthelemy
259${PG_SUBPREFIX}share/postgresql/timezone/America/St_Johns 259share/postgresql/timezone/America/St_Johns
260${PG_SUBPREFIX}share/postgresql/timezone/America/St_Kitts 260share/postgresql/timezone/America/St_Kitts
261${PG_SUBPREFIX}share/postgresql/timezone/America/St_Lucia 261share/postgresql/timezone/America/St_Lucia
262${PG_SUBPREFIX}share/postgresql/timezone/America/St_Thomas 262share/postgresql/timezone/America/St_Thomas
263${PG_SUBPREFIX}share/postgresql/timezone/America/St_Vincent 263share/postgresql/timezone/America/St_Vincent
264${PG_SUBPREFIX}share/postgresql/timezone/America/Swift_Current 264share/postgresql/timezone/America/Swift_Current
265${PG_SUBPREFIX}share/postgresql/timezone/America/Tegucigalpa 265share/postgresql/timezone/America/Tegucigalpa
266${PG_SUBPREFIX}share/postgresql/timezone/America/Thule 266share/postgresql/timezone/America/Thule
267${PG_SUBPREFIX}share/postgresql/timezone/America/Thunder_Bay 267share/postgresql/timezone/America/Thunder_Bay
268${PG_SUBPREFIX}share/postgresql/timezone/America/Tijuana 268share/postgresql/timezone/America/Tijuana
269${PG_SUBPREFIX}share/postgresql/timezone/America/Toronto 269share/postgresql/timezone/America/Toronto
270${PG_SUBPREFIX}share/postgresql/timezone/America/Tortola 270share/postgresql/timezone/America/Tortola
271${PG_SUBPREFIX}share/postgresql/timezone/America/Vancouver 271share/postgresql/timezone/America/Vancouver
272${PG_SUBPREFIX}share/postgresql/timezone/America/Virgin 272share/postgresql/timezone/America/Virgin
273${PG_SUBPREFIX}share/postgresql/timezone/America/Whitehorse 273share/postgresql/timezone/America/Whitehorse
274${PG_SUBPREFIX}share/postgresql/timezone/America/Winnipeg 274share/postgresql/timezone/America/Winnipeg
275${PG_SUBPREFIX}share/postgresql/timezone/America/Yakutat 275share/postgresql/timezone/America/Yakutat
276${PG_SUBPREFIX}share/postgresql/timezone/America/Yellowknife 276share/postgresql/timezone/America/Yellowknife
277${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/Casey 277share/postgresql/timezone/Antarctica/Casey
278${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/Davis 278share/postgresql/timezone/Antarctica/Davis
279${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/DumontDUrville 279share/postgresql/timezone/Antarctica/DumontDUrville
280${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/Macquarie 280share/postgresql/timezone/Antarctica/Macquarie
281${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/Mawson 281share/postgresql/timezone/Antarctica/Mawson
282${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/McMurdo 282share/postgresql/timezone/Antarctica/McMurdo
283${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/Palmer 283share/postgresql/timezone/Antarctica/Palmer
284${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/Rothera 284share/postgresql/timezone/Antarctica/Rothera
285${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/South_Pole 285share/postgresql/timezone/Antarctica/South_Pole
286${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/Syowa 286share/postgresql/timezone/Antarctica/Syowa
287${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/Vostok 287share/postgresql/timezone/Antarctica/Vostok
288${PG_SUBPREFIX}share/postgresql/timezone/Arctic/Longyearbyen 288share/postgresql/timezone/Arctic/Longyearbyen
289${PG_SUBPREFIX}share/postgresql/timezone/Asia/Aden 289share/postgresql/timezone/Asia/Aden
290${PG_SUBPREFIX}share/postgresql/timezone/Asia/Almaty 290share/postgresql/timezone/Asia/Almaty
291${PG_SUBPREFIX}share/postgresql/timezone/Asia/Amman 291share/postgresql/timezone/Asia/Amman
292${PG_SUBPREFIX}share/postgresql/timezone/Asia/Anadyr 292share/postgresql/timezone/Asia/Anadyr
293${PG_SUBPREFIX}share/postgresql/timezone/Asia/Aqtau 293share/postgresql/timezone/Asia/Aqtau
294${PG_SUBPREFIX}share/postgresql/timezone/Asia/Aqtobe 294share/postgresql/timezone/Asia/Aqtobe
295${PG_SUBPREFIX}share/postgresql/timezone/Asia/Ashgabat 295share/postgresql/timezone/Asia/Ashgabat
296${PG_SUBPREFIX}share/postgresql/timezone/Asia/Ashkhabad 296share/postgresql/timezone/Asia/Ashkhabad
297${PG_SUBPREFIX}share/postgresql/timezone/Asia/Baghdad 297share/postgresql/timezone/Asia/Baghdad
298${PG_SUBPREFIX}share/postgresql/timezone/Asia/Bahrain 298share/postgresql/timezone/Asia/Bahrain
299${PG_SUBPREFIX}share/postgresql/timezone/Asia/Baku 299share/postgresql/timezone/Asia/Baku
300${PG_SUBPREFIX}share/postgresql/timezone/Asia/Bangkok 300share/postgresql/timezone/Asia/Bangkok
301${PG_SUBPREFIX}share/postgresql/timezone/Asia/Beirut 301share/postgresql/timezone/Asia/Beirut
302${PG_SUBPREFIX}share/postgresql/timezone/Asia/Bishkek 302share/postgresql/timezone/Asia/Bishkek
303${PG_SUBPREFIX}share/postgresql/timezone/Asia/Brunei 303share/postgresql/timezone/Asia/Brunei
304${PG_SUBPREFIX}share/postgresql/timezone/Asia/Calcutta 304share/postgresql/timezone/Asia/Calcutta
305${PG_SUBPREFIX}share/postgresql/timezone/Asia/Choibalsan 305share/postgresql/timezone/Asia/Choibalsan
306${PG_SUBPREFIX}share/postgresql/timezone/Asia/Chongqing 306share/postgresql/timezone/Asia/Chongqing
307${PG_SUBPREFIX}share/postgresql/timezone/Asia/Chungking 307share/postgresql/timezone/Asia/Chungking
308${PG_SUBPREFIX}share/postgresql/timezone/Asia/Colombo 308share/postgresql/timezone/Asia/Colombo
309${PG_SUBPREFIX}share/postgresql/timezone/Asia/Dacca 309share/postgresql/timezone/Asia/Dacca
310${PG_SUBPREFIX}share/postgresql/timezone/Asia/Damascus 310share/postgresql/timezone/Asia/Damascus
311${PG_SUBPREFIX}share/postgresql/timezone/Asia/Dhaka 311share/postgresql/timezone/Asia/Dhaka
312${PG_SUBPREFIX}share/postgresql/timezone/Asia/Dili 312share/postgresql/timezone/Asia/Dili
313${PG_SUBPREFIX}share/postgresql/timezone/Asia/Dubai 313share/postgresql/timezone/Asia/Dubai
314${PG_SUBPREFIX}share/postgresql/timezone/Asia/Dushanbe 314share/postgresql/timezone/Asia/Dushanbe
315${PG_SUBPREFIX}share/postgresql/timezone/Asia/Gaza 315share/postgresql/timezone/Asia/Gaza
316${PG_SUBPREFIX}share/postgresql/timezone/Asia/Harbin 316share/postgresql/timezone/Asia/Harbin
317${PG_SUBPREFIX}share/postgresql/timezone/Asia/Ho_Chi_Minh 317share/postgresql/timezone/Asia/Ho_Chi_Minh
318${PG_SUBPREFIX}share/postgresql/timezone/Asia/Hong_Kong 318share/postgresql/timezone/Asia/Hong_Kong
319${PG_SUBPREFIX}share/postgresql/timezone/Asia/Hovd 319share/postgresql/timezone/Asia/Hovd
320${PG_SUBPREFIX}share/postgresql/timezone/Asia/Irkutsk 320share/postgresql/timezone/Asia/Irkutsk
321${PG_SUBPREFIX}share/postgresql/timezone/Asia/Istanbul 321share/postgresql/timezone/Asia/Istanbul
322${PG_SUBPREFIX}share/postgresql/timezone/Asia/Jakarta 322share/postgresql/timezone/Asia/Jakarta
323${PG_SUBPREFIX}share/postgresql/timezone/Asia/Jayapura 323share/postgresql/timezone/Asia/Jayapura
324${PG_SUBPREFIX}share/postgresql/timezone/Asia/Jerusalem 324share/postgresql/timezone/Asia/Jerusalem
325${PG_SUBPREFIX}share/postgresql/timezone/Asia/Kabul 325share/postgresql/timezone/Asia/Kabul
326${PG_SUBPREFIX}share/postgresql/timezone/Asia/Kamchatka 326share/postgresql/timezone/Asia/Kamchatka
327${PG_SUBPREFIX}share/postgresql/timezone/Asia/Karachi 327share/postgresql/timezone/Asia/Karachi
328${PG_SUBPREFIX}share/postgresql/timezone/Asia/Kashgar 328share/postgresql/timezone/Asia/Kashgar
329${PG_SUBPREFIX}share/postgresql/timezone/Asia/Kathmandu 329share/postgresql/timezone/Asia/Kathmandu
330${PG_SUBPREFIX}share/postgresql/timezone/Asia/Katmandu 330share/postgresql/timezone/Asia/Katmandu
331${PG_SUBPREFIX}share/postgresql/timezone/Asia/Kolkata 331share/postgresql/timezone/Asia/Kolkata
332${PG_SUBPREFIX}share/postgresql/timezone/Asia/Krasnoyarsk 332share/postgresql/timezone/Asia/Krasnoyarsk
333${PG_SUBPREFIX}share/postgresql/timezone/Asia/Kuala_Lumpur 333share/postgresql/timezone/Asia/Kuala_Lumpur
334${PG_SUBPREFIX}share/postgresql/timezone/Asia/Kuching 334share/postgresql/timezone/Asia/Kuching
335${PG_SUBPREFIX}share/postgresql/timezone/Asia/Kuwait 335share/postgresql/timezone/Asia/Kuwait
336${PG_SUBPREFIX}share/postgresql/timezone/Asia/Macao 336share/postgresql/timezone/Asia/Macao
337${PG_SUBPREFIX}share/postgresql/timezone/Asia/Macau 337share/postgresql/timezone/Asia/Macau
338${PG_SUBPREFIX}share/postgresql/timezone/Asia/Magadan 338share/postgresql/timezone/Asia/Magadan
339${PG_SUBPREFIX}share/postgresql/timezone/Asia/Makassar 339share/postgresql/timezone/Asia/Makassar
340${PG_SUBPREFIX}share/postgresql/timezone/Asia/Manila 340share/postgresql/timezone/Asia/Manila
341${PG_SUBPREFIX}share/postgresql/timezone/Asia/Muscat 341share/postgresql/timezone/Asia/Muscat
342${PG_SUBPREFIX}share/postgresql/timezone/Asia/Nicosia 342share/postgresql/timezone/Asia/Nicosia
343${PG_SUBPREFIX}share/postgresql/timezone/Asia/Novokuznetsk 343share/postgresql/timezone/Asia/Novokuznetsk
344${PG_SUBPREFIX}share/postgresql/timezone/Asia/Novosibirsk 344share/postgresql/timezone/Asia/Novosibirsk
345${PG_SUBPREFIX}share/postgresql/timezone/Asia/Omsk 345share/postgresql/timezone/Asia/Omsk
346${PG_SUBPREFIX}share/postgresql/timezone/Asia/Oral 346share/postgresql/timezone/Asia/Oral
347${PG_SUBPREFIX}share/postgresql/timezone/Asia/Phnom_Penh 347share/postgresql/timezone/Asia/Phnom_Penh
348${PG_SUBPREFIX}share/postgresql/timezone/Asia/Pontianak 348share/postgresql/timezone/Asia/Pontianak
349${PG_SUBPREFIX}share/postgresql/timezone/Asia/Pyongyang 349share/postgresql/timezone/Asia/Pyongyang
350${PG_SUBPREFIX}share/postgresql/timezone/Asia/Qatar 350share/postgresql/timezone/Asia/Qatar
351${PG_SUBPREFIX}share/postgresql/timezone/Asia/Qyzylorda 351share/postgresql/timezone/Asia/Qyzylorda
352${PG_SUBPREFIX}share/postgresql/timezone/Asia/Rangoon 352share/postgresql/timezone/Asia/Rangoon
353${PG_SUBPREFIX}share/postgresql/timezone/Asia/Riyadh 353share/postgresql/timezone/Asia/Riyadh
354${PG_SUBPREFIX}share/postgresql/timezone/Asia/Riyadh87 354share/postgresql/timezone/Asia/Riyadh87
355${PG_SUBPREFIX}share/postgresql/timezone/Asia/Riyadh88 355share/postgresql/timezone/Asia/Riyadh88
356${PG_SUBPREFIX}share/postgresql/timezone/Asia/Riyadh89 356share/postgresql/timezone/Asia/Riyadh89
357${PG_SUBPREFIX}share/postgresql/timezone/Asia/Saigon 357share/postgresql/timezone/Asia/Saigon
358${PG_SUBPREFIX}share/postgresql/timezone/Asia/Sakhalin 358share/postgresql/timezone/Asia/Sakhalin
359${PG_SUBPREFIX}share/postgresql/timezone/Asia/Samarkand 359share/postgresql/timezone/Asia/Samarkand
360${PG_SUBPREFIX}share/postgresql/timezone/Asia/Seoul 360share/postgresql/timezone/Asia/Seoul
361${PG_SUBPREFIX}share/postgresql/timezone/Asia/Shanghai 361share/postgresql/timezone/Asia/Shanghai
362${PG_SUBPREFIX}share/postgresql/timezone/Asia/Singapore 362share/postgresql/timezone/Asia/Singapore
363${PG_SUBPREFIX}share/postgresql/timezone/Asia/Taipei 363share/postgresql/timezone/Asia/Taipei
364${PG_SUBPREFIX}share/postgresql/timezone/Asia/Tashkent 364share/postgresql/timezone/Asia/Tashkent
365${PG_SUBPREFIX}share/postgresql/timezone/Asia/Tbilisi 365share/postgresql/timezone/Asia/Tbilisi
366${PG_SUBPREFIX}share/postgresql/timezone/Asia/Tehran 366share/postgresql/timezone/Asia/Tehran
367${PG_SUBPREFIX}share/postgresql/timezone/Asia/Tel_Aviv 367share/postgresql/timezone/Asia/Tel_Aviv
368${PG_SUBPREFIX}share/postgresql/timezone/Asia/Thimbu 368share/postgresql/timezone/Asia/Thimbu
369${PG_SUBPREFIX}share/postgresql/timezone/Asia/Thimphu 369share/postgresql/timezone/Asia/Thimphu
370${PG_SUBPREFIX}share/postgresql/timezone/Asia/Tokyo 370share/postgresql/timezone/Asia/Tokyo
371${PG_SUBPREFIX}share/postgresql/timezone/Asia/Ujung_Pandang 371share/postgresql/timezone/Asia/Ujung_Pandang
372${PG_SUBPREFIX}share/postgresql/timezone/Asia/Ulaanbaatar 372share/postgresql/timezone/Asia/Ulaanbaatar
373${PG_SUBPREFIX}share/postgresql/timezone/Asia/Ulan_Bator 373share/postgresql/timezone/Asia/Ulan_Bator
374${PG_SUBPREFIX}share/postgresql/timezone/Asia/Urumqi 374share/postgresql/timezone/Asia/Urumqi
375${PG_SUBPREFIX}share/postgresql/timezone/Asia/Vientiane 375share/postgresql/timezone/Asia/Vientiane
376${PG_SUBPREFIX}share/postgresql/timezone/Asia/Vladivostok 376share/postgresql/timezone/Asia/Vladivostok
377${PG_SUBPREFIX}share/postgresql/timezone/Asia/Yakutsk 377share/postgresql/timezone/Asia/Yakutsk
378${PG_SUBPREFIX}share/postgresql/timezone/Asia/Yekaterinburg 378share/postgresql/timezone/Asia/Yekaterinburg
379${PG_SUBPREFIX}share/postgresql/timezone/Asia/Yerevan 379share/postgresql/timezone/Asia/Yerevan
380${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Azores 380share/postgresql/timezone/Atlantic/Azores
381${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Bermuda 381share/postgresql/timezone/Atlantic/Bermuda
382${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Canary 382share/postgresql/timezone/Atlantic/Canary
383${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Cape_Verde 383share/postgresql/timezone/Atlantic/Cape_Verde
384${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Faeroe 384share/postgresql/timezone/Atlantic/Faeroe
385${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Faroe 385share/postgresql/timezone/Atlantic/Faroe
386${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Jan_Mayen 386share/postgresql/timezone/Atlantic/Jan_Mayen
387${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Madeira 387share/postgresql/timezone/Atlantic/Madeira
388${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Reykjavik 388share/postgresql/timezone/Atlantic/Reykjavik
389${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/South_Georgia 389share/postgresql/timezone/Atlantic/South_Georgia
390${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/St_Helena 390share/postgresql/timezone/Atlantic/St_Helena
391${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Stanley 391share/postgresql/timezone/Atlantic/Stanley
392${PG_SUBPREFIX}share/postgresql/timezone/Australia/ACT 392share/postgresql/timezone/Australia/ACT
393${PG_SUBPREFIX}share/postgresql/timezone/Australia/Adelaide 393share/postgresql/timezone/Australia/Adelaide
394${PG_SUBPREFIX}share/postgresql/timezone/Australia/Brisbane 394share/postgresql/timezone/Australia/Brisbane
395${PG_SUBPREFIX}share/postgresql/timezone/Australia/Broken_Hill 395share/postgresql/timezone/Australia/Broken_Hill
396${PG_SUBPREFIX}share/postgresql/timezone/Australia/Canberra 396share/postgresql/timezone/Australia/Canberra
397${PG_SUBPREFIX}share/postgresql/timezone/Australia/Currie 397share/postgresql/timezone/Australia/Currie
398${PG_SUBPREFIX}share/postgresql/timezone/Australia/Darwin 398share/postgresql/timezone/Australia/Darwin
399${PG_SUBPREFIX}share/postgresql/timezone/Australia/Eucla 399share/postgresql/timezone/Australia/Eucla
400${PG_SUBPREFIX}share/postgresql/timezone/Australia/Hobart 400share/postgresql/timezone/Australia/Hobart
401${PG_SUBPREFIX}share/postgresql/timezone/Australia/LHI 401share/postgresql/timezone/Australia/LHI
402${PG_SUBPREFIX}share/postgresql/timezone/Australia/Lindeman 402share/postgresql/timezone/Australia/Lindeman
403${PG_SUBPREFIX}share/postgresql/timezone/Australia/Lord_Howe 403share/postgresql/timezone/Australia/Lord_Howe
404${PG_SUBPREFIX}share/postgresql/timezone/Australia/Melbourne 404share/postgresql/timezone/Australia/Melbourne
405${PG_SUBPREFIX}share/postgresql/timezone/Australia/NSW 405share/postgresql/timezone/Australia/NSW
406${PG_SUBPREFIX}share/postgresql/timezone/Australia/North 406share/postgresql/timezone/Australia/North
407${PG_SUBPREFIX}share/postgresql/timezone/Australia/Perth 407share/postgresql/timezone/Australia/Perth
408${PG_SUBPREFIX}share/postgresql/timezone/Australia/Queensland 408share/postgresql/timezone/Australia/Queensland
409${PG_SUBPREFIX}share/postgresql/timezone/Australia/South 409share/postgresql/timezone/Australia/South
410${PG_SUBPREFIX}share/postgresql/timezone/Australia/Sydney 410share/postgresql/timezone/Australia/Sydney
411${PG_SUBPREFIX}share/postgresql/timezone/Australia/Tasmania 411share/postgresql/timezone/Australia/Tasmania
412${PG_SUBPREFIX}share/postgresql/timezone/Australia/Victoria 412share/postgresql/timezone/Australia/Victoria
413${PG_SUBPREFIX}share/postgresql/timezone/Australia/West 413share/postgresql/timezone/Australia/West
414${PG_SUBPREFIX}share/postgresql/timezone/Australia/Yancowinna 414share/postgresql/timezone/Australia/Yancowinna
415${PG_SUBPREFIX}share/postgresql/timezone/Brazil/Acre 415share/postgresql/timezone/Brazil/Acre
416${PG_SUBPREFIX}share/postgresql/timezone/Brazil/DeNoronha 416share/postgresql/timezone/Brazil/DeNoronha
417${PG_SUBPREFIX}share/postgresql/timezone/Brazil/East 417share/postgresql/timezone/Brazil/East
418${PG_SUBPREFIX}share/postgresql/timezone/Brazil/West 418share/postgresql/timezone/Brazil/West
419${PG_SUBPREFIX}share/postgresql/timezone/CET 419share/postgresql/timezone/CET
420${PG_SUBPREFIX}share/postgresql/timezone/CST6CDT 420share/postgresql/timezone/CST6CDT
421${PG_SUBPREFIX}share/postgresql/timezone/Canada/Atlantic 421share/postgresql/timezone/Canada/Atlantic
422${PG_SUBPREFIX}share/postgresql/timezone/Canada/Central 422share/postgresql/timezone/Canada/Central
423${PG_SUBPREFIX}share/postgresql/timezone/Canada/East-Saskatchewan 423share/postgresql/timezone/Canada/East-Saskatchewan
424${PG_SUBPREFIX}share/postgresql/timezone/Canada/Eastern 424share/postgresql/timezone/Canada/Eastern
425${PG_SUBPREFIX}share/postgresql/timezone/Canada/Mountain 425share/postgresql/timezone/Canada/Mountain
426${PG_SUBPREFIX}share/postgresql/timezone/Canada/Newfoundland 426share/postgresql/timezone/Canada/Newfoundland
427${PG_SUBPREFIX}share/postgresql/timezone/Canada/Pacific 427share/postgresql/timezone/Canada/Pacific
428${PG_SUBPREFIX}share/postgresql/timezone/Canada/Saskatchewan 428share/postgresql/timezone/Canada/Saskatchewan
429${PG_SUBPREFIX}share/postgresql/timezone/Canada/Yukon 429share/postgresql/timezone/Canada/Yukon
430${PG_SUBPREFIX}share/postgresql/timezone/Chile/Continental 430share/postgresql/timezone/Chile/Continental
431${PG_SUBPREFIX}share/postgresql/timezone/Chile/EasterIsland 431share/postgresql/timezone/Chile/EasterIsland
432${PG_SUBPREFIX}share/postgresql/timezone/Cuba 432share/postgresql/timezone/Cuba
433${PG_SUBPREFIX}share/postgresql/timezone/EET 433share/postgresql/timezone/EET
434${PG_SUBPREFIX}share/postgresql/timezone/EST 434share/postgresql/timezone/EST
435${PG_SUBPREFIX}share/postgresql/timezone/EST5EDT 435share/postgresql/timezone/EST5EDT
436${PG_SUBPREFIX}share/postgresql/timezone/Egypt 436share/postgresql/timezone/Egypt
437${PG_SUBPREFIX}share/postgresql/timezone/Eire 437share/postgresql/timezone/Eire
438${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT 438share/postgresql/timezone/Etc/GMT
439${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+0 439share/postgresql/timezone/Etc/GMT+0
440${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+1 440share/postgresql/timezone/Etc/GMT+1
441${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+10 441share/postgresql/timezone/Etc/GMT+10
442${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+11 442share/postgresql/timezone/Etc/GMT+11
443${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+12 443share/postgresql/timezone/Etc/GMT+12
444${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+2 444share/postgresql/timezone/Etc/GMT+2
445${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+3 445share/postgresql/timezone/Etc/GMT+3
446${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+4 446share/postgresql/timezone/Etc/GMT+4
447${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+5 447share/postgresql/timezone/Etc/GMT+5
448${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+6 448share/postgresql/timezone/Etc/GMT+6
449${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+7 449share/postgresql/timezone/Etc/GMT+7
450${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+8 450share/postgresql/timezone/Etc/GMT+8
451${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+9 451share/postgresql/timezone/Etc/GMT+9
452${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-0 452share/postgresql/timezone/Etc/GMT-0
453${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-1 453share/postgresql/timezone/Etc/GMT-1
454${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-10 454share/postgresql/timezone/Etc/GMT-10
455${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-11 455share/postgresql/timezone/Etc/GMT-11
456${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-12 456share/postgresql/timezone/Etc/GMT-12
457${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-13 457share/postgresql/timezone/Etc/GMT-13
458${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-14 458share/postgresql/timezone/Etc/GMT-14
459${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-2 459share/postgresql/timezone/Etc/GMT-2
460${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-3 460share/postgresql/timezone/Etc/GMT-3
461${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-4 461share/postgresql/timezone/Etc/GMT-4
462${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-5 462share/postgresql/timezone/Etc/GMT-5
463${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-6 463share/postgresql/timezone/Etc/GMT-6
464${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-7 464share/postgresql/timezone/Etc/GMT-7
465${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-8 465share/postgresql/timezone/Etc/GMT-8
466${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-9 466share/postgresql/timezone/Etc/GMT-9
467${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT0 467share/postgresql/timezone/Etc/GMT0
468${PG_SUBPREFIX}share/postgresql/timezone/Etc/Greenwich 468share/postgresql/timezone/Etc/Greenwich
469${PG_SUBPREFIX}share/postgresql/timezone/Etc/UCT 469share/postgresql/timezone/Etc/UCT
470${PG_SUBPREFIX}share/postgresql/timezone/Etc/UTC 470share/postgresql/timezone/Etc/UTC
471${PG_SUBPREFIX}share/postgresql/timezone/Etc/Universal 471share/postgresql/timezone/Etc/Universal
472${PG_SUBPREFIX}share/postgresql/timezone/Etc/Zulu 472share/postgresql/timezone/Etc/Zulu
473${PG_SUBPREFIX}share/postgresql/timezone/Europe/Amsterdam 473share/postgresql/timezone/Europe/Amsterdam
474${PG_SUBPREFIX}share/postgresql/timezone/Europe/Andorra 474share/postgresql/timezone/Europe/Andorra
475${PG_SUBPREFIX}share/postgresql/timezone/Europe/Athens 475share/postgresql/timezone/Europe/Athens
476${PG_SUBPREFIX}share/postgresql/timezone/Europe/Belfast 476share/postgresql/timezone/Europe/Belfast
477${PG_SUBPREFIX}share/postgresql/timezone/Europe/Belgrade 477share/postgresql/timezone/Europe/Belgrade
478${PG_SUBPREFIX}share/postgresql/timezone/Europe/Berlin 478share/postgresql/timezone/Europe/Berlin
479${PG_SUBPREFIX}share/postgresql/timezone/Europe/Bratislava 479share/postgresql/timezone/Europe/Bratislava
480${PG_SUBPREFIX}share/postgresql/timezone/Europe/Brussels 480share/postgresql/timezone/Europe/Brussels
481${PG_SUBPREFIX}share/postgresql/timezone/Europe/Bucharest 481share/postgresql/timezone/Europe/Bucharest
482${PG_SUBPREFIX}share/postgresql/timezone/Europe/Budapest 482share/postgresql/timezone/Europe/Budapest
483${PG_SUBPREFIX}share/postgresql/timezone/Europe/Chisinau 483share/postgresql/timezone/Europe/Chisinau
484${PG_SUBPREFIX}share/postgresql/timezone/Europe/Copenhagen 484share/postgresql/timezone/Europe/Copenhagen
485${PG_SUBPREFIX}share/postgresql/timezone/Europe/Dublin 485share/postgresql/timezone/Europe/Dublin
486${PG_SUBPREFIX}share/postgresql/timezone/Europe/Gibraltar 486share/postgresql/timezone/Europe/Gibraltar
487${PG_SUBPREFIX}share/postgresql/timezone/Europe/Guernsey 487share/postgresql/timezone/Europe/Guernsey
488${PG_SUBPREFIX}share/postgresql/timezone/Europe/Helsinki 488share/postgresql/timezone/Europe/Helsinki
489${PG_SUBPREFIX}share/postgresql/timezone/Europe/Isle_of_Man 489share/postgresql/timezone/Europe/Isle_of_Man
490${PG_SUBPREFIX}share/postgresql/timezone/Europe/Istanbul 490share/postgresql/timezone/Europe/Istanbul
491${PG_SUBPREFIX}share/postgresql/timezone/Europe/Jersey 491share/postgresql/timezone/Europe/Jersey
492${PG_SUBPREFIX}share/postgresql/timezone/Europe/Kaliningrad 492share/postgresql/timezone/Europe/Kaliningrad
493${PG_SUBPREFIX}share/postgresql/timezone/Europe/Kiev 493share/postgresql/timezone/Europe/Kiev
494${PG_SUBPREFIX}share/postgresql/timezone/Europe/Lisbon 494share/postgresql/timezone/Europe/Lisbon
495${PG_SUBPREFIX}share/postgresql/timezone/Europe/Ljubljana 495share/postgresql/timezone/Europe/Ljubljana
496${PG_SUBPREFIX}share/postgresql/timezone/Europe/London 496share/postgresql/timezone/Europe/London
497${PG_SUBPREFIX}share/postgresql/timezone/Europe/Luxembourg 497share/postgresql/timezone/Europe/Luxembourg
498${PG_SUBPREFIX}share/postgresql/timezone/Europe/Madrid 498share/postgresql/timezone/Europe/Madrid
499${PG_SUBPREFIX}share/postgresql/timezone/Europe/Malta 499share/postgresql/timezone/Europe/Malta
500${PG_SUBPREFIX}share/postgresql/timezone/Europe/Mariehamn 500share/postgresql/timezone/Europe/Mariehamn
501${PG_SUBPREFIX}share/postgresql/timezone/Europe/Minsk 501share/postgresql/timezone/Europe/Minsk
502${PG_SUBPREFIX}share/postgresql/timezone/Europe/Monaco 502share/postgresql/timezone/Europe/Monaco
503${PG_SUBPREFIX}share/postgresql/timezone/Europe/Moscow 503share/postgresql/timezone/Europe/Moscow
504${PG_SUBPREFIX}share/postgresql/timezone/Europe/Nicosia 504share/postgresql/timezone/Europe/Nicosia
505${PG_SUBPREFIX}share/postgresql/timezone/Europe/Oslo 505share/postgresql/timezone/Europe/Oslo
506${PG_SUBPREFIX}share/postgresql/timezone/Europe/Paris 506share/postgresql/timezone/Europe/Paris
507${PG_SUBPREFIX}share/postgresql/timezone/Europe/Podgorica 507share/postgresql/timezone/Europe/Podgorica
508${PG_SUBPREFIX}share/postgresql/timezone/Europe/Prague 508share/postgresql/timezone/Europe/Prague
509${PG_SUBPREFIX}share/postgresql/timezone/Europe/Riga 509share/postgresql/timezone/Europe/Riga
510${PG_SUBPREFIX}share/postgresql/timezone/Europe/Rome 510share/postgresql/timezone/Europe/Rome
511${PG_SUBPREFIX}share/postgresql/timezone/Europe/Samara 511share/postgresql/timezone/Europe/Samara
512${PG_SUBPREFIX}share/postgresql/timezone/Europe/San_Marino 512share/postgresql/timezone/Europe/San_Marino
513${PG_SUBPREFIX}share/postgresql/timezone/Europe/Sarajevo 513share/postgresql/timezone/Europe/Sarajevo
514${PG_SUBPREFIX}share/postgresql/timezone/Europe/Simferopol 514share/postgresql/timezone/Europe/Simferopol
515${PG_SUBPREFIX}share/postgresql/timezone/Europe/Skopje 515share/postgresql/timezone/Europe/Skopje
516${PG_SUBPREFIX}share/postgresql/timezone/Europe/Sofia 516share/postgresql/timezone/Europe/Sofia
517${PG_SUBPREFIX}share/postgresql/timezone/Europe/Stockholm 517share/postgresql/timezone/Europe/Stockholm
518${PG_SUBPREFIX}share/postgresql/timezone/Europe/Tallinn 518share/postgresql/timezone/Europe/Tallinn
519${PG_SUBPREFIX}share/postgresql/timezone/Europe/Tirane 519share/postgresql/timezone/Europe/Tirane
520${PG_SUBPREFIX}share/postgresql/timezone/Europe/Tiraspol 520share/postgresql/timezone/Europe/Tiraspol
521${PG_SUBPREFIX}share/postgresql/timezone/Europe/Uzhgorod 521share/postgresql/timezone/Europe/Uzhgorod
522${PG_SUBPREFIX}share/postgresql/timezone/Europe/Vaduz 522share/postgresql/timezone/Europe/Vaduz
523${PG_SUBPREFIX}share/postgresql/timezone/Europe/Vatican 523share/postgresql/timezone/Europe/Vatican
524${PG_SUBPREFIX}share/postgresql/timezone/Europe/Vienna 524share/postgresql/timezone/Europe/Vienna
525${PG_SUBPREFIX}share/postgresql/timezone/Europe/Vilnius 525share/postgresql/timezone/Europe/Vilnius
526${PG_SUBPREFIX}share/postgresql/timezone/Europe/Volgograd 526share/postgresql/timezone/Europe/Volgograd
527${PG_SUBPREFIX}share/postgresql/timezone/Europe/Warsaw 527share/postgresql/timezone/Europe/Warsaw
528${PG_SUBPREFIX}share/postgresql/timezone/Europe/Zagreb 528share/postgresql/timezone/Europe/Zagreb
529${PG_SUBPREFIX}share/postgresql/timezone/Europe/Zaporozhye 529share/postgresql/timezone/Europe/Zaporozhye
530${PG_SUBPREFIX}share/postgresql/timezone/Europe/Zurich 530share/postgresql/timezone/Europe/Zurich
531${PG_SUBPREFIX}share/postgresql/timezone/Factory 531share/postgresql/timezone/Factory
532${PG_SUBPREFIX}share/postgresql/timezone/GB 532share/postgresql/timezone/GB
533${PG_SUBPREFIX}share/postgresql/timezone/GB-Eire 533share/postgresql/timezone/GB-Eire
534${PG_SUBPREFIX}share/postgresql/timezone/GMT 534share/postgresql/timezone/GMT
535${PG_SUBPREFIX}share/postgresql/timezone/GMT+0 535share/postgresql/timezone/GMT+0
536${PG_SUBPREFIX}share/postgresql/timezone/GMT-0 536share/postgresql/timezone/GMT-0
537${PG_SUBPREFIX}share/postgresql/timezone/GMT0 537share/postgresql/timezone/GMT0
538${PG_SUBPREFIX}share/postgresql/timezone/Greenwich 538share/postgresql/timezone/Greenwich
539${PG_SUBPREFIX}share/postgresql/timezone/HST 539share/postgresql/timezone/HST
540${PG_SUBPREFIX}share/postgresql/timezone/Hongkong 540share/postgresql/timezone/Hongkong
541${PG_SUBPREFIX}share/postgresql/timezone/Iceland 541share/postgresql/timezone/Iceland
542${PG_SUBPREFIX}share/postgresql/timezone/Indian/Antananarivo 542share/postgresql/timezone/Indian/Antananarivo
543${PG_SUBPREFIX}share/postgresql/timezone/Indian/Chagos 543share/postgresql/timezone/Indian/Chagos
544${PG_SUBPREFIX}share/postgresql/timezone/Indian/Christmas 544share/postgresql/timezone/Indian/Christmas
545${PG_SUBPREFIX}share/postgresql/timezone/Indian/Cocos 545share/postgresql/timezone/Indian/Cocos
546${PG_SUBPREFIX}share/postgresql/timezone/Indian/Comoro 546share/postgresql/timezone/Indian/Comoro
547${PG_SUBPREFIX}share/postgresql/timezone/Indian/Kerguelen 547share/postgresql/timezone/Indian/Kerguelen
548${PG_SUBPREFIX}share/postgresql/timezone/Indian/Mahe 548share/postgresql/timezone/Indian/Mahe
549${PG_SUBPREFIX}share/postgresql/timezone/Indian/Maldives 549share/postgresql/timezone/Indian/Maldives
550${PG_SUBPREFIX}share/postgresql/timezone/Indian/Mauritius 550share/postgresql/timezone/Indian/Mauritius
551${PG_SUBPREFIX}share/postgresql/timezone/Indian/Mayotte 551share/postgresql/timezone/Indian/Mayotte
552${PG_SUBPREFIX}share/postgresql/timezone/Indian/Reunion 552share/postgresql/timezone/Indian/Reunion
553${PG_SUBPREFIX}share/postgresql/timezone/Iran 553share/postgresql/timezone/Iran
554${PG_SUBPREFIX}share/postgresql/timezone/Israel 554share/postgresql/timezone/Israel
555${PG_SUBPREFIX}share/postgresql/timezone/Jamaica 555share/postgresql/timezone/Jamaica
556${PG_SUBPREFIX}share/postgresql/timezone/Japan 556share/postgresql/timezone/Japan
557${PG_SUBPREFIX}share/postgresql/timezone/Kwajalein 557share/postgresql/timezone/Kwajalein
558${PG_SUBPREFIX}share/postgresql/timezone/Libya 558share/postgresql/timezone/Libya
559${PG_SUBPREFIX}share/postgresql/timezone/MET 559share/postgresql/timezone/MET
560${PG_SUBPREFIX}share/postgresql/timezone/MST 560share/postgresql/timezone/MST
561${PG_SUBPREFIX}share/postgresql/timezone/MST7MDT 561share/postgresql/timezone/MST7MDT
562${PG_SUBPREFIX}share/postgresql/timezone/Mexico/BajaNorte 562share/postgresql/timezone/Mexico/BajaNorte
563${PG_SUBPREFIX}share/postgresql/timezone/Mexico/BajaSur 563share/postgresql/timezone/Mexico/BajaSur
564${PG_SUBPREFIX}share/postgresql/timezone/Mexico/General 564share/postgresql/timezone/Mexico/General
565${PG_SUBPREFIX}share/postgresql/timezone/Mideast/Riyadh87 565share/postgresql/timezone/Mideast/Riyadh87
566${PG_SUBPREFIX}share/postgresql/timezone/Mideast/Riyadh88 566share/postgresql/timezone/Mideast/Riyadh88
567${PG_SUBPREFIX}share/postgresql/timezone/Mideast/Riyadh89 567share/postgresql/timezone/Mideast/Riyadh89
568${PG_SUBPREFIX}share/postgresql/timezone/NZ 568share/postgresql/timezone/NZ
569${PG_SUBPREFIX}share/postgresql/timezone/NZ-CHAT 569share/postgresql/timezone/NZ-CHAT
570${PG_SUBPREFIX}share/postgresql/timezone/Navajo 570share/postgresql/timezone/Navajo
571${PG_SUBPREFIX}share/postgresql/timezone/PRC 571share/postgresql/timezone/PRC
572${PG_SUBPREFIX}share/postgresql/timezone/PST8PDT 572share/postgresql/timezone/PST8PDT
573${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Apia 573share/postgresql/timezone/Pacific/Apia
574${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Auckland 574share/postgresql/timezone/Pacific/Auckland
575${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Chatham 575share/postgresql/timezone/Pacific/Chatham
576${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Chuuk 576share/postgresql/timezone/Pacific/Chuuk
577${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Easter 577share/postgresql/timezone/Pacific/Easter
578${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Efate 578share/postgresql/timezone/Pacific/Efate
579${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Enderbury 579share/postgresql/timezone/Pacific/Enderbury
580${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Fakaofo 580share/postgresql/timezone/Pacific/Fakaofo
581${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Fiji 581share/postgresql/timezone/Pacific/Fiji
582${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Funafuti 582share/postgresql/timezone/Pacific/Funafuti
583${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Galapagos 583share/postgresql/timezone/Pacific/Galapagos
584${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Gambier 584share/postgresql/timezone/Pacific/Gambier
585${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Guadalcanal 585share/postgresql/timezone/Pacific/Guadalcanal
586${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Guam 586share/postgresql/timezone/Pacific/Guam
587${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Honolulu 587share/postgresql/timezone/Pacific/Honolulu
588${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Johnston 588share/postgresql/timezone/Pacific/Johnston
589${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Kiritimati 589share/postgresql/timezone/Pacific/Kiritimati
590${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Kosrae 590share/postgresql/timezone/Pacific/Kosrae
591${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Kwajalein 591share/postgresql/timezone/Pacific/Kwajalein
592${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Majuro 592share/postgresql/timezone/Pacific/Majuro
593${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Marquesas 593share/postgresql/timezone/Pacific/Marquesas
594${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Midway 594share/postgresql/timezone/Pacific/Midway
595${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Nauru 595share/postgresql/timezone/Pacific/Nauru
596${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Niue 596share/postgresql/timezone/Pacific/Niue
597${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Norfolk 597share/postgresql/timezone/Pacific/Norfolk
598${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Noumea 598share/postgresql/timezone/Pacific/Noumea
599${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Pago_Pago 599share/postgresql/timezone/Pacific/Pago_Pago
600${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Palau 600share/postgresql/timezone/Pacific/Palau
601${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Pitcairn 601share/postgresql/timezone/Pacific/Pitcairn
602${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Pohnpei 602share/postgresql/timezone/Pacific/Pohnpei
603${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Ponape 603share/postgresql/timezone/Pacific/Ponape
604${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Port_Moresby 604share/postgresql/timezone/Pacific/Port_Moresby
605${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Rarotonga 605share/postgresql/timezone/Pacific/Rarotonga
606${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Saipan 606share/postgresql/timezone/Pacific/Saipan
607${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Samoa 607share/postgresql/timezone/Pacific/Samoa
608${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Tahiti 608share/postgresql/timezone/Pacific/Tahiti
609${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Tarawa 609share/postgresql/timezone/Pacific/Tarawa
610${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Tongatapu 610share/postgresql/timezone/Pacific/Tongatapu
611${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Truk 611share/postgresql/timezone/Pacific/Truk
612${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Wake 612share/postgresql/timezone/Pacific/Wake
613${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Wallis 613share/postgresql/timezone/Pacific/Wallis
614${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Yap 614share/postgresql/timezone/Pacific/Yap
615${PG_SUBPREFIX}share/postgresql/timezone/Poland 615share/postgresql/timezone/Poland
616${PG_SUBPREFIX}share/postgresql/timezone/Portugal 616share/postgresql/timezone/Portugal
617${PG_SUBPREFIX}share/postgresql/timezone/ROC 617share/postgresql/timezone/ROC
618${PG_SUBPREFIX}share/postgresql/timezone/ROK 618share/postgresql/timezone/ROK
619${PG_SUBPREFIX}share/postgresql/timezone/Singapore 619share/postgresql/timezone/Singapore
620${PG_SUBPREFIX}share/postgresql/timezone/Turkey 620share/postgresql/timezone/Turkey
621${PG_SUBPREFIX}share/postgresql/timezone/UCT 621share/postgresql/timezone/UCT
622${PG_SUBPREFIX}share/postgresql/timezone/US/Alaska 622share/postgresql/timezone/US/Alaska
623${PG_SUBPREFIX}share/postgresql/timezone/US/Aleutian 623share/postgresql/timezone/US/Aleutian
624${PG_SUBPREFIX}share/postgresql/timezone/US/Arizona 624share/postgresql/timezone/US/Arizona
625${PG_SUBPREFIX}share/postgresql/timezone/US/Central 625share/postgresql/timezone/US/Central
626${PG_SUBPREFIX}share/postgresql/timezone/US/East-Indiana 626share/postgresql/timezone/US/East-Indiana
627${PG_SUBPREFIX}share/postgresql/timezone/US/Eastern 627share/postgresql/timezone/US/Eastern
628${PG_SUBPREFIX}share/postgresql/timezone/US/Hawaii 628share/postgresql/timezone/US/Hawaii
629${PG_SUBPREFIX}share/postgresql/timezone/US/Indiana-Starke 629share/postgresql/timezone/US/Indiana-Starke
630${PG_SUBPREFIX}share/postgresql/timezone/US/Michigan 630share/postgresql/timezone/US/Michigan
631${PG_SUBPREFIX}share/postgresql/timezone/US/Mountain 631share/postgresql/timezone/US/Mountain
632${PG_SUBPREFIX}share/postgresql/timezone/US/Pacific 632share/postgresql/timezone/US/Pacific
633${PG_SUBPREFIX}share/postgresql/timezone/US/Pacific-New 633share/postgresql/timezone/US/Pacific-New
634${PG_SUBPREFIX}share/postgresql/timezone/US/Samoa 634share/postgresql/timezone/US/Samoa
635${PG_SUBPREFIX}share/postgresql/timezone/UTC 635share/postgresql/timezone/UTC
636${PG_SUBPREFIX}share/postgresql/timezone/Universal 636share/postgresql/timezone/Universal
637${PG_SUBPREFIX}share/postgresql/timezone/W-SU 637share/postgresql/timezone/W-SU
638${PG_SUBPREFIX}share/postgresql/timezone/WET 638share/postgresql/timezone/WET
639${PG_SUBPREFIX}share/postgresql/timezone/Zulu 639share/postgresql/timezone/Zulu
640${PG_SUBPREFIX}share/postgresql/timezone/posixrules 640share/postgresql/timezone/posixrules
641${PG_SUBPREFIX}share/postgresql/timezonesets/Africa.txt 641share/postgresql/timezonesets/Africa.txt
642${PG_SUBPREFIX}share/postgresql/timezonesets/America.txt 642share/postgresql/timezonesets/America.txt
643${PG_SUBPREFIX}share/postgresql/timezonesets/Antarctica.txt 643share/postgresql/timezonesets/Antarctica.txt
644${PG_SUBPREFIX}share/postgresql/timezonesets/Asia.txt 644share/postgresql/timezonesets/Asia.txt
645${PG_SUBPREFIX}share/postgresql/timezonesets/Atlantic.txt 645share/postgresql/timezonesets/Atlantic.txt
646${PG_SUBPREFIX}share/postgresql/timezonesets/Australia 646share/postgresql/timezonesets/Australia
647${PG_SUBPREFIX}share/postgresql/timezonesets/Australia.txt 647share/postgresql/timezonesets/Australia.txt
648${PG_SUBPREFIX}share/postgresql/timezonesets/Default 648share/postgresql/timezonesets/Default
649${PG_SUBPREFIX}share/postgresql/timezonesets/Etc.txt 649share/postgresql/timezonesets/Etc.txt
650${PG_SUBPREFIX}share/postgresql/timezonesets/Europe.txt 650share/postgresql/timezonesets/Europe.txt
651${PG_SUBPREFIX}share/postgresql/timezonesets/India 651share/postgresql/timezonesets/India
652${PG_SUBPREFIX}share/postgresql/timezonesets/Indian.txt 652share/postgresql/timezonesets/Indian.txt
653${PG_SUBPREFIX}share/postgresql/timezonesets/Pacific.txt 653share/postgresql/timezonesets/Pacific.txt
654${PG_SUBPREFIX}share/postgresql/tsearch_data/danish.stop 654share/postgresql/tsearch_data/danish.stop
655${PG_SUBPREFIX}share/postgresql/tsearch_data/dutch.stop 655share/postgresql/tsearch_data/dutch.stop
656${PG_SUBPREFIX}share/postgresql/tsearch_data/english.stop 656share/postgresql/tsearch_data/english.stop
657${PG_SUBPREFIX}share/postgresql/tsearch_data/finnish.stop 657share/postgresql/tsearch_data/finnish.stop
658${PG_SUBPREFIX}share/postgresql/tsearch_data/french.stop 658share/postgresql/tsearch_data/french.stop
659${PG_SUBPREFIX}share/postgresql/tsearch_data/german.stop 659share/postgresql/tsearch_data/german.stop
660${PG_SUBPREFIX}share/postgresql/tsearch_data/hungarian.stop 660share/postgresql/tsearch_data/hungarian.stop
661${PG_SUBPREFIX}share/postgresql/tsearch_data/hunspell_sample.affix 661share/postgresql/tsearch_data/hunspell_sample.affix
662${PG_SUBPREFIX}share/postgresql/tsearch_data/ispell_sample.affix 662share/postgresql/tsearch_data/ispell_sample.affix
663${PG_SUBPREFIX}share/postgresql/tsearch_data/ispell_sample.dict 663share/postgresql/tsearch_data/ispell_sample.dict
664${PG_SUBPREFIX}share/postgresql/tsearch_data/italian.stop 664share/postgresql/tsearch_data/italian.stop
665${PG_SUBPREFIX}share/postgresql/tsearch_data/norwegian.stop 665share/postgresql/tsearch_data/norwegian.stop
666${PG_SUBPREFIX}share/postgresql/tsearch_data/portuguese.stop 666share/postgresql/tsearch_data/portuguese.stop
667${PG_SUBPREFIX}share/postgresql/tsearch_data/russian.stop 667share/postgresql/tsearch_data/russian.stop
668${PG_SUBPREFIX}share/postgresql/tsearch_data/spanish.stop 668share/postgresql/tsearch_data/spanish.stop
669${PG_SUBPREFIX}share/postgresql/tsearch_data/swedish.stop 669share/postgresql/tsearch_data/swedish.stop
670${PG_SUBPREFIX}share/postgresql/tsearch_data/synonym_sample.syn 670share/postgresql/tsearch_data/synonym_sample.syn
671${PG_SUBPREFIX}share/postgresql/tsearch_data/thesaurus_sample.ths 671share/postgresql/tsearch_data/thesaurus_sample.ths
672${PG_SUBPREFIX}share/postgresql/tsearch_data/turkish.stop 672share/postgresql/tsearch_data/turkish.stop

cvs diff -r1.2 -r1.3 pkgsrc/databases/postgresql83-server/files/Attic/pgsql.sh (expand / switch to unified diff)

--- pkgsrc/databases/postgresql83-server/files/Attic/pgsql.sh 2008/11/11 13:50:50 1.2
+++ pkgsrc/databases/postgresql83-server/files/Attic/pgsql.sh 2010/12/19 09:53:54 1.3
@@ -1,148 +1,130 @@ @@ -1,148 +1,130 @@
1#!@RCD_SCRIPTS_SHELL@ 1#!@RCD_SCRIPTS_SHELL@
2# 2#
3# $NetBSD: pgsql.sh,v 1.2 2008/11/11 13:50:50 joerg Exp $ 3# $NetBSD: pgsql.sh,v 1.3 2010/12/19 09:53:54 adam Exp $
4# 4#
5# PostgreSQL database rc.d control script 5# PostgreSQL database rc.d control script
6# 6#
7# PROVIDE: pgsql 7# PROVIDE: pgsql
8# REQUIRE: DAEMON 8# REQUIRE: DAEMON
9# KEYWORD: shutdown 9# KEYWORD: shutdown
10# 10#
11# You will need to set some variables in /etc/rc.conf to start PostgreSQL: 11# You will need to set some variables in /etc/rc.conf to start PostgreSQL:
12# 12#
13# pgsql=YES 13# pgsql=YES
14# 14#
15# The following variables are optional: 15# Optionally, "pgsql_flags" contains options for the PostgreSQL postmaster, e.g.
16# 
17# pgsql_flags="-i" # allows TCP/IP connections 16# pgsql_flags="-i" # allows TCP/IP connections
18# pgsql_flags="-i -l" # enables SSL connections 17# pgsql_flags="-i -l" # enables SSL connections
19# pgsql_home="/path/to/home" # path to pgsql database directory 18# pgsql_home="/path/to/home" # path to pgsql database directory
20# 19# See postmaster(1) for possible options.
21# "pgsql_flags" contains options for the PostgreSQL postmaster. See 
22# postmaster(1) for possible options. 
23 20
24if [ -f /etc/rc.subr ]; then 21if [ -f /etc/rc.subr ]; then
25 . /etc/rc.subr 22 . /etc/rc.subr
26fi 23fi
27 24
28name="pgsql" 25name="pgsql"
29rcvar=$name 26rcvar=${name}
 27command="@PREFIX@/bin/pg_ctl"
 28procname="@PREFIX@/bin/postgres"
30pgsql_user="@PGUSER@" 29pgsql_user="@PGUSER@"
31pgsql_group="@PGGROUP@" 30pgsql_group="@PGGROUP@"
32eval pgsql_home="~$pgsql_user" 31pgsql_home="@PGHOME@"
33 32
34command="@PG_PREFIX@/bin/postmaster" 33extra_commands="initdb reload"
35ctl_command="@PG_PREFIX@/bin/pg_ctl" 34initdb_cmd="pgsql_initdb"
36extra_commands="initdb" 35start_precmd="pgsql_precmd"
 36start_cmd="pgsql_start"
 37restart_precmd="pgsql_precmd"
 38restart_cmd="pgsql_restart"
 39stop_cmd="pgsql_stop"
 40reload_cmd="pgsql_reload"
37 41
38if [ -f /etc/rc.subr -a -d /etc/rc.d -a -f /etc/rc.d/DAEMON ]; then 42if [ -f /etc/rc.subr -a -d /etc/rc.d -a -f /etc/rc.d/DAEMON ]; then
39 load_rc_config $name 43 load_rc_config $name
40elif [ -f /etc/rc.conf ]; then 44elif [ -f /etc/rc.conf ]; then
41 . /etc/rc.conf 45 . /etc/rc.conf
42fi 46fi
43 47
44pidfile="${pgsql_home}/data/postmaster.pid" 48command_args="-w -s -D ${pgsql_home}/data -m fast -l ${pgsql_home}/errlog"
45common_args="-D ${pgsql_home}/data -m fast" 49if [ -n "${pgsql_flags}" ]; then
46start_command_args="-w -s -l ${pgsql_home}/errlog" 50 command_args="${command_args} -o \\\"${pgsql_flags}\\\""
47stop_command_args="-s" 51fi
48 
49initdb_cmd="pgsql_initdb" 
50start_precmd="pgsql_precmd" 
51start_cmd="pgsql_doit start" 
52restart_cmd="pgsql_doit restart" 
53stop_cmd="pgsql_doit stop" 
54 
55ulimit -n 4096 
56 52
57pgsql_precmd() 53pgsql_precmd()
58{ 54{
 55 ulimit -n 4096
59 if [ ! -d ${pgsql_home}/data/base ]; then 56 if [ ! -d ${pgsql_home}/data/base ]; then
60 pgsql_initdb 57 pgsql_initdb
61 fi 58 fi
62} 59}
63 60
64pgsql_initdb() 61pgsql_initdb()
65{ 62{
66 initdb="@PG_PREFIX@/bin/initdb" 
67 
68 cd / 
69 
70 if [ ! -x ${initdb} ]; then 
71 return 1 
72 fi 
73 if [ -d ${pgsql_home}/data/base ]; then 63 if [ -d ${pgsql_home}/data/base ]; then
74 @ECHO@ "The PostgreSQL template databases have already been initialized." 64 @ECHO@ "The PostgreSQL template databases have already been initialized."
75 @ECHO@ "Skipping database initialization." 65 @ECHO@ "Skipping database initialization."
76 else 66 else
77 @ECHO@ "Initializing PostgreSQL databases." 67 @ECHO@ "Initializing PostgreSQL databases."
78 @MKDIR@ -p ${pgsql_home} 68 @MKDIR@ -p ${pgsql_home}
79 @CHOWN@ ${pgsql_user} ${pgsql_home} 69 @CHOWN@ ${pgsql_user} ${pgsql_home}
80 @CHGRP@ ${pgsql_group} ${pgsql_home} 70 @CHGRP@ ${pgsql_group} ${pgsql_home}
81 @CHMOD@ 0750 ${pgsql_home} 71 @CHMOD@ 0700 ${pgsql_home}
82 common_args_without_m=$(echo "${common_args}" |\ 72 doit="@SU@ -m ${pgsql_user} -c '${command} init ${command_args}'"
83 sed -e 's/-m [a-z]*//') 
84 eval doit_command=\"${initdb} ${common_args_without_m} ${flags}\" 
85 doit="@SU@ -m ${pgsql_user} -c '${doit_command}'" 
86 eval $doit 73 eval $doit
87 fi 74 fi
88} 75}
89 76
90pgsql_doit() 77pgsql_start()
91{ 78{
92 action=$1 79 @ECHO@ "Starting ${name}."
93 80 doit="@SU@ -m ${pgsql_user} -c '${command} start ${command_args}'"
94 cd / 81 eval $doit
95 82}
96 case ${action} in 
97 start|restart) 
98 if [ -n "${pgsql_flags}" ]; then 
99 start_command_args="${start_command_args} -o \\\"${pgsql_flags}\\\"" 
100 fi 
101 command_args="${common_args} ${start_command_args} ${command_args}" 
102 ;; 
103 stop) 
104 command_args="${common_args} ${stop_command_args} ${command_args}" 
105 ;; 
106 *) 
107 command_args="${common_args} ${command_args}" 
108 ;; 
109 esac 
110 83
111 if [ ! -x ${ctl_command} ]; then 84pgsql_restart()
112 return 85{
113 fi 86 @ECHO@ "Restarting ${name}."
 87 doit="@SU@ -m ${pgsql_user} -c '${command} restart ${command_args}'"
 88 eval $doit
 89}
114 90
115 case ${action} in 91pgsql_stop()
116 start) @ECHO@ "Starting ${name}." ;; 92{
117 stop) @ECHO@ "Stopping ${name}." ;; 93 @ECHO@ "Stopping ${name}."
118 restart) @ECHO@ "Restarting ${name}." ;; 94 doit="@SU@ -m ${pgsql_user} -c '${command} stop ${command_args}'"
119 esac 95 eval $doit
 96}
120 97
121 eval doit_command=\"${ctl_command} ${action} ${command_args}\" 98pgsql_reload()
122 doit="@SU@ -m ${pgsql_user} -c '${doit_command}'" 99{
 100 @ECHO@ "Reloading ${name}."
 101 doit="@SU@ -m ${pgsql_user} -c '${command} reload ${command_args}'"
123 eval $doit 102 eval $doit
124} 103}
125 104
126if [ -f /etc/rc.subr -a -d /etc/rc.d -a -f /etc/rc.d/DAEMON ]; then 105if [ -f /etc/rc.subr -a -d /etc/rc.d -a -f /etc/rc.d/DAEMON ]; then
127 load_rc_config $name 
128 run_rc_command "$1" 106 run_rc_command "$1"
129else 107else
130 if [ -f /etc/rc.conf ]; then 108 pidfile="${pgsql_home}/data/postmaster.pid"
131 . /etc/rc.conf 
132 fi 
133 case "$1" in 109 case "$1" in
134 initdb) 110 initdb)
135 eval ${initdb_cmd} 111 eval ${initdb_cmd}
136 ;; 112 ;;
137 restart) 113 restart)
 114 eval ${restart_precmd}
138 eval ${restart_cmd} 115 eval ${restart_cmd}
139 ;; 116 ;;
140 stop) 117 stop)
141 eval ${stop_cmd} 118 if [ -r "${pidfile}" ]; then
 119 eval ${stop_cmd}
 120 fi
 121 ;;
 122 reload)
 123 eval ${reload_cmd}
142 ;; 124 ;;
143 *) 125 *)
144 eval ${start_precmd} 126 eval ${start_precmd}
145 eval ${start_cmd} 127 eval ${start_cmd}
146 ;; 128 ;;
147 esac 129 esac
148fi 130fi

cvs diff -r1.1.1.1 -r1.2 pkgsrc/databases/postgresql83/patches/Attic/patch-an (expand / switch to unified diff)

--- pkgsrc/databases/postgresql83/patches/Attic/patch-an 2008/03/04 12:41:37 1.1.1.1
+++ pkgsrc/databases/postgresql83/patches/Attic/patch-an 2010/12/19 09:53:53 1.2
@@ -1,13 +1,13 @@ @@ -1,13 +1,13 @@
1$NetBSD: patch-an,v 1.1.1.1 2008/03/04 12:41:37 adam Exp $ 1$NetBSD: patch-an,v 1.2 2010/12/19 09:53:53 adam Exp $
2 2
3--- src/interfaces/ecpg/test/Makefile.regress.orig 2007-01-21 10:19:06.000000000 +0100 3--- src/interfaces/ecpg/test/Makefile.regress.orig 2010-12-14 03:51:20.000000000 +0000
4+++ src/interfaces/ecpg/test/Makefile.regress 4+++ src/interfaces/ecpg/test/Makefile.regress
5@@ -8,7 +8,7 @@ override LIBS := -lecpg -lpgtypes $(filt 5@@ -9,7 +9,7 @@ ECPG = ../../preproc/ecpg --regression -
6 ECPG = ../../preproc/ecpg --regression -I$(srcdir)/../../include 
7  6
8 %: %.c 7 %: %.c
9- $(CC) $(CPPFLAGS) $(CFLAGS) $^ $(LDFLAGS) $(LIBS) -o $@ 8 $(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $*.o
10+ ${LIBTOOL} --mode=link $(CC) $(CPPFLAGS) $(CFLAGS) $^ $(LDFLAGS) $(LIBS) -o $@ 9- $(CC) $(CPPFLAGS) $(CFLAGS) $*.o $(LDFLAGS) $(LIBS) -o $@
 10+ ${LIBTOOL} --mode=link $(CC) $(CPPFLAGS) $(CFLAGS) $*.o $(LDFLAGS) $(LIBS) -o $@
11  11
12 %.c: %.pgc ../regression.h 12 %.c: %.pgc ../regression.h
13 $(ECPG) -o $@ -I$(srcdir) $< 13 $(ECPG) -o $@ -I$(srcdir) $<