install each postgresql version in its own home

Alexander Pyhalov alp at rsu.ru
Mon Sep 27 10:49:00 UTC 2010


Hello, Palle!

After introduction of pg_upgrade it's worth installing each postgresql 
version in separate home, because this program needs binary files from 
several postgresql versions during binary upgrade. I've started to make 
a patch for postgresql port. Could you please look at it and say if I'm 
going in the right direction?
Just for now this patch allows to install postgresql90-server and client 
in separate directories from postgresql 84. The patch is still not 
polished (e.g. contrib modules are not patched yet), but I've checked 
that resulting postgresql installation is working.
There are some aspects to discuss:
- Should we have options for default PostgreSQL installation (just in 
/usr/local)?
- How other applications could be taught of new postgresql   libraries 
location?
-- 
Best regards,
Alexander Pyhalov,
system administrator of Computer Center of South Federal University
-------------- next part --------------
diff -ruN ports/databases/postgresql90-server/Makefile ../20100922/databases/postgresql90-server/Makefile
--- ports/databases/postgresql90-server/Makefile	2010-09-20 17:46:46.000000000 +0400
+++ ../20100922/databases/postgresql90-server/Makefile	2010-09-27 11:47:25.411989744 +0400
@@ -15,9 +15,13 @@
 MAINTAINER?=	girgen at FreeBSD.org
 COMMENT?=	The most advanced open-source database available anywhere
 
+PGRELHOME=postgresql/9.0
+PGHOME=${PREFIX}/${PGRELHOME}
+
+.if !defined(PGHOME) 
 CONFLICTS?=	${PORTNAME}-client-[78]* \
 		${PORTNAME}${PKGNAMESUFFIX}-[78]*
-
+.endif 
 WRKSRC=		${WRKDIR}/postgresql-${DISTVERSION}
 DIST_SUBDIR=	postgresql
 
@@ -36,9 +40,17 @@
 PGUSER=		pgsql
 PGGROUP=	pgsql
 
+.if defined(PGHOME)
+GNU_CONFIGURE_PREFIX		= ${PGHOME}
+MANPREFIX	= ${PGHOME}
+CONFIGURE_ARGS+=--with-libraries=${PGHOME}/lib:${LOCALBASE}/lib \
+		--with-includes=${PGHOME}/include:${LOCALBASE}/include \
+		--enable-thread-safety
+.else
 CONFIGURE_ARGS+=--with-libraries=${LOCALBASE}/lib \
 		--with-includes=${LOCALBASE}/include \
 		--enable-thread-safety
+.endif
 CONFIGURE_ENV+=	LDFLAGS="${LDFLAGS}" \
 		PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \
 		PTHREAD_LIBS="${PTHREAD_LIBS}"
@@ -53,7 +65,11 @@
 
 .if !defined(CLIENT_ONLY) && !defined(SLAVE_ONLY)
 SERVER_ONLY=	yes
+.  if defined(PGHOME)
+USE_RC_SUBR=	postgresql90
+.  else
 USE_RC_SUBR=	postgresql
+.  endif
 USE_PGSQL=	yes
 WANT_PGSQL_VER=	${PORTVERSION:C/([0-9][0-9]*)\.([0-9][0-9]*).*/\1\2/g}
 .endif
@@ -302,6 +318,18 @@
 SUB_FILES+=	pkg-message${PKGNAMESUFFIX}
 PKGMESSAGE=	${WRKSRC}/pkg-message${PKGNAMESUFFIX}
 .  endif
+
+. if defined(PGHOME)
+SUB_LIST+=	ETCDIR=${LOCALBASE}/etc
+SUB_LIST+=	PGHOME=${PGHOME}
+PLIST_SUB+=     PGHOME=${PGRELHOME}
+DOCSDIR=	${PGHOME}/doc/
+. else
+SUB_LIST+=	ETCDIR=${PREFIX}/etc
+SUB_LIST+=	PGHOME=${PREFIX}
+PLIST_SUB+=     PGHOME=${PREFIX}
+. endif
+
 .endif
 
 .if defined(SERVER_ONLY)
@@ -320,15 +348,25 @@
 		${SETENV} ${MAKE_ENV} ${GMAKE} ${INSTALL_TARGET}; \
 	done
 .  if defined(SERVER_ONLY)
+.    if defined(PGHOME)
+	@ ${MKDIR} ${PGHOME}/share/postgresql ;\
+	${ECHO} "installing 502.pgsql";\
+	${MKDIR} ${LOCALBASE}/etc/periodic/daily ;\
+	${INSTALL_SCRIPT} ${FILESDIR}/502.pgsql \
+			${LOCALBASE}/etc/periodic/daily/502.pgsql90 ;
+	@${REINPLACE_CMD} -e "s|%%PGHOME%%|${PGHOME}|g" ${LOCALBASE}/etc/periodic/daily/502.pgsql90
+.    else
 	@ ${MKDIR} ${PREFIX}/share/postgresql ;\
 	${MKDIR} ${PREFIX}/etc/periodic/daily ;\
 	${INSTALL_SCRIPT} ${FILESDIR}/502.pgsql \
-			${PREFIX}/etc/periodic/daily
+			${}/etc/periodic/daily/502.pgsql
+.    endif
 .  endif # SERVER_ONLY
 .  if defined(CLIENT_ONLY)
 	@ cd ${WRKSRC}/src && ${SETENV} ${MAKE_ENV} ${GMAKE} install-local
 .  endif
 	@ if [ -r ${PKGMESSAGE} ]; then \
+		${ECHO} "Installing DOCS in ${DOCSDIR}..." ;\
 		${MKDIR} ${DOCSDIR} ;\
 		${INSTALL_DATA} ${PKGMESSAGE} ${DOCSDIR}/README${PKGNAMESUFFIX} ;\
 		${ECHO} "======================================================================" ;\
diff -ruN ports/databases/postgresql90-server/files/502.pgsql ../20100922/databases/postgresql90-server/files/502.pgsql
--- ports/databases/postgresql90-server/files/502.pgsql	2010-09-20 17:46:47.000000000 +0400
+++ ../20100922/databases/postgresql90-server/files/502.pgsql	2010-09-22 15:21:46.739729098 +0400
@@ -20,6 +20,7 @@
 # daily_pgsql_vacuum_enable="YES" # do vacuum
 
 daily_pgsql_vacuum_args="-z"
+daily_pgsql_dbhome="%%PGHOME%%"
 daily_pgsql_pgdump_args="-b -F c"
 # backupdir is relative to ~pgsql home directory unless it begins with a slash:
 daily_pgsql_backupdir="~pgsql/backups"
@@ -55,13 +56,13 @@
 	rc=$?
 	now=`date "+%Y-%m-%dT%H:%M:%S"`
 	file=${daily_pgsql_backupdir}/pgglobals_${now}
-	su -l pgsql -c "umask 077; pg_dumpall -g | gzip -9 > ${file}.gz"
+	su -l pgsql -c "umask 077; ${daily_pgsql_dbhome}/bin/pg_dumpall -g | gzip -9 > ${file}.gz"
 
 	db=$1
 	while shift; do
 	    echo -n " $db"
 	    file=${backupdir}/pgdump_${db}_${now}
-	    su -l pgsql -c "umask 077; pg_dump ${daily_pgsql_pgdump_args} -f ${file} ${db}"
+	    su -l pgsql -c "umask 077; ${daily_pgsql_dbhome}/bin/pg_dump ${daily_pgsql_pgdump_args} -f ${file} ${db}"
 	    [ $? -gt 0 ] && rc=3
 		db=$1
 	done
@@ -79,7 +80,7 @@
 
 case "$daily_pgsql_backup_enable" in
     [Yy][Ee][Ss])
-	dbnames=`su -l pgsql -c "umask 077; psql -q -t -A -d template1 -c SELECT\ datname\ FROM\ pg_database\ WHERE\ datname!=\'template0\'"`
+	dbnames=`su -l pgsql -c "umask 077;  ${daily_pgsql_dbhome}/bin/psql -q -t -A -d template1 -c SELECT\ datname\ FROM\ pg_database\ WHERE\ datname!=\'template0\'"`
 	pgsql_backup $dbnames
 	;;
 
@@ -99,7 +100,7 @@
 
 	echo
 	echo "PostgreSQL vacuum"
-	su -l pgsql -c "vacuumdb -a -q ${daily_pgsql_vacuum_args}"
+	su -l pgsql -c " ${daily_pgsql_dbhome}/bin/vacuumdb -a -q ${daily_pgsql_vacuum_args}"
 	if [ $? -gt 0 ]
 	then
 	    echo
diff -ruN ports/databases/postgresql90-server/files/postgresql.in ../20100922/databases/postgresql90-server/files/postgresql.in
--- ports/databases/postgresql90-server/files/postgresql.in	2010-03-27 03:12:50.000000000 +0300
+++ ../20100922/databases/postgresql90-server/files/postgresql.in	2010-09-27 14:35:01.505803677 +0400
@@ -15,7 +15,7 @@
 #  postgresql_initdb_flags="--encoding=utf-8 --lc-collate=C"
 #  postgresql_class="default"
 #
-# See %%PREFIX%%/share/doc/postgresql/README-server for more info
+# See %%PGHOME%%/share/doc/postgresql/README-server for more info
 #
 # This scripts takes one of the following commands:
 #
@@ -23,7 +23,7 @@
 #
 # For postmaster startup options, edit ${postgresql_data}/postgresql.conf
 
-command=%%PREFIX%%/bin/pg_ctl
+command=%%PGHOME%%/bin/pg_ctl
 
 . /etc/rc.subr
 
@@ -57,7 +57,7 @@
     
 postgresql_initdb()
 {
-    su -l -c ${postgresql_class} ${postgresql_user} -c "exec %%PREFIX%%/bin/initdb ${postgresql_initdb_flags} -D ${postgresql_data}"
+    su -l -c ${postgresql_class} ${postgresql_user} -c "exec %%PGHOME%%/bin/initdb ${postgresql_initdb_flags} -D ${postgresql_data}"
 }
 
 run_rc_command "$1"
diff -ruN ports/databases/postgresql90-server/files/postgresql90.in ../20100922/databases/postgresql90-server/files/postgresql90.in
--- ports/databases/postgresql90-server/files/postgresql90.in	1970-01-01 03:00:00.000000000 +0300
+++ ../20100922/databases/postgresql90-server/files/postgresql90.in	2010-09-27 14:38:24.262538111 +0400
@@ -0,0 +1,63 @@
+#!/bin/sh
+
+# $FreeBSD: ports/databases/postgresql90-server/files/postgresql.in,v 1.4 2010/03/27 00:12:50 dougb Exp $
+#
+# PROVIDE: postgresql
+# REQUIRE: LOGIN
+# KEYWORD: shutdown
+#
+# Add the following line to /etc/rc.conf to enable PostgreSQL:
+#
+#  postgresql_enable="YES"
+#  # optional
+#  postgresql_data="%%PREFIX%%/pgsql/data"
+#  postgresql_flags="-w -s -m fast"
+#  postgresql_initdb_flags="--encoding=utf-8 --lc-collate=C"
+#  postgresql_class="default"
+#
+# See %%PREFIX%%/share/doc/postgresql/README-server for more info
+#
+# This scripts takes one of the following commands:
+#
+#   start stop restart reload status initdb
+#
+# For postmaster startup options, edit ${postgresql_data}/postgresql.conf
+
+command=%%PGHOME%%/bin/pg_ctl
+
+. /etc/rc.subr
+
+load_rc_config postgresql
+
+# set defaults
+postgresql90_enable=${postgresql90_enable:-"NO"}
+postgresql90_flags=${postgresql90_flags:-"-w -s -m fast"}
+postgresql90_user=pgsql
+eval postgresql90_data=${postgresql90_data:-"~${postgresql90_user}/data"}
+postgresql90_class=${postgresql90_class:-"default"}
+postgresql90_initdb_flags=${postgresql90_initdb_flags:-"--encoding=utf-8 --lc-collate=C"}
+
+name=postgresql90
+rcvar=`set_rcvar`
+command_args="-D ${postgresql90_data} ${postgresql90_flags}"
+extra_commands="reload initdb"
+
+start_cmd="postgresql_command start"
+stop_cmd="postgresql_command stop"
+restart_cmd="postgresql_command restart"
+reload_cmd="postgresql_command reload"
+status_cmd="postgresql_command status"
+
+initdb_cmd="postgresql_initdb"
+
+postgresql_command()
+{
+    su -l ${postgresql90_user} -c "exec ${command} ${command_args} ${rc_arg}"
+}
+    
+postgresql_initdb()
+{
+    su -l -c ${postgresql90_class} ${postgresql90_user} -c "exec %%PGHOME%%/bin/initdb ${postgresql90_initdb_flags} -D ${postgresql90_data}"
+}
+
+run_rc_command "$1"
diff -ruN ports/databases/postgresql90-server/pkg-plist-client ../20100922/databases/postgresql90-server/pkg-plist-client
--- ports/databases/postgresql90-server/pkg-plist-client	2010-09-20 17:46:46.000000000 +0400
+++ ../20100922/databases/postgresql90-server/pkg-plist-client	2010-09-23 15:55:59.555402632 +0400
@@ -1,643 +1,679 @@
-bin/clusterdb
-bin/createdb
-bin/createlang
-bin/createuser
-bin/dropdb
-bin/droplang
-bin/dropuser
-bin/ecpg
-bin/pg_config
-bin/pg_dump
-bin/pg_dumpall
-bin/pg_restore
-bin/psql
-bin/reindexdb
-bin/vacuumdb
-include/ecpg_config.h
-include/libpq-events.h
-include/postgresql/server/access/attnum.h
-include/postgresql/server/access/clog.h
-include/postgresql/server/access/genam.h
-include/postgresql/server/access/gin.h
-include/postgresql/server/access/gist.h
-include/postgresql/server/access/gist_private.h
-include/postgresql/server/access/gistscan.h
-include/postgresql/server/access/hash.h
-include/postgresql/server/access/heapam.h
-include/postgresql/server/access/hio.h
-include/postgresql/server/access/htup.h
-include/postgresql/server/access/itup.h
-include/postgresql/server/access/multixact.h
-include/postgresql/server/access/nbtree.h
-include/postgresql/server/access/printtup.h
-include/postgresql/server/access/reloptions.h
-include/postgresql/server/access/relscan.h
-include/postgresql/server/access/rewriteheap.h
-include/postgresql/server/access/rmgr.h
-include/postgresql/server/access/sdir.h
-include/postgresql/server/access/skey.h
-include/postgresql/server/access/slru.h
-include/postgresql/server/access/subtrans.h
-include/postgresql/server/access/sysattr.h
-include/postgresql/server/access/transam.h
-include/postgresql/server/access/tupconvert.h
-include/postgresql/server/access/tupdesc.h
-include/postgresql/server/access/tupmacs.h
-include/postgresql/server/access/tuptoaster.h
-include/postgresql/server/access/twophase.h
-include/postgresql/server/access/twophase_rmgr.h
-include/postgresql/server/access/valid.h
-include/postgresql/server/access/visibilitymap.h
-include/postgresql/server/access/xact.h
-include/postgresql/server/access/xlog.h
-include/postgresql/server/access/xlog_internal.h
-include/postgresql/server/access/xlogdefs.h
-include/postgresql/server/access/xlogutils.h
-include/postgresql/server/bootstrap/bootstrap.h
-include/postgresql/server/c.h
-include/postgresql/server/catalog/catalog.h
-include/postgresql/server/catalog/catversion.h
-include/postgresql/server/catalog/dependency.h
-include/postgresql/server/catalog/genbki.h
-include/postgresql/server/catalog/heap.h
-include/postgresql/server/catalog/index.h
-include/postgresql/server/catalog/indexing.h
-include/postgresql/server/catalog/namespace.h
-include/postgresql/server/catalog/pg_aggregate.h
-include/postgresql/server/catalog/pg_am.h
-include/postgresql/server/catalog/pg_amop.h
-include/postgresql/server/catalog/pg_amproc.h
-include/postgresql/server/catalog/pg_attrdef.h
-include/postgresql/server/catalog/pg_attribute.h
-include/postgresql/server/catalog/pg_auth_members.h
-include/postgresql/server/catalog/pg_authid.h
-include/postgresql/server/catalog/pg_cast.h
-include/postgresql/server/catalog/pg_class.h
-include/postgresql/server/catalog/pg_constraint.h
-include/postgresql/server/catalog/pg_control.h
-include/postgresql/server/catalog/pg_conversion.h
-include/postgresql/server/catalog/pg_conversion_fn.h
-include/postgresql/server/catalog/pg_database.h
-include/postgresql/server/catalog/pg_db_role_setting.h
-include/postgresql/server/catalog/pg_default_acl.h
-include/postgresql/server/catalog/pg_depend.h
-include/postgresql/server/catalog/pg_description.h
-include/postgresql/server/catalog/pg_enum.h
-include/postgresql/server/catalog/pg_foreign_data_wrapper.h
-include/postgresql/server/catalog/pg_foreign_server.h
-include/postgresql/server/catalog/pg_index.h
-include/postgresql/server/catalog/pg_inherits.h
-include/postgresql/server/catalog/pg_inherits_fn.h
-include/postgresql/server/catalog/pg_language.h
-include/postgresql/server/catalog/pg_largeobject.h
-include/postgresql/server/catalog/pg_largeobject_metadata.h
-include/postgresql/server/catalog/pg_namespace.h
-include/postgresql/server/catalog/pg_opclass.h
-include/postgresql/server/catalog/pg_operator.h
-include/postgresql/server/catalog/pg_opfamily.h
-include/postgresql/server/catalog/pg_pltemplate.h
-include/postgresql/server/catalog/pg_proc.h
-include/postgresql/server/catalog/pg_proc_fn.h
-include/postgresql/server/catalog/pg_rewrite.h
-include/postgresql/server/catalog/pg_shdepend.h
-include/postgresql/server/catalog/pg_shdescription.h
-include/postgresql/server/catalog/pg_statistic.h
-include/postgresql/server/catalog/pg_tablespace.h
-include/postgresql/server/catalog/pg_trigger.h
-include/postgresql/server/catalog/pg_ts_config.h
-include/postgresql/server/catalog/pg_ts_config_map.h
-include/postgresql/server/catalog/pg_ts_dict.h
-include/postgresql/server/catalog/pg_ts_parser.h
-include/postgresql/server/catalog/pg_ts_template.h
-include/postgresql/server/catalog/pg_type.h
-include/postgresql/server/catalog/pg_type_fn.h
-include/postgresql/server/catalog/pg_user_mapping.h
-include/postgresql/server/catalog/storage.h
-include/postgresql/server/catalog/toasting.h
-include/postgresql/server/commands/alter.h
-include/postgresql/server/commands/async.h
-include/postgresql/server/commands/cluster.h
-include/postgresql/server/commands/comment.h
-include/postgresql/server/commands/conversioncmds.h
-include/postgresql/server/commands/copy.h
-include/postgresql/server/commands/dbcommands.h
-include/postgresql/server/commands/defrem.h
-include/postgresql/server/commands/discard.h
-include/postgresql/server/commands/explain.h
-include/postgresql/server/commands/lockcmds.h
-include/postgresql/server/commands/portalcmds.h
-include/postgresql/server/commands/prepare.h
-include/postgresql/server/commands/proclang.h
-include/postgresql/server/commands/schemacmds.h
-include/postgresql/server/commands/sequence.h
-include/postgresql/server/commands/tablecmds.h
-include/postgresql/server/commands/tablespace.h
-include/postgresql/server/commands/trigger.h
-include/postgresql/server/commands/typecmds.h
-include/postgresql/server/commands/user.h
-include/postgresql/server/commands/vacuum.h
-include/postgresql/server/commands/variable.h
-include/postgresql/server/commands/view.h
-include/postgresql/server/dynloader.h
-include/postgresql/server/executor/execdebug.h
-include/postgresql/server/executor/execdefs.h
-include/postgresql/server/executor/execdesc.h
-include/postgresql/server/executor/executor.h
-include/postgresql/server/executor/functions.h
-include/postgresql/server/executor/hashjoin.h
-include/postgresql/server/executor/instrument.h
-include/postgresql/server/executor/nodeAgg.h
-include/postgresql/server/executor/nodeAppend.h
-include/postgresql/server/executor/nodeBitmapAnd.h
-include/postgresql/server/executor/nodeBitmapHeapscan.h
-include/postgresql/server/executor/nodeBitmapIndexscan.h
-include/postgresql/server/executor/nodeBitmapOr.h
-include/postgresql/server/executor/nodeCtescan.h
-include/postgresql/server/executor/nodeFunctionscan.h
-include/postgresql/server/executor/nodeGroup.h
-include/postgresql/server/executor/nodeHash.h
-include/postgresql/server/executor/nodeHashjoin.h
-include/postgresql/server/executor/nodeIndexscan.h
-include/postgresql/server/executor/nodeLimit.h
-include/postgresql/server/executor/nodeLockRows.h
-include/postgresql/server/executor/nodeMaterial.h
-include/postgresql/server/executor/nodeMergejoin.h
-include/postgresql/server/executor/nodeModifyTable.h
-include/postgresql/server/executor/nodeNestloop.h
-include/postgresql/server/executor/nodeRecursiveunion.h
-include/postgresql/server/executor/nodeResult.h
-include/postgresql/server/executor/nodeSeqscan.h
-include/postgresql/server/executor/nodeSetOp.h
-include/postgresql/server/executor/nodeSort.h
-include/postgresql/server/executor/nodeSubplan.h
-include/postgresql/server/executor/nodeSubqueryscan.h
-include/postgresql/server/executor/nodeTidscan.h
-include/postgresql/server/executor/nodeUnique.h
-include/postgresql/server/executor/nodeValuesscan.h
-include/postgresql/server/executor/nodeWindowAgg.h
-include/postgresql/server/executor/nodeWorktablescan.h
-include/postgresql/server/executor/spi.h
-include/postgresql/server/executor/spi_priv.h
-include/postgresql/server/executor/tstoreReceiver.h
-include/postgresql/server/executor/tuptable.h
-include/postgresql/server/fmgr.h
-include/postgresql/server/foreign/foreign.h
-include/postgresql/server/funcapi.h
-include/postgresql/server/getaddrinfo.h
-include/postgresql/server/getopt_long.h
-include/postgresql/server/lib/dllist.h
-include/postgresql/server/lib/stringinfo.h
-include/postgresql/server/libpq/auth.h
-include/postgresql/server/libpq/be-fsstubs.h
-include/postgresql/server/libpq/crypt.h
-include/postgresql/server/libpq/hba.h
-include/postgresql/server/libpq/ip.h
-include/postgresql/server/libpq/libpq-be.h
-include/postgresql/server/libpq/libpq-fs.h
-include/postgresql/server/libpq/libpq.h
-include/postgresql/server/libpq/md5.h
-include/postgresql/server/libpq/pqcomm.h
-include/postgresql/server/libpq/pqformat.h
-include/postgresql/server/libpq/pqsignal.h
-include/postgresql/server/mb/pg_wchar.h
-include/postgresql/server/miscadmin.h
-include/postgresql/server/nodes/bitmapset.h
-include/postgresql/server/nodes/execnodes.h
-include/postgresql/server/nodes/makefuncs.h
-include/postgresql/server/nodes/memnodes.h
-include/postgresql/server/nodes/nodeFuncs.h
-include/postgresql/server/nodes/nodes.h
-include/postgresql/server/nodes/params.h
-include/postgresql/server/nodes/parsenodes.h
-include/postgresql/server/nodes/pg_list.h
-include/postgresql/server/nodes/plannodes.h
-include/postgresql/server/nodes/primnodes.h
-include/postgresql/server/nodes/print.h
-include/postgresql/server/nodes/readfuncs.h
-include/postgresql/server/nodes/relation.h
-include/postgresql/server/nodes/tidbitmap.h
-include/postgresql/server/nodes/value.h
-include/postgresql/server/optimizer/clauses.h
-include/postgresql/server/optimizer/cost.h
-include/postgresql/server/optimizer/geqo.h
-include/postgresql/server/optimizer/geqo_copy.h
-include/postgresql/server/optimizer/geqo_gene.h
-include/postgresql/server/optimizer/geqo_misc.h
-include/postgresql/server/optimizer/geqo_mutation.h
-include/postgresql/server/optimizer/geqo_pool.h
-include/postgresql/server/optimizer/geqo_random.h
-include/postgresql/server/optimizer/geqo_recombination.h
-include/postgresql/server/optimizer/geqo_selection.h
-include/postgresql/server/optimizer/joininfo.h
-include/postgresql/server/optimizer/pathnode.h
-include/postgresql/server/optimizer/paths.h
-include/postgresql/server/optimizer/placeholder.h
-include/postgresql/server/optimizer/plancat.h
-include/postgresql/server/optimizer/planmain.h
-include/postgresql/server/optimizer/planner.h
-include/postgresql/server/optimizer/predtest.h
-include/postgresql/server/optimizer/prep.h
-include/postgresql/server/optimizer/restrictinfo.h
-include/postgresql/server/optimizer/subselect.h
-include/postgresql/server/optimizer/tlist.h
-include/postgresql/server/optimizer/var.h
-include/postgresql/server/parser/analyze.h
-include/postgresql/server/parser/gram.h
-include/postgresql/server/parser/gramparse.h
-include/postgresql/server/parser/keywords.h
-include/postgresql/server/parser/kwlist.h
-include/postgresql/server/parser/parse_agg.h
-include/postgresql/server/parser/parse_clause.h
-include/postgresql/server/parser/parse_coerce.h
-include/postgresql/server/parser/parse_cte.h
-include/postgresql/server/parser/parse_expr.h
-include/postgresql/server/parser/parse_func.h
-include/postgresql/server/parser/parse_node.h
-include/postgresql/server/parser/parse_oper.h
-include/postgresql/server/parser/parse_param.h
-include/postgresql/server/parser/parse_relation.h
-include/postgresql/server/parser/parse_target.h
-include/postgresql/server/parser/parse_type.h
-include/postgresql/server/parser/parse_utilcmd.h
-include/postgresql/server/parser/parser.h
-include/postgresql/server/parser/parsetree.h
-include/postgresql/server/parser/scanner.h
-include/postgresql/server/parser/scansup.h
-include/postgresql/server/pg_config.h
-include/postgresql/server/pg_config_manual.h
-include/postgresql/server/pg_config_os.h
-include/postgresql/server/pg_trace.h
-include/postgresql/server/pgstat.h
-include/postgresql/server/pgtime.h
-include/postgresql/server/port.h
-include/postgresql/server/port/aix.h
-include/postgresql/server/port/bsdi.h
-include/postgresql/server/port/cygwin.h
-include/postgresql/server/port/darwin.h
-include/postgresql/server/port/dgux.h
-include/postgresql/server/port/freebsd.h
-include/postgresql/server/port/hpux.h
-include/postgresql/server/port/irix.h
-include/postgresql/server/port/linux.h
-include/postgresql/server/port/netbsd.h
-include/postgresql/server/port/nextstep.h
-include/postgresql/server/port/openbsd.h
-include/postgresql/server/port/osf.h
-include/postgresql/server/port/sco.h
-include/postgresql/server/port/solaris.h
-include/postgresql/server/port/sunos4.h
-include/postgresql/server/port/svr4.h
-include/postgresql/server/port/ultrix4.h
-include/postgresql/server/port/univel.h
-include/postgresql/server/port/unixware.h
-include/postgresql/server/port/win32.h
-include/postgresql/server/port/win32/arpa/inet.h
-include/postgresql/server/port/win32/dlfcn.h
-include/postgresql/server/port/win32/grp.h
-include/postgresql/server/port/win32/netdb.h
-include/postgresql/server/port/win32/netinet/in.h
-include/postgresql/server/port/win32/pwd.h
-include/postgresql/server/port/win32/sys/socket.h
-include/postgresql/server/port/win32/sys/wait.h
-include/postgresql/server/port/win32_msvc/dirent.h
-include/postgresql/server/port/win32_msvc/sys/file.h
-include/postgresql/server/port/win32_msvc/sys/param.h
-include/postgresql/server/port/win32_msvc/sys/time.h
-include/postgresql/server/port/win32_msvc/unistd.h
-include/postgresql/server/port/win32_msvc/utime.h
-include/postgresql/server/portability/instr_time.h
-include/postgresql/server/postgres.h
-include/postgresql/server/postgres_ext.h
-include/postgresql/server/postgres_fe.h
-include/postgresql/server/postmaster/autovacuum.h
-include/postgresql/server/postmaster/bgwriter.h
-include/postgresql/server/postmaster/fork_process.h
-include/postgresql/server/postmaster/pgarch.h
-include/postgresql/server/postmaster/postmaster.h
-include/postgresql/server/postmaster/syslogger.h
-include/postgresql/server/postmaster/walwriter.h
-include/postgresql/server/regex/regcustom.h
-include/postgresql/server/regex/regerrs.h
-include/postgresql/server/regex/regex.h
-include/postgresql/server/regex/regguts.h
-include/postgresql/server/replication/walprotocol.h
-include/postgresql/server/replication/walreceiver.h
-include/postgresql/server/replication/walsender.h
-include/postgresql/server/rewrite/prs2lock.h
-include/postgresql/server/rewrite/rewriteDefine.h
-include/postgresql/server/rewrite/rewriteHandler.h
-include/postgresql/server/rewrite/rewriteManip.h
-include/postgresql/server/rewrite/rewriteRemove.h
-include/postgresql/server/rewrite/rewriteSupport.h
-include/postgresql/server/rusagestub.h
-include/postgresql/server/snowball/header.h
-include/postgresql/server/snowball/libstemmer/api.h
-include/postgresql/server/snowball/libstemmer/header.h
-include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_danish.h
-include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_dutch.h
-include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_english.h
-include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_finnish.h
-include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_french.h
-include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_german.h
-include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_hungarian.h
-include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_italian.h
-include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_norwegian.h
-include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_porter.h
-include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_portuguese.h
-include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_spanish.h
-include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_swedish.h
-include/postgresql/server/snowball/libstemmer/stem_ISO_8859_2_romanian.h
-include/postgresql/server/snowball/libstemmer/stem_KOI8_R_russian.h
-include/postgresql/server/snowball/libstemmer/stem_UTF_8_danish.h
-include/postgresql/server/snowball/libstemmer/stem_UTF_8_dutch.h
-include/postgresql/server/snowball/libstemmer/stem_UTF_8_english.h
-include/postgresql/server/snowball/libstemmer/stem_UTF_8_finnish.h
-include/postgresql/server/snowball/libstemmer/stem_UTF_8_french.h
-include/postgresql/server/snowball/libstemmer/stem_UTF_8_german.h
-include/postgresql/server/snowball/libstemmer/stem_UTF_8_hungarian.h
-include/postgresql/server/snowball/libstemmer/stem_UTF_8_italian.h
-include/postgresql/server/snowball/libstemmer/stem_UTF_8_norwegian.h
-include/postgresql/server/snowball/libstemmer/stem_UTF_8_porter.h
-include/postgresql/server/snowball/libstemmer/stem_UTF_8_portuguese.h
-include/postgresql/server/snowball/libstemmer/stem_UTF_8_romanian.h
-include/postgresql/server/snowball/libstemmer/stem_UTF_8_russian.h
-include/postgresql/server/snowball/libstemmer/stem_UTF_8_spanish.h
-include/postgresql/server/snowball/libstemmer/stem_UTF_8_swedish.h
-include/postgresql/server/snowball/libstemmer/stem_UTF_8_turkish.h
-include/postgresql/server/storage/backendid.h
-include/postgresql/server/storage/block.h
-include/postgresql/server/storage/buf.h
-include/postgresql/server/storage/buf_internals.h
-include/postgresql/server/storage/buffile.h
-include/postgresql/server/storage/bufmgr.h
-include/postgresql/server/storage/bufpage.h
-include/postgresql/server/storage/fd.h
-include/postgresql/server/storage/freespace.h
-include/postgresql/server/storage/fsm_internals.h
-include/postgresql/server/storage/indexfsm.h
-include/postgresql/server/storage/ipc.h
-include/postgresql/server/storage/item.h
-include/postgresql/server/storage/itemid.h
-include/postgresql/server/storage/itemptr.h
-include/postgresql/server/storage/large_object.h
-include/postgresql/server/storage/lmgr.h
-include/postgresql/server/storage/lock.h
-include/postgresql/server/storage/lwlock.h
-include/postgresql/server/storage/off.h
-include/postgresql/server/storage/pg_sema.h
-include/postgresql/server/storage/pg_shmem.h
-include/postgresql/server/storage/pmsignal.h
-include/postgresql/server/storage/pos.h
-include/postgresql/server/storage/proc.h
-include/postgresql/server/storage/procarray.h
-include/postgresql/server/storage/procsignal.h
-include/postgresql/server/storage/relfilenode.h
-include/postgresql/server/storage/s_lock.h
-include/postgresql/server/storage/shmem.h
-include/postgresql/server/storage/sinval.h
-include/postgresql/server/storage/sinvaladt.h
-include/postgresql/server/storage/smgr.h
-include/postgresql/server/storage/spin.h
-include/postgresql/server/storage/standby.h
-include/postgresql/server/tcop/dest.h
-include/postgresql/server/tcop/fastpath.h
-include/postgresql/server/tcop/pquery.h
-include/postgresql/server/tcop/tcopdebug.h
-include/postgresql/server/tcop/tcopprot.h
-include/postgresql/server/tcop/utility.h
-include/postgresql/server/tsearch/dicts/regis.h
-include/postgresql/server/tsearch/dicts/spell.h
-include/postgresql/server/tsearch/ts_cache.h
-include/postgresql/server/tsearch/ts_locale.h
-include/postgresql/server/tsearch/ts_public.h
-include/postgresql/server/tsearch/ts_type.h
-include/postgresql/server/tsearch/ts_utils.h
-include/postgresql/server/utils/acl.h
-include/postgresql/server/utils/array.h
-include/postgresql/server/utils/ascii.h
-include/postgresql/server/utils/attoptcache.h
-include/postgresql/server/utils/builtins.h
-include/postgresql/server/utils/bytea.h
-include/postgresql/server/utils/cash.h
-include/postgresql/server/utils/catcache.h
-include/postgresql/server/utils/combocid.h
-include/postgresql/server/utils/date.h
-include/postgresql/server/utils/datetime.h
-include/postgresql/server/utils/datum.h
-include/postgresql/server/utils/dynahash.h
-include/postgresql/server/utils/dynamic_loader.h
-include/postgresql/server/utils/elog.h
-include/postgresql/server/utils/errcodes.h
-include/postgresql/server/utils/fmgroids.h
-include/postgresql/server/utils/fmgrtab.h
-include/postgresql/server/utils/formatting.h
-include/postgresql/server/utils/geo_decls.h
-include/postgresql/server/utils/guc.h
-include/postgresql/server/utils/guc_tables.h
-include/postgresql/server/utils/help_config.h
-include/postgresql/server/utils/hsearch.h
-include/postgresql/server/utils/inet.h
-include/postgresql/server/utils/int8.h
-include/postgresql/server/utils/inval.h
-include/postgresql/server/utils/logtape.h
-include/postgresql/server/utils/lsyscache.h
-include/postgresql/server/utils/memutils.h
-include/postgresql/server/utils/nabstime.h
-include/postgresql/server/utils/numeric.h
-include/postgresql/server/utils/palloc.h
-include/postgresql/server/utils/pg_crc.h
-include/postgresql/server/utils/pg_locale.h
-include/postgresql/server/utils/pg_lzcompress.h
-include/postgresql/server/utils/pg_rusage.h
-include/postgresql/server/utils/plancache.h
-include/postgresql/server/utils/portal.h
-include/postgresql/server/utils/probes.h
-include/postgresql/server/utils/ps_status.h
-include/postgresql/server/utils/rbtree.h
-include/postgresql/server/utils/rel.h
-include/postgresql/server/utils/relcache.h
-include/postgresql/server/utils/relmapper.h
-include/postgresql/server/utils/resowner.h
-include/postgresql/server/utils/selfuncs.h
-include/postgresql/server/utils/snapmgr.h
-include/postgresql/server/utils/snapshot.h
-include/postgresql/server/utils/spccache.h
-include/postgresql/server/utils/syscache.h
-include/postgresql/server/utils/timestamp.h
-include/postgresql/server/utils/tqual.h
-include/postgresql/server/utils/tuplesort.h
-include/postgresql/server/utils/tuplestore.h
-include/postgresql/server/utils/typcache.h
-include/postgresql/server/utils/tzparser.h
-include/postgresql/server/utils/uuid.h
-include/postgresql/server/utils/varbit.h
-include/postgresql/server/utils/xml.h
-include/postgresql/server/windowapi.h
-include/sqlda-compat.h
-include/sqlda-native.h
-include/sqlda.h
- at dirrm include/postgresql/server/utils
- at dirrm include/postgresql/server/tsearch/dicts
- at dirrm include/postgresql/server/tsearch
- at dirrm include/postgresql/server/tcop
- at dirrm include/postgresql/server/storage
- at dirrm include/postgresql/server/snowball/libstemmer
- at dirrm include/postgresql/server/snowball
- at dirrm include/postgresql/server/rewrite
- at dirrm include/postgresql/server/replication
- at dirrm include/postgresql/server/regex
- at dirrm include/postgresql/server/postmaster
- at dirrm include/postgresql/server/portability
- at dirrm include/postgresql/server/port/win32_msvc/sys
- at dirrm include/postgresql/server/port/win32_msvc
- at dirrm include/postgresql/server/port/win32/sys
- at dirrm include/postgresql/server/port/win32/netinet
- at dirrm include/postgresql/server/port/win32/arpa
- at dirrm include/postgresql/server/port/win32
- at dirrm include/postgresql/server/port
- at dirrm include/postgresql/server/parser
- at dirrm include/postgresql/server/optimizer
- at dirrm include/postgresql/server/nodes
- at dirrm include/postgresql/server/mb
- at dirrm include/postgresql/server/libpq
- at dirrm include/postgresql/server/lib
- at dirrm include/postgresql/server/foreign
- at dirrm include/postgresql/server/executor
- at dirrm include/postgresql/server/commands
- at dirrm include/postgresql/server/catalog
- at dirrm include/postgresql/server/bootstrap
- at dirrm include/postgresql/server/access
- at dirrm include/postgresql/server
-include/libpq/libpq-fs.h
- at dirrm include/libpq
-include/postgresql/internal/libpq/pqcomm.h
- at dirrm include/postgresql/internal/libpq
-include/postgresql/informix/esql/datetime.h
-include/postgresql/informix/esql/decimal.h
-include/postgresql/informix/esql/sqltypes.h
- at dirrm include/postgresql/informix/esql
- at dirrm include/postgresql/informix
-include/postgresql/internal/c.h
-include/postgresql/internal/libpq-int.h
-include/postgresql/internal/postgres_fe.h
-include/postgresql/internal/port.h
-include/postgresql/internal/pqexpbuffer.h
- at dirrm include/postgresql/internal
- at dirrm include/postgresql
-include/ecpg_informix.h
-include/ecpgerrno.h
-include/ecpglib.h
-include/ecpgtype.h
-include/libpq-fe.h
-include/pg_config.h
-include/pg_config_manual.h
-include/pg_config_os.h
-include/pgtypes_date.h
-include/pgtypes_error.h
-include/pgtypes_interval.h
-include/pgtypes_numeric.h
-include/pgtypes_timestamp.h
-include/postgres_ext.h
-include/sql3types.h
-include/sqlca.h
-lib/libecpg.a
-lib/libecpg.so
-lib/libecpg.so.6
-lib/libecpg_compat.a
-lib/libecpg_compat.so
-lib/libecpg_compat.so.3
-lib/libpgtypes.so.3
-lib/libpq.a
-lib/libpq.so
-lib/libpq.so.5
-lib/libpgtypes.a
-lib/libpgtypes.so
-lib/postgresql/pgxs/config/install-sh
-lib/postgresql/pgxs/src/makefiles/pgxs.mk
-lib/postgresql/pgxs/src/Makefile.global
-lib/postgresql/pgxs/src/Makefile.port
-lib/postgresql/pgxs/src/Makefile.shlib
-lib/postgresql/pgxs/src/nls-global.mk
- at dirrm lib/postgresql/pgxs/src/makefiles
- at dirrm lib/postgresql/pgxs/config
- at dirrm lib/postgresql/pgxs/src
- at dirrm lib/postgresql/pgxs
- at dirrm lib/postgresql
-%%DOCSDIR%%/README-client
+%%PGHOME%%/bin/clusterdb
+%%PGHOME%%/bin/createdb
+%%PGHOME%%/bin/createlang
+%%PGHOME%%/bin/createuser
+%%PGHOME%%/bin/dropdb
+%%PGHOME%%/bin/droplang
+%%PGHOME%%/bin/dropuser
+%%PGHOME%%/bin/ecpg
+%%PGHOME%%/bin/pg_config
+%%PGHOME%%/bin/pg_dump
+%%PGHOME%%/bin/pg_dumpall
+%%PGHOME%%/bin/pg_restore
+%%PGHOME%%/bin/psql
+%%PGHOME%%/bin/reindexdb
+%%PGHOME%%/bin/vacuumdb
+%%PGHOME%%/include/ecpg_config.h
+%%PGHOME%%/include/libpq-events.h
+%%PGHOME%%/include/server/access/attnum.h
+%%PGHOME%%/include/server/access/clog.h
+%%PGHOME%%/include/server/access/genam.h
+%%PGHOME%%/include/server/access/gin.h
+%%PGHOME%%/include/server/access/gist.h
+%%PGHOME%%/include/server/access/gist_private.h
+%%PGHOME%%/include/server/access/gistscan.h
+%%PGHOME%%/include/server/access/hash.h
+%%PGHOME%%/include/server/access/heapam.h
+%%PGHOME%%/include/server/access/hio.h
+%%PGHOME%%/include/server/access/htup.h
+%%PGHOME%%/include/server/access/itup.h
+%%PGHOME%%/include/server/access/multixact.h
+%%PGHOME%%/include/server/access/nbtree.h
+%%PGHOME%%/include/server/access/printtup.h
+%%PGHOME%%/include/server/access/reloptions.h
+%%PGHOME%%/include/server/access/relscan.h
+%%PGHOME%%/include/server/access/rewriteheap.h
+%%PGHOME%%/include/server/access/rmgr.h
+%%PGHOME%%/include/server/access/sdir.h
+%%PGHOME%%/include/server/access/skey.h
+%%PGHOME%%/include/server/access/slru.h
+%%PGHOME%%/include/server/access/subtrans.h
+%%PGHOME%%/include/server/access/sysattr.h
+%%PGHOME%%/include/server/access/transam.h
+%%PGHOME%%/include/server/access/tupconvert.h
+%%PGHOME%%/include/server/access/tupdesc.h
+%%PGHOME%%/include/server/access/tupmacs.h
+%%PGHOME%%/include/server/access/tuptoaster.h
+%%PGHOME%%/include/server/access/twophase.h
+%%PGHOME%%/include/server/access/twophase_rmgr.h
+%%PGHOME%%/include/server/access/valid.h
+%%PGHOME%%/include/server/access/visibilitymap.h
+%%PGHOME%%/include/server/access/xact.h
+%%PGHOME%%/include/server/access/xlog.h
+%%PGHOME%%/include/server/access/xlog_internal.h
+%%PGHOME%%/include/server/access/xlogdefs.h
+%%PGHOME%%/include/server/access/xlogutils.h
+%%PGHOME%%/include/server/bootstrap/bootstrap.h
+%%PGHOME%%/include/server/c.h
+%%PGHOME%%/include/server/catalog/catalog.h
+%%PGHOME%%/include/server/catalog/catversion.h
+%%PGHOME%%/include/server/catalog/dependency.h
+%%PGHOME%%/include/server/catalog/genbki.h
+%%PGHOME%%/include/server/catalog/heap.h
+%%PGHOME%%/include/server/catalog/index.h
+%%PGHOME%%/include/server/catalog/indexing.h
+%%PGHOME%%/include/server/catalog/namespace.h
+%%PGHOME%%/include/server/catalog/pg_aggregate.h
+%%PGHOME%%/include/server/catalog/pg_am.h
+%%PGHOME%%/include/server/catalog/pg_amop.h
+%%PGHOME%%/include/server/catalog/pg_amproc.h
+%%PGHOME%%/include/server/catalog/pg_attrdef.h
+%%PGHOME%%/include/server/catalog/pg_attribute.h
+%%PGHOME%%/include/server/catalog/pg_auth_members.h
+%%PGHOME%%/include/server/catalog/pg_authid.h
+%%PGHOME%%/include/server/catalog/pg_cast.h
+%%PGHOME%%/include/server/catalog/pg_class.h
+%%PGHOME%%/include/server/catalog/pg_constraint.h
+%%PGHOME%%/include/server/catalog/pg_control.h
+%%PGHOME%%/include/server/catalog/pg_conversion.h
+%%PGHOME%%/include/server/catalog/pg_conversion_fn.h
+%%PGHOME%%/include/server/catalog/pg_database.h
+%%PGHOME%%/include/server/catalog/pg_db_role_setting.h
+%%PGHOME%%/include/server/catalog/pg_default_acl.h
+%%PGHOME%%/include/server/catalog/pg_depend.h
+%%PGHOME%%/include/server/catalog/pg_description.h
+%%PGHOME%%/include/server/catalog/pg_enum.h
+%%PGHOME%%/include/server/catalog/pg_foreign_data_wrapper.h
+%%PGHOME%%/include/server/catalog/pg_foreign_server.h
+%%PGHOME%%/include/server/catalog/pg_index.h
+%%PGHOME%%/include/server/catalog/pg_inherits.h
+%%PGHOME%%/include/server/catalog/pg_inherits_fn.h
+%%PGHOME%%/include/server/catalog/pg_language.h
+%%PGHOME%%/include/server/catalog/pg_largeobject.h
+%%PGHOME%%/include/server/catalog/pg_largeobject_metadata.h
+%%PGHOME%%/include/server/catalog/pg_namespace.h
+%%PGHOME%%/include/server/catalog/pg_opclass.h
+%%PGHOME%%/include/server/catalog/pg_operator.h
+%%PGHOME%%/include/server/catalog/pg_opfamily.h
+%%PGHOME%%/include/server/catalog/pg_pltemplate.h
+%%PGHOME%%/include/server/catalog/pg_proc.h
+%%PGHOME%%/include/server/catalog/pg_proc_fn.h
+%%PGHOME%%/include/server/catalog/pg_rewrite.h
+%%PGHOME%%/include/server/catalog/pg_shdepend.h
+%%PGHOME%%/include/server/catalog/pg_shdescription.h
+%%PGHOME%%/include/server/catalog/pg_statistic.h
+%%PGHOME%%/include/server/catalog/pg_tablespace.h
+%%PGHOME%%/include/server/catalog/pg_trigger.h
+%%PGHOME%%/include/server/catalog/pg_ts_config.h
+%%PGHOME%%/include/server/catalog/pg_ts_config_map.h
+%%PGHOME%%/include/server/catalog/pg_ts_dict.h
+%%PGHOME%%/include/server/catalog/pg_ts_parser.h
+%%PGHOME%%/include/server/catalog/pg_ts_template.h
+%%PGHOME%%/include/server/catalog/pg_type.h
+%%PGHOME%%/include/server/catalog/pg_type_fn.h
+%%PGHOME%%/include/server/catalog/pg_user_mapping.h
+%%PGHOME%%/include/server/catalog/storage.h
+%%PGHOME%%/include/server/catalog/toasting.h
+%%PGHOME%%/include/server/commands/alter.h
+%%PGHOME%%/include/server/commands/async.h
+%%PGHOME%%/include/server/commands/cluster.h
+%%PGHOME%%/include/server/commands/comment.h
+%%PGHOME%%/include/server/commands/conversioncmds.h
+%%PGHOME%%/include/server/commands/copy.h
+%%PGHOME%%/include/server/commands/dbcommands.h
+%%PGHOME%%/include/server/commands/defrem.h
+%%PGHOME%%/include/server/commands/discard.h
+%%PGHOME%%/include/server/commands/explain.h
+%%PGHOME%%/include/server/commands/lockcmds.h
+%%PGHOME%%/include/server/commands/portalcmds.h
+%%PGHOME%%/include/server/commands/prepare.h
+%%PGHOME%%/include/server/commands/proclang.h
+%%PGHOME%%/include/server/commands/schemacmds.h
+%%PGHOME%%/include/server/commands/sequence.h
+%%PGHOME%%/include/server/commands/tablecmds.h
+%%PGHOME%%/include/server/commands/tablespace.h
+%%PGHOME%%/include/server/commands/trigger.h
+%%PGHOME%%/include/server/commands/typecmds.h
+%%PGHOME%%/include/server/commands/user.h
+%%PGHOME%%/include/server/commands/vacuum.h
+%%PGHOME%%/include/server/commands/variable.h
+%%PGHOME%%/include/server/commands/view.h
+%%PGHOME%%/include/server/dynloader.h
+%%PGHOME%%/include/server/executor/execdebug.h
+%%PGHOME%%/include/server/executor/execdefs.h
+%%PGHOME%%/include/server/executor/execdesc.h
+%%PGHOME%%/include/server/executor/executor.h
+%%PGHOME%%/include/server/executor/functions.h
+%%PGHOME%%/include/server/executor/hashjoin.h
+%%PGHOME%%/include/server/executor/instrument.h
+%%PGHOME%%/include/server/executor/nodeAgg.h
+%%PGHOME%%/include/server/executor/nodeAppend.h
+%%PGHOME%%/include/server/executor/nodeBitmapAnd.h
+%%PGHOME%%/include/server/executor/nodeBitmapHeapscan.h
+%%PGHOME%%/include/server/executor/nodeBitmapIndexscan.h
+%%PGHOME%%/include/server/executor/nodeBitmapOr.h
+%%PGHOME%%/include/server/executor/nodeCtescan.h
+%%PGHOME%%/include/server/executor/nodeFunctionscan.h
+%%PGHOME%%/include/server/executor/nodeGroup.h
+%%PGHOME%%/include/server/executor/nodeHash.h
+%%PGHOME%%/include/server/executor/nodeHashjoin.h
+%%PGHOME%%/include/server/executor/nodeIndexscan.h
+%%PGHOME%%/include/server/executor/nodeLimit.h
+%%PGHOME%%/include/server/executor/nodeLockRows.h
+%%PGHOME%%/include/server/executor/nodeMaterial.h
+%%PGHOME%%/include/server/executor/nodeMergejoin.h
+%%PGHOME%%/include/server/executor/nodeModifyTable.h
+%%PGHOME%%/include/server/executor/nodeNestloop.h
+%%PGHOME%%/include/server/executor/nodeRecursiveunion.h
+%%PGHOME%%/include/server/executor/nodeResult.h
+%%PGHOME%%/include/server/executor/nodeSeqscan.h
+%%PGHOME%%/include/server/executor/nodeSetOp.h
+%%PGHOME%%/include/server/executor/nodeSort.h
+%%PGHOME%%/include/server/executor/nodeSubplan.h
+%%PGHOME%%/include/server/executor/nodeSubqueryscan.h
+%%PGHOME%%/include/server/executor/nodeTidscan.h
+%%PGHOME%%/include/server/executor/nodeUnique.h
+%%PGHOME%%/include/server/executor/nodeValuesscan.h
+%%PGHOME%%/include/server/executor/nodeWindowAgg.h
+%%PGHOME%%/include/server/executor/nodeWorktablescan.h
+%%PGHOME%%/include/server/executor/spi.h
+%%PGHOME%%/include/server/executor/spi_priv.h
+%%PGHOME%%/include/server/executor/tstoreReceiver.h
+%%PGHOME%%/include/server/executor/tuptable.h
+%%PGHOME%%/include/server/fmgr.h
+%%PGHOME%%/include/server/foreign/foreign.h
+%%PGHOME%%/include/server/funcapi.h
+%%PGHOME%%/include/server/getaddrinfo.h
+%%PGHOME%%/include/server/getopt_long.h
+%%PGHOME%%/include/server/lib/dllist.h
+%%PGHOME%%/include/server/lib/stringinfo.h
+%%PGHOME%%/include/server/libpq/auth.h
+%%PGHOME%%/include/server/libpq/be-fsstubs.h
+%%PGHOME%%/include/server/libpq/crypt.h
+%%PGHOME%%/include/server/libpq/hba.h
+%%PGHOME%%/include/server/libpq/ip.h
+%%PGHOME%%/include/server/libpq/libpq-be.h
+%%PGHOME%%/include/server/libpq/libpq-fs.h
+%%PGHOME%%/include/server/libpq/libpq.h
+%%PGHOME%%/include/server/libpq/md5.h
+%%PGHOME%%/include/server/libpq/pqcomm.h
+%%PGHOME%%/include/server/libpq/pqformat.h
+%%PGHOME%%/include/server/libpq/pqsignal.h
+%%PGHOME%%/include/server/mb/pg_wchar.h
+%%PGHOME%%/include/server/miscadmin.h
+%%PGHOME%%/include/server/nodes/bitmapset.h
+%%PGHOME%%/include/server/nodes/execnodes.h
+%%PGHOME%%/include/server/nodes/makefuncs.h
+%%PGHOME%%/include/server/nodes/memnodes.h
+%%PGHOME%%/include/server/nodes/nodeFuncs.h
+%%PGHOME%%/include/server/nodes/nodes.h
+%%PGHOME%%/include/server/nodes/params.h
+%%PGHOME%%/include/server/nodes/parsenodes.h
+%%PGHOME%%/include/server/nodes/pg_list.h
+%%PGHOME%%/include/server/nodes/plannodes.h
+%%PGHOME%%/include/server/nodes/primnodes.h
+%%PGHOME%%/include/server/nodes/print.h
+%%PGHOME%%/include/server/nodes/readfuncs.h
+%%PGHOME%%/include/server/nodes/relation.h
+%%PGHOME%%/include/server/nodes/tidbitmap.h
+%%PGHOME%%/include/server/nodes/value.h
+%%PGHOME%%/include/server/optimizer/clauses.h
+%%PGHOME%%/include/server/optimizer/cost.h
+%%PGHOME%%/include/server/optimizer/geqo.h
+%%PGHOME%%/include/server/optimizer/geqo_copy.h
+%%PGHOME%%/include/server/optimizer/geqo_gene.h
+%%PGHOME%%/include/server/optimizer/geqo_misc.h
+%%PGHOME%%/include/server/optimizer/geqo_mutation.h
+%%PGHOME%%/include/server/optimizer/geqo_pool.h
+%%PGHOME%%/include/server/optimizer/geqo_random.h
+%%PGHOME%%/include/server/optimizer/geqo_recombination.h
+%%PGHOME%%/include/server/optimizer/geqo_selection.h
+%%PGHOME%%/include/server/optimizer/joininfo.h
+%%PGHOME%%/include/server/optimizer/pathnode.h
+%%PGHOME%%/include/server/optimizer/paths.h
+%%PGHOME%%/include/server/optimizer/placeholder.h
+%%PGHOME%%/include/server/optimizer/plancat.h
+%%PGHOME%%/include/server/optimizer/planmain.h
+%%PGHOME%%/include/server/optimizer/planner.h
+%%PGHOME%%/include/server/optimizer/predtest.h
+%%PGHOME%%/include/server/optimizer/prep.h
+%%PGHOME%%/include/server/optimizer/restrictinfo.h
+%%PGHOME%%/include/server/optimizer/subselect.h
+%%PGHOME%%/include/server/optimizer/tlist.h
+%%PGHOME%%/include/server/optimizer/var.h
+%%PGHOME%%/include/server/parser/analyze.h
+%%PGHOME%%/include/server/parser/gram.h
+%%PGHOME%%/include/server/parser/gramparse.h
+%%PGHOME%%/include/server/parser/keywords.h
+%%PGHOME%%/include/server/parser/kwlist.h
+%%PGHOME%%/include/server/parser/parse_agg.h
+%%PGHOME%%/include/server/parser/parse_clause.h
+%%PGHOME%%/include/server/parser/parse_coerce.h
+%%PGHOME%%/include/server/parser/parse_cte.h
+%%PGHOME%%/include/server/parser/parse_expr.h
+%%PGHOME%%/include/server/parser/parse_func.h
+%%PGHOME%%/include/server/parser/parse_node.h
+%%PGHOME%%/include/server/parser/parse_oper.h
+%%PGHOME%%/include/server/parser/parse_param.h
+%%PGHOME%%/include/server/parser/parse_relation.h
+%%PGHOME%%/include/server/parser/parse_target.h
+%%PGHOME%%/include/server/parser/parse_type.h
+%%PGHOME%%/include/server/parser/parse_utilcmd.h
+%%PGHOME%%/include/server/parser/parser.h
+%%PGHOME%%/include/server/parser/parsetree.h
+%%PGHOME%%/include/server/parser/scanner.h
+%%PGHOME%%/include/server/parser/scansup.h
+%%PGHOME%%/include/server/pg_config.h
+%%PGHOME%%/include/server/pg_config_manual.h
+%%PGHOME%%/include/server/pg_config_os.h
+%%PGHOME%%/include/server/pg_trace.h
+%%PGHOME%%/include/server/pgstat.h
+%%PGHOME%%/include/server/pgtime.h
+%%PGHOME%%/include/server/port.h
+%%PGHOME%%/include/server/port/aix.h
+%%PGHOME%%/include/server/port/bsdi.h
+%%PGHOME%%/include/server/port/cygwin.h
+%%PGHOME%%/include/server/port/darwin.h
+%%PGHOME%%/include/server/port/dgux.h
+%%PGHOME%%/include/server/port/freebsd.h
+%%PGHOME%%/include/server/port/hpux.h
+%%PGHOME%%/include/server/port/irix.h
+%%PGHOME%%/include/server/port/linux.h
+%%PGHOME%%/include/server/port/netbsd.h
+%%PGHOME%%/include/server/port/nextstep.h
+%%PGHOME%%/include/server/port/openbsd.h
+%%PGHOME%%/include/server/port/osf.h
+%%PGHOME%%/include/server/port/sco.h
+%%PGHOME%%/include/server/port/solaris.h
+%%PGHOME%%/include/server/port/sunos4.h
+%%PGHOME%%/include/server/port/svr4.h
+%%PGHOME%%/include/server/port/ultrix4.h
+%%PGHOME%%/include/server/port/univel.h
+%%PGHOME%%/include/server/port/unixware.h
+%%PGHOME%%/include/server/port/win32.h
+%%PGHOME%%/include/server/port/win32/arpa/inet.h
+%%PGHOME%%/include/server/port/win32/dlfcn.h
+%%PGHOME%%/include/server/port/win32/grp.h
+%%PGHOME%%/include/server/port/win32/netdb.h
+%%PGHOME%%/include/server/port/win32/netinet/in.h
+%%PGHOME%%/include/server/port/win32/pwd.h
+%%PGHOME%%/include/server/port/win32/sys/socket.h
+%%PGHOME%%/include/server/port/win32/sys/wait.h
+%%PGHOME%%/include/server/port/win32_msvc/dirent.h
+%%PGHOME%%/include/server/port/win32_msvc/sys/file.h
+%%PGHOME%%/include/server/port/win32_msvc/sys/param.h
+%%PGHOME%%/include/server/port/win32_msvc/sys/time.h
+%%PGHOME%%/include/server/port/win32_msvc/unistd.h
+%%PGHOME%%/include/server/port/win32_msvc/utime.h
+%%PGHOME%%/include/server/portability/instr_time.h
+%%PGHOME%%/include/server/postgres.h
+%%PGHOME%%/include/server/postgres_ext.h
+%%PGHOME%%/include/server/postgres_fe.h
+%%PGHOME%%/include/server/postmaster/autovacuum.h
+%%PGHOME%%/include/server/postmaster/bgwriter.h
+%%PGHOME%%/include/server/postmaster/fork_process.h
+%%PGHOME%%/include/server/postmaster/pgarch.h
+%%PGHOME%%/include/server/postmaster/postmaster.h
+%%PGHOME%%/include/server/postmaster/syslogger.h
+%%PGHOME%%/include/server/postmaster/walwriter.h
+%%PGHOME%%/include/server/regex/regcustom.h
+%%PGHOME%%/include/server/regex/regerrs.h
+%%PGHOME%%/include/server/regex/regex.h
+%%PGHOME%%/include/server/regex/regguts.h
+%%PGHOME%%/include/server/replication/walprotocol.h
+%%PGHOME%%/include/server/replication/walreceiver.h
+%%PGHOME%%/include/server/replication/walsender.h
+%%PGHOME%%/include/server/rewrite/prs2lock.h
+%%PGHOME%%/include/server/rewrite/rewriteDefine.h
+%%PGHOME%%/include/server/rewrite/rewriteHandler.h
+%%PGHOME%%/include/server/rewrite/rewriteManip.h
+%%PGHOME%%/include/server/rewrite/rewriteRemove.h
+%%PGHOME%%/include/server/rewrite/rewriteSupport.h
+%%PGHOME%%/include/server/rusagestub.h
+%%PGHOME%%/include/server/snowball/header.h
+%%PGHOME%%/include/server/snowball/libstemmer/api.h
+%%PGHOME%%/include/server/snowball/libstemmer/header.h
+%%PGHOME%%/include/server/snowball/libstemmer/stem_ISO_8859_1_danish.h
+%%PGHOME%%/include/server/snowball/libstemmer/stem_ISO_8859_1_dutch.h
+%%PGHOME%%/include/server/snowball/libstemmer/stem_ISO_8859_1_english.h
+%%PGHOME%%/include/server/snowball/libstemmer/stem_ISO_8859_1_finnish.h
+%%PGHOME%%/include/server/snowball/libstemmer/stem_ISO_8859_1_french.h
+%%PGHOME%%/include/server/snowball/libstemmer/stem_ISO_8859_1_german.h
+%%PGHOME%%/include/server/snowball/libstemmer/stem_ISO_8859_1_hungarian.h
+%%PGHOME%%/include/server/snowball/libstemmer/stem_ISO_8859_1_italian.h
+%%PGHOME%%/include/server/snowball/libstemmer/stem_ISO_8859_1_norwegian.h
+%%PGHOME%%/include/server/snowball/libstemmer/stem_ISO_8859_1_porter.h
+%%PGHOME%%/include/server/snowball/libstemmer/stem_ISO_8859_1_portuguese.h
+%%PGHOME%%/include/server/snowball/libstemmer/stem_ISO_8859_1_spanish.h
+%%PGHOME%%/include/server/snowball/libstemmer/stem_ISO_8859_1_swedish.h
+%%PGHOME%%/include/server/snowball/libstemmer/stem_ISO_8859_2_romanian.h
+%%PGHOME%%/include/server/snowball/libstemmer/stem_KOI8_R_russian.h
+%%PGHOME%%/include/server/snowball/libstemmer/stem_UTF_8_danish.h
+%%PGHOME%%/include/server/snowball/libstemmer/stem_UTF_8_dutch.h
+%%PGHOME%%/include/server/snowball/libstemmer/stem_UTF_8_english.h
+%%PGHOME%%/include/server/snowball/libstemmer/stem_UTF_8_finnish.h
+%%PGHOME%%/include/server/snowball/libstemmer/stem_UTF_8_french.h
+%%PGHOME%%/include/server/snowball/libstemmer/stem_UTF_8_german.h
+%%PGHOME%%/include/server/snowball/libstemmer/stem_UTF_8_hungarian.h
+%%PGHOME%%/include/server/snowball/libstemmer/stem_UTF_8_italian.h
+%%PGHOME%%/include/server/snowball/libstemmer/stem_UTF_8_norwegian.h
+%%PGHOME%%/include/server/snowball/libstemmer/stem_UTF_8_porter.h
+%%PGHOME%%/include/server/snowball/libstemmer/stem_UTF_8_portuguese.h
+%%PGHOME%%/include/server/snowball/libstemmer/stem_UTF_8_romanian.h
+%%PGHOME%%/include/server/snowball/libstemmer/stem_UTF_8_russian.h
+%%PGHOME%%/include/server/snowball/libstemmer/stem_UTF_8_spanish.h
+%%PGHOME%%/include/server/snowball/libstemmer/stem_UTF_8_swedish.h
+%%PGHOME%%/include/server/snowball/libstemmer/stem_UTF_8_turkish.h
+%%PGHOME%%/include/server/storage/backendid.h
+%%PGHOME%%/include/server/storage/block.h
+%%PGHOME%%/include/server/storage/buf.h
+%%PGHOME%%/include/server/storage/buf_internals.h
+%%PGHOME%%/include/server/storage/buffile.h
+%%PGHOME%%/include/server/storage/bufmgr.h
+%%PGHOME%%/include/server/storage/bufpage.h
+%%PGHOME%%/include/server/storage/fd.h
+%%PGHOME%%/include/server/storage/freespace.h
+%%PGHOME%%/include/server/storage/fsm_internals.h
+%%PGHOME%%/include/server/storage/indexfsm.h
+%%PGHOME%%/include/server/storage/ipc.h
+%%PGHOME%%/include/server/storage/item.h
+%%PGHOME%%/include/server/storage/itemid.h
+%%PGHOME%%/include/server/storage/itemptr.h
+%%PGHOME%%/include/server/storage/large_object.h
+%%PGHOME%%/include/server/storage/lmgr.h
+%%PGHOME%%/include/server/storage/lock.h
+%%PGHOME%%/include/server/storage/lwlock.h
+%%PGHOME%%/include/server/storage/off.h
+%%PGHOME%%/include/server/storage/pg_sema.h
+%%PGHOME%%/include/server/storage/pg_shmem.h
+%%PGHOME%%/include/server/storage/pmsignal.h
+%%PGHOME%%/include/server/storage/pos.h
+%%PGHOME%%/include/server/storage/proc.h
+%%PGHOME%%/include/server/storage/procarray.h
+%%PGHOME%%/include/server/storage/procsignal.h
+%%PGHOME%%/include/server/storage/relfilenode.h
+%%PGHOME%%/include/server/storage/s_lock.h
+%%PGHOME%%/include/server/storage/shmem.h
+%%PGHOME%%/include/server/storage/sinval.h
+%%PGHOME%%/include/server/storage/sinvaladt.h
+%%PGHOME%%/include/server/storage/smgr.h
+%%PGHOME%%/include/server/storage/spin.h
+%%PGHOME%%/include/server/storage/standby.h
+%%PGHOME%%/include/server/tcop/dest.h
+%%PGHOME%%/include/server/tcop/fastpath.h
+%%PGHOME%%/include/server/tcop/pquery.h
+%%PGHOME%%/include/server/tcop/tcopdebug.h
+%%PGHOME%%/include/server/tcop/tcopprot.h
+%%PGHOME%%/include/server/tcop/utility.h
+%%PGHOME%%/include/server/tsearch/dicts/regis.h
+%%PGHOME%%/include/server/tsearch/dicts/spell.h
+%%PGHOME%%/include/server/tsearch/ts_cache.h
+%%PGHOME%%/include/server/tsearch/ts_locale.h
+%%PGHOME%%/include/server/tsearch/ts_public.h
+%%PGHOME%%/include/server/tsearch/ts_type.h
+%%PGHOME%%/include/server/tsearch/ts_utils.h
+%%PGHOME%%/include/server/utils/acl.h
+%%PGHOME%%/include/server/utils/array.h
+%%PGHOME%%/include/server/utils/ascii.h
+%%PGHOME%%/include/server/utils/attoptcache.h
+%%PGHOME%%/include/server/utils/builtins.h
+%%PGHOME%%/include/server/utils/bytea.h
+%%PGHOME%%/include/server/utils/cash.h
+%%PGHOME%%/include/server/utils/catcache.h
+%%PGHOME%%/include/server/utils/combocid.h
+%%PGHOME%%/include/server/utils/date.h
+%%PGHOME%%/include/server/utils/datetime.h
+%%PGHOME%%/include/server/utils/datum.h
+%%PGHOME%%/include/server/utils/dynahash.h
+%%PGHOME%%/include/server/utils/dynamic_loader.h
+%%PGHOME%%/include/server/utils/elog.h
+%%PGHOME%%/include/server/utils/errcodes.h
+%%PGHOME%%/include/server/utils/fmgroids.h
+%%PGHOME%%/include/server/utils/fmgrtab.h
+%%PGHOME%%/include/server/utils/formatting.h
+%%PGHOME%%/include/server/utils/geo_decls.h
+%%PGHOME%%/include/server/utils/guc.h
+%%PGHOME%%/include/server/utils/guc_tables.h
+%%PGHOME%%/include/server/utils/help_config.h
+%%PGHOME%%/include/server/utils/hsearch.h
+%%PGHOME%%/include/server/utils/inet.h
+%%PGHOME%%/include/server/utils/int8.h
+%%PGHOME%%/include/server/utils/inval.h
+%%PGHOME%%/include/server/utils/logtape.h
+%%PGHOME%%/include/server/utils/lsyscache.h
+%%PGHOME%%/include/server/utils/memutils.h
+%%PGHOME%%/include/server/utils/nabstime.h
+%%PGHOME%%/include/server/utils/numeric.h
+%%PGHOME%%/include/server/utils/palloc.h
+%%PGHOME%%/include/server/utils/pg_crc.h
+%%PGHOME%%/include/server/utils/pg_locale.h
+%%PGHOME%%/include/server/utils/pg_lzcompress.h
+%%PGHOME%%/include/server/utils/pg_rusage.h
+%%PGHOME%%/include/server/utils/plancache.h
+%%PGHOME%%/include/server/utils/portal.h
+%%PGHOME%%/include/server/utils/probes.h
+%%PGHOME%%/include/server/utils/ps_status.h
+%%PGHOME%%/include/server/utils/rbtree.h
+%%PGHOME%%/include/server/utils/rel.h
+%%PGHOME%%/include/server/utils/relcache.h
+%%PGHOME%%/include/server/utils/relmapper.h
+%%PGHOME%%/include/server/utils/resowner.h
+%%PGHOME%%/include/server/utils/selfuncs.h
+%%PGHOME%%/include/server/utils/snapmgr.h
+%%PGHOME%%/include/server/utils/snapshot.h
+%%PGHOME%%/include/server/utils/spccache.h
+%%PGHOME%%/include/server/utils/syscache.h
+%%PGHOME%%/include/server/utils/timestamp.h
+%%PGHOME%%/include/server/utils/tqual.h
+%%PGHOME%%/include/server/utils/tuplesort.h
+%%PGHOME%%/include/server/utils/tuplestore.h
+%%PGHOME%%/include/server/utils/typcache.h
+%%PGHOME%%/include/server/utils/tzparser.h
+%%PGHOME%%/include/server/utils/uuid.h
+%%PGHOME%%/include/server/utils/varbit.h
+%%PGHOME%%/include/server/utils/xml.h
+%%PGHOME%%/include/server/windowapi.h
+%%PGHOME%%/include/sqlda-compat.h
+%%PGHOME%%/include/sqlda-native.h
+%%PGHOME%%/include/sqlda.h
+ at dirrm %%PGHOME%%/include/server/utils
+ at dirrm %%PGHOME%%/include/server/tsearch/dicts
+ at dirrm %%PGHOME%%/include/server/tsearch
+ at dirrm %%PGHOME%%/include/server/tcop
+ at dirrm %%PGHOME%%/include/server/storage
+ at dirrm %%PGHOME%%/include/server/snowball/libstemmer
+ at dirrm %%PGHOME%%/include/server/snowball
+ at dirrm %%PGHOME%%/include/server/rewrite
+ at dirrm %%PGHOME%%/include/server/replication
+ at dirrm %%PGHOME%%/include/server/regex
+ at dirrm %%PGHOME%%/include/server/postmaster
+ at dirrm %%PGHOME%%/include/server/portability
+ at dirrm %%PGHOME%%/include/server/port/win32_msvc/sys
+ at dirrm %%PGHOME%%/include/server/port/win32_msvc
+ at dirrm %%PGHOME%%/include/server/port/win32/sys
+ at dirrm %%PGHOME%%/include/server/port/win32/netinet
+ at dirrm %%PGHOME%%/include/server/port/win32/arpa
+ at dirrm %%PGHOME%%/include/server/port/win32
+ at dirrm %%PGHOME%%/include/server/port
+ at dirrm %%PGHOME%%/include/server/parser
+ at dirrm %%PGHOME%%/include/server/optimizer
+ at dirrm %%PGHOME%%/include/server/nodes
+ at dirrm %%PGHOME%%/include/server/mb
+ at dirrm %%PGHOME%%/include/server/libpq
+ at dirrm %%PGHOME%%/include/server/lib
+ at dirrm %%PGHOME%%/include/server/foreign
+ at dirrm %%PGHOME%%/include/server/executor
+ at dirrm %%PGHOME%%/include/server/commands
+ at dirrm %%PGHOME%%/include/server/catalog
+ at dirrm %%PGHOME%%/include/server/bootstrap
+ at dirrm %%PGHOME%%/include/server/access
+ at dirrm %%PGHOME%%/include/server
+%%PGHOME%%/include/libpq/libpq-fs.h
+ at dirrm %%PGHOME%%/include/libpq
+%%PGHOME%%/include/internal/libpq/pqcomm.h
+ at dirrm %%PGHOME%%/include/internal/libpq
+%%PGHOME%%/include/informix/esql/datetime.h
+%%PGHOME%%/include/informix/esql/decimal.h
+%%PGHOME%%/include/informix/esql/sqltypes.h
+ at dirrm %%PGHOME%%/include/informix/esql
+ at dirrm %%PGHOME%%/include/informix
+%%PGHOME%%/include/internal/c.h
+%%PGHOME%%/include/internal/libpq-int.h
+%%PGHOME%%/include/internal/postgres_fe.h
+%%PGHOME%%/include/internal/port.h
+%%PGHOME%%/include/internal/pqexpbuffer.h
+ at dirrm %%PGHOME%%/include/internal
+ at dirrmtry %%PGHOME%%/include
+%%PGHOME%%/include/ecpg_informix.h
+%%PGHOME%%/include/ecpgerrno.h
+%%PGHOME%%/include/ecpglib.h
+%%PGHOME%%/include/ecpgtype.h
+%%PGHOME%%/include/libpq-fe.h
+%%PGHOME%%/include/pg_config.h
+%%PGHOME%%/include/pg_config_manual.h
+%%PGHOME%%/include/pg_config_os.h
+%%PGHOME%%/include/pgtypes_date.h
+%%PGHOME%%/include/pgtypes_error.h
+%%PGHOME%%/include/pgtypes_interval.h
+%%PGHOME%%/include/pgtypes_numeric.h
+%%PGHOME%%/include/pgtypes_timestamp.h
+%%PGHOME%%/include/postgres_ext.h
+%%PGHOME%%/include/sql3types.h
+%%PGHOME%%/include/sqlca.h
+%%PGHOME%%/lib/libecpg.a
+%%PGHOME%%/lib/libecpg.so
+%%PGHOME%%/lib/libecpg.so.6
+%%PGHOME%%/lib/libecpg_compat.a
+%%PGHOME%%/lib/libecpg_compat.so
+%%PGHOME%%/lib/libecpg_compat.so.3
+%%PGHOME%%/lib/libpgtypes.so.3
+%%PGHOME%%/lib/libpq.a
+%%PGHOME%%/lib/libpq.so
+%%PGHOME%%/lib/libpq.so.5
+%%PGHOME%%/lib/libpgtypes.a
+%%PGHOME%%/lib/libpgtypes.so
+%%PGHOME%%/lib/pgxs/config/install-sh
+%%PGHOME%%/lib/pgxs/src/makefiles/pgxs.mk
+%%PGHOME%%/lib/pgxs/src/Makefile.global
+%%PGHOME%%/lib/pgxs/src/Makefile.port
+%%PGHOME%%/lib/pgxs/src/Makefile.shlib
+%%PGHOME%%/lib/pgxs/src/nls-global.mk
+ at dirrm %%PGHOME%%/lib/pgxs/src/makefiles
+ at dirrm %%PGHOME%%/lib/pgxs/config
+ at dirrm %%PGHOME%%/lib/pgxs/src
+ at dirrm %%PGHOME%%/lib/pgxs
+ at dirrmtry %%PGHOME%%/lib
 @dirrmtry %%DOCSDIR%%
-share/postgresql/pg_service.conf.sample
-share/postgresql/psqlrc.sample
- at dirrmtry share/postgresql
-%%GETTEXT%%share/locale/cs/LC_MESSAGES/libpq5-9.0.mo
-%%GETTEXT%%share/locale/cs/LC_MESSAGES/pgscripts-9.0.mo
-%%GETTEXT%%share/locale/cs/LC_MESSAGES/psql-9.0.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/ecpg-9.0.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/ecpglib6-9.0.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/libpq5-9.0.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/pg_config-9.0.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/pg_dump-9.0.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/pgscripts-9.0.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/psql-9.0.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/ecpg-9.0.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/ecpglib6-9.0.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/libpq5-9.0.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/pg_config-9.0.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/pg_dump-9.0.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/pgscripts-9.0.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/psql-9.0.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/ecpg-9.0.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/ecpglib6-9.0.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/libpq5-9.0.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/pg_config-9.0.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/pg_dump-9.0.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/pgscripts-9.0.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/psql-9.0.mo
-%%GETTEXT%%share/locale/it/LC_MESSAGES/ecpg-9.0.mo
-%%GETTEXT%%share/locale/it/LC_MESSAGES/ecpglib6-9.0.mo
-%%GETTEXT%%share/locale/it/LC_MESSAGES/libpq5-9.0.mo
-%%GETTEXT%%share/locale/it/LC_MESSAGES/pg_config-9.0.mo
-%%GETTEXT%%share/locale/it/LC_MESSAGES/pg_dump-9.0.mo
-%%GETTEXT%%share/locale/it/LC_MESSAGES/pgscripts-9.0.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/ecpg-9.0.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/ecpglib6-9.0.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/libpq5-9.0.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/pg_config-9.0.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/pg_dump-9.0.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/pgscripts-9.0.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/psql-9.0.mo
-%%GETTEXT%%share/locale/ko/LC_MESSAGES/libpq5-9.0.mo
-%%GETTEXT%%share/locale/ko/LC_MESSAGES/pg_config-9.0.mo
-%%GETTEXT%%share/locale/ko/LC_MESSAGES/pgscripts-9.0.mo
-%%GETTEXT%%share/locale/nb/LC_MESSAGES/pg_config-9.0.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/ecpg-9.0.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/ecpglib6-9.0.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/libpq5-9.0.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/pg_config-9.0.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/pg_dump-9.0.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/pgscripts-9.0.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/psql-9.0.mo
-%%GETTEXT%%share/locale/ro/LC_MESSAGES/pg_config-9.0.mo
-%%GETTEXT%%share/locale/ro/LC_MESSAGES/pgscripts-9.0.mo
-%%GETTEXT%%share/locale/ru/LC_MESSAGES/libpq5-9.0.mo
-%%GETTEXT%%share/locale/ru/LC_MESSAGES/pg_config-9.0.mo
-%%GETTEXT%%share/locale/sv/LC_MESSAGES/libpq5-9.0.mo
-%%GETTEXT%%share/locale/sv/LC_MESSAGES/pg_config-9.0.mo
-%%GETTEXT%%share/locale/sv/LC_MESSAGES/pg_dump-9.0.mo
-%%GETTEXT%%share/locale/sv/LC_MESSAGES/pgscripts-9.0.mo
-%%GETTEXT%%share/locale/sv/LC_MESSAGES/psql-9.0.mo
-%%GETTEXT%%share/locale/ta/LC_MESSAGES/libpq5-9.0.mo
-%%GETTEXT%%share/locale/ta/LC_MESSAGES/pg_config-9.0.mo
-%%GETTEXT%%share/locale/ta/LC_MESSAGES/pgscripts-9.0.mo
-%%GETTEXT%%share/locale/tr/LC_MESSAGES/ecpg-9.0.mo
-%%GETTEXT%%share/locale/tr/LC_MESSAGES/ecpglib6-9.0.mo
-%%GETTEXT%%share/locale/tr/LC_MESSAGES/libpq5-9.0.mo
-%%GETTEXT%%share/locale/tr/LC_MESSAGES/pg_config-9.0.mo
-%%GETTEXT%%share/locale/tr/LC_MESSAGES/pg_dump-9.0.mo
-%%GETTEXT%%share/locale/tr/LC_MESSAGES/pgscripts-9.0.mo
-%%GETTEXT%%share/locale/tr/LC_MESSAGES/psql-9.0.mo
-%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/ecpg-9.0.mo
-%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/ecpglib6-9.0.mo
-%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/libpq5-9.0.mo
-%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/pg_config-9.0.mo
-%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/pg_dump-9.0.mo
-%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/pgscripts-9.0.mo
+%%PGHOME%%/share/pg_service.conf.sample
+%%PGHOME%%/share/psqlrc.sample
+ at dirrmtry %%PGHOME%%/share
+%%PGHOME%%/share/locale/cs/LC_MESSAGES/libpq5-9.0.mo
+%%PGHOME%%/share/locale/cs/LC_MESSAGES/pgscripts-9.0.mo
+%%PGHOME%%/share/locale/cs/LC_MESSAGES/psql-9.0.mo
+%%PGHOME%%/share/locale/de/LC_MESSAGES/ecpg-9.0.mo
+%%PGHOME%%/share/locale/de/LC_MESSAGES/ecpglib6-9.0.mo
+%%PGHOME%%/share/locale/de/LC_MESSAGES/libpq5-9.0.mo
+%%PGHOME%%/share/locale/de/LC_MESSAGES/pg_config-9.0.mo
+%%PGHOME%%/share/locale/de/LC_MESSAGES/pg_dump-9.0.mo
+%%PGHOME%%/share/locale/de/LC_MESSAGES/pgscripts-9.0.mo
+%%PGHOME%%/share/locale/de/LC_MESSAGES/psql-9.0.mo
+%%PGHOME%%/share/locale/es/LC_MESSAGES/ecpg-9.0.mo
+%%PGHOME%%/share/locale/es/LC_MESSAGES/ecpglib6-9.0.mo
+%%PGHOME%%/share/locale/es/LC_MESSAGES/libpq5-9.0.mo
+%%PGHOME%%/share/locale/es/LC_MESSAGES/pg_config-9.0.mo
+%%PGHOME%%/share/locale/es/LC_MESSAGES/pg_dump-9.0.mo
+%%PGHOME%%/share/locale/es/LC_MESSAGES/pgscripts-9.0.mo
+%%PGHOME%%/share/locale/es/LC_MESSAGES/psql-9.0.mo
+%%PGHOME%%/share/locale/fr/LC_MESSAGES/ecpg-9.0.mo
+%%PGHOME%%/share/locale/fr/LC_MESSAGES/ecpglib6-9.0.mo
+%%PGHOME%%/share/locale/fr/LC_MESSAGES/libpq5-9.0.mo
+%%PGHOME%%/share/locale/fr/LC_MESSAGES/pg_config-9.0.mo
+%%PGHOME%%/share/locale/fr/LC_MESSAGES/pg_dump-9.0.mo
+%%PGHOME%%/share/locale/fr/LC_MESSAGES/pgscripts-9.0.mo
+%%PGHOME%%/share/locale/fr/LC_MESSAGES/psql-9.0.mo
+%%PGHOME%%/share/locale/it/LC_MESSAGES/ecpg-9.0.mo
+%%PGHOME%%/share/locale/it/LC_MESSAGES/ecpglib6-9.0.mo
+%%PGHOME%%/share/locale/it/LC_MESSAGES/libpq5-9.0.mo
+%%PGHOME%%/share/locale/it/LC_MESSAGES/pg_config-9.0.mo
+%%PGHOME%%/share/locale/it/LC_MESSAGES/pg_dump-9.0.mo
+%%PGHOME%%/share/locale/it/LC_MESSAGES/pgscripts-9.0.mo
+%%PGHOME%%/share/locale/ja/LC_MESSAGES/ecpg-9.0.mo
+%%PGHOME%%/share/locale/ja/LC_MESSAGES/ecpglib6-9.0.mo
+%%PGHOME%%/share/locale/ja/LC_MESSAGES/libpq5-9.0.mo
+%%PGHOME%%/share/locale/ja/LC_MESSAGES/pg_config-9.0.mo
+%%PGHOME%%/share/locale/ja/LC_MESSAGES/pg_dump-9.0.mo
+%%PGHOME%%/share/locale/ja/LC_MESSAGES/pgscripts-9.0.mo
+%%PGHOME%%/share/locale/ja/LC_MESSAGES/psql-9.0.mo
+%%PGHOME%%/share/locale/ko/LC_MESSAGES/libpq5-9.0.mo
+%%PGHOME%%/share/locale/ko/LC_MESSAGES/pg_config-9.0.mo
+%%PGHOME%%/share/locale/ko/LC_MESSAGES/pgscripts-9.0.mo
+%%PGHOME%%/share/locale/nb/LC_MESSAGES/pg_config-9.0.mo
+%%PGHOME%%/share/locale/pt_BR/LC_MESSAGES/ecpg-9.0.mo
+%%PGHOME%%/share/locale/pt_BR/LC_MESSAGES/ecpglib6-9.0.mo
+%%PGHOME%%/share/locale/pt_BR/LC_MESSAGES/libpq5-9.0.mo
+%%PGHOME%%/share/locale/pt_BR/LC_MESSAGES/pg_config-9.0.mo
+%%PGHOME%%/share/locale/pt_BR/LC_MESSAGES/pg_dump-9.0.mo
+%%PGHOME%%/share/locale/pt_BR/LC_MESSAGES/pgscripts-9.0.mo
+%%PGHOME%%/share/locale/pt_BR/LC_MESSAGES/psql-9.0.mo
+%%PGHOME%%/share/locale/ro/LC_MESSAGES/pg_config-9.0.mo
+%%PGHOME%%/share/locale/ro/LC_MESSAGES/pgscripts-9.0.mo
+%%PGHOME%%/share/locale/ru/LC_MESSAGES/libpq5-9.0.mo
+%%PGHOME%%/share/locale/ru/LC_MESSAGES/pg_config-9.0.mo
+%%PGHOME%%/share/locale/sv/LC_MESSAGES/libpq5-9.0.mo
+%%PGHOME%%/share/locale/sv/LC_MESSAGES/pg_config-9.0.mo
+%%PGHOME%%/share/locale/sv/LC_MESSAGES/pg_dump-9.0.mo
+%%PGHOME%%/share/locale/sv/LC_MESSAGES/pgscripts-9.0.mo
+%%PGHOME%%/share/locale/sv/LC_MESSAGES/psql-9.0.mo
+%%PGHOME%%/share/locale/ta/LC_MESSAGES/libpq5-9.0.mo
+%%PGHOME%%/share/locale/ta/LC_MESSAGES/pg_config-9.0.mo
+%%PGHOME%%/share/locale/ta/LC_MESSAGES/pgscripts-9.0.mo
+%%PGHOME%%/share/locale/tr/LC_MESSAGES/ecpg-9.0.mo
+%%PGHOME%%/share/locale/tr/LC_MESSAGES/ecpglib6-9.0.mo
+%%PGHOME%%/share/locale/tr/LC_MESSAGES/libpq5-9.0.mo
+%%PGHOME%%/share/locale/tr/LC_MESSAGES/pg_config-9.0.mo
+%%PGHOME%%/share/locale/tr/LC_MESSAGES/pg_dump-9.0.mo
+%%PGHOME%%/share/locale/tr/LC_MESSAGES/pgscripts-9.0.mo
+%%PGHOME%%/share/locale/tr/LC_MESSAGES/psql-9.0.mo
+%%PGHOME%%/share/locale/zh_CN/LC_MESSAGES/ecpg-9.0.mo
+%%PGHOME%%/share/locale/zh_CN/LC_MESSAGES/ecpglib6-9.0.mo
+%%PGHOME%%/share/locale/zh_CN/LC_MESSAGES/libpq5-9.0.mo
+%%PGHOME%%/share/locale/zh_CN/LC_MESSAGES/pg_config-9.0.mo
+%%PGHOME%%/share/locale/zh_CN/LC_MESSAGES/pg_dump-9.0.mo
+%%PGHOME%%/share/locale/zh_CN/LC_MESSAGES/pgscripts-9.0.mo
+ at dirrmtry %%PGHOME%%/share/locale/zh_CN/LC_MESSAGES
+ at dirrmtry %%PGHOME%%/share/locale/zh_CN
+ at dirrmtry %%PGHOME%%/share/locale/tr/LC_MESSAGES
+ at dirrmtry %%PGHOME%%/share/locale/tr
+ at dirrmtry %%PGHOME%%/share/locale/ta/LC_MESSAGES
+ at dirrmtry %%PGHOME%%/share/locale/ta
+ at dirrmtry %%PGHOME%%/share/locale/sv/LC_MESSAGES
+ at dirrmtry %%PGHOME%%/share/locale/sv
+ at dirrmtry %%PGHOME%%/share/locale/ru/LC_MESSAGES
+ at dirrmtry %%PGHOME%%/share/locale/ru
+ at dirrmtry %%PGHOME%%/share/locale/ro/LC_MESSAGES
+ at dirrmtry %%PGHOME%%/share/locale/ro
+ at dirrmtry %%PGHOME%%/share/locale/pt_BR/LC_MESSAGES
+ at dirrmtry %%PGHOME%%/share/locale/pt_BR
+ at dirrmtry %%PGHOME%%/share/locale/nb/LC_MESSAGES
+ at dirrmtry %%PGHOME%%/share/locale/nb
+ at dirrmtry %%PGHOME%%/share/locale/ko/LC_MESSAGES
+ at dirrmtry %%PGHOME%%/share/locale/ko
+ at dirrmtry %%PGHOME%%/share/locale/ja/LC_MESSAGES
+ at dirrmtry %%PGHOME%%/share/locale/ja
+ at dirrmtry %%PGHOME%%/share/locale/it/LC_MESSAGES
+ at dirrmtry %%PGHOME%%/share/locale/it
+ at dirrmtry %%PGHOME%%/share/locale/fr/LC_MESSAGES
+ at dirrmtry %%PGHOME%%/share/locale/fr
+ at dirrmtry %%PGHOME%%/share/locale/es/LC_MESSAGES
+ at dirrmtry %%PGHOME%%/share/locale/es
+ at dirrmtry %%PGHOME%%/share/locale/de/LC_MESSAGES
+ at dirrmtry %%PGHOME%%/share/locale/de
+ at dirrmtry %%PGHOME%%/share/locale/cs/LC_MESSAGES
+ at dirrmtry %%PGHOME%%/share/locale/cs
+ at dirrmtry %%PGHOME%%/share/locale
+ at dirrmtry %%PGHOME%%/share/doc/html
+ at dirrmtry %%PGHOME%%/share/doc
+ at dirrmtry %%PGHOME%%/share
+ at dirrmtry %%PGHOME%%/include
+ at dirrmtry %%PGHOME%%/bin
+ at dirrmtry %%PGHOME%%/
diff -ruN ports/databases/postgresql90-server/pkg-plist-client.1 ../20100922/databases/postgresql90-server/pkg-plist-client.1
--- ports/databases/postgresql90-server/pkg-plist-client.1	1970-01-01 03:00:00.000000000 +0300
+++ ../20100922/databases/postgresql90-server/pkg-plist-client.1	2010-09-23 14:10:10.547278281 +0400
@@ -0,0 +1,643 @@
+%%PGHOME%%/bin/clusterdb
+%%PGHOME%%/bin/createdb
+%%PGHOME%%/bin/createlang
+%%PGHOME%%/bin/createuser
+%%PGHOME%%/bin/dropdb
+%%PGHOME%%/bin/droplang
+%%PGHOME%%/bin/dropuser
+%%PGHOME%%/bin/ecpg
+%%PGHOME%%/bin/pg_config
+%%PGHOME%%/bin/pg_dump
+%%PGHOME%%/bin/pg_dumpall
+%%PGHOME%%/bin/pg_restore
+%%PGHOME%%/bin/psql
+%%PGHOME%%/bin/reindexdb
+%%PGHOME%%/bin/vacuumdb
+%%PGHOME%%/include/ecpg_config.h
+%%PGHOME%%/include/libpq-events.h
+%%PGHOME%%/include/postgresql/server/access/attnum.h
+%%PGHOME%%/include/postgresql/server/access/clog.h
+%%PGHOME%%/include/postgresql/server/access/genam.h
+%%PGHOME%%/include/postgresql/server/access/gin.h
+%%PGHOME%%/include/postgresql/server/access/gist.h
+%%PGHOME%%/include/postgresql/server/access/gist_private.h
+%%PGHOME%%/include/postgresql/server/access/gistscan.h
+%%PGHOME%%/include/postgresql/server/access/hash.h
+%%PGHOME%%/include/postgresql/server/access/heapam.h
+%%PGHOME%%/include/postgresql/server/access/hio.h
+%%PGHOME%%/include/postgresql/server/access/htup.h
+%%PGHOME%%/include/postgresql/server/access/itup.h
+%%PGHOME%%/include/postgresql/server/access/multixact.h
+%%PGHOME%%/include/postgresql/server/access/nbtree.h
+%%PGHOME%%/include/postgresql/server/access/printtup.h
+%%PGHOME%%/include/postgresql/server/access/reloptions.h
+%%PGHOME%%/include/postgresql/server/access/relscan.h
+%%PGHOME%%/include/postgresql/server/access/rewriteheap.h
+%%PGHOME%%/include/postgresql/server/access/rmgr.h
+%%PGHOME%%/include/postgresql/server/access/sdir.h
+%%PGHOME%%/include/postgresql/server/access/skey.h
+%%PGHOME%%/include/postgresql/server/access/slru.h
+%%PGHOME%%/include/postgresql/server/access/subtrans.h
+%%PGHOME%%/include/postgresql/server/access/sysattr.h
+%%PGHOME%%/include/postgresql/server/access/transam.h
+%%PGHOME%%/include/postgresql/server/access/tupconvert.h
+%%PGHOME%%/include/postgresql/server/access/tupdesc.h
+%%PGHOME%%/include/postgresql/server/access/tupmacs.h
+%%PGHOME%%/include/postgresql/server/access/tuptoaster.h
+%%PGHOME%%/include/postgresql/server/access/twophase.h
+%%PGHOME%%/include/postgresql/server/access/twophase_rmgr.h
+%%PGHOME%%/include/postgresql/server/access/valid.h
+%%PGHOME%%/include/postgresql/server/access/visibilitymap.h
+%%PGHOME%%/include/postgresql/server/access/xact.h
+%%PGHOME%%/include/postgresql/server/access/xlog.h
+%%PGHOME%%/include/postgresql/server/access/xlog_internal.h
+%%PGHOME%%/include/postgresql/server/access/xlogdefs.h
+%%PGHOME%%/include/postgresql/server/access/xlogutils.h
+%%PGHOME%%/include/postgresql/server/bootstrap/bootstrap.h
+%%PGHOME%%/include/postgresql/server/c.h
+%%PGHOME%%/include/postgresql/server/catalog/catalog.h
+%%PGHOME%%/include/postgresql/server/catalog/catversion.h
+%%PGHOME%%/include/postgresql/server/catalog/dependency.h
+%%PGHOME%%/include/postgresql/server/catalog/genbki.h
+%%PGHOME%%/include/postgresql/server/catalog/heap.h
+%%PGHOME%%/include/postgresql/server/catalog/index.h
+%%PGHOME%%/include/postgresql/server/catalog/indexing.h
+%%PGHOME%%/include/postgresql/server/catalog/namespace.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_aggregate.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_am.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_amop.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_amproc.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_attrdef.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_attribute.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_auth_members.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_authid.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_cast.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_class.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_constraint.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_control.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_conversion.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_conversion_fn.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_database.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_db_role_setting.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_default_acl.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_depend.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_description.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_enum.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_foreign_data_wrapper.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_foreign_server.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_index.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_inherits.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_inherits_fn.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_language.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_largeobject.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_largeobject_metadata.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_namespace.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_opclass.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_operator.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_opfamily.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_pltemplate.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_proc.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_proc_fn.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_rewrite.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_shdepend.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_shdescription.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_statistic.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_tablespace.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_trigger.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_ts_config.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_ts_config_map.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_ts_dict.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_ts_parser.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_ts_template.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_type.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_type_fn.h
+%%PGHOME%%/include/postgresql/server/catalog/pg_user_mapping.h
+%%PGHOME%%/include/postgresql/server/catalog/storage.h
+%%PGHOME%%/include/postgresql/server/catalog/toasting.h
+%%PGHOME%%/include/postgresql/server/commands/alter.h
+%%PGHOME%%/include/postgresql/server/commands/async.h
+%%PGHOME%%/include/postgresql/server/commands/cluster.h
+%%PGHOME%%/include/postgresql/server/commands/comment.h
+%%PGHOME%%/include/postgresql/server/commands/conversioncmds.h
+%%PGHOME%%/include/postgresql/server/commands/copy.h
+%%PGHOME%%/include/postgresql/server/commands/dbcommands.h
+%%PGHOME%%/include/postgresql/server/commands/defrem.h
+%%PGHOME%%/include/postgresql/server/commands/discard.h
+%%PGHOME%%/include/postgresql/server/commands/explain.h
+%%PGHOME%%/include/postgresql/server/commands/lockcmds.h
+%%PGHOME%%/include/postgresql/server/commands/portalcmds.h
+%%PGHOME%%/include/postgresql/server/commands/prepare.h
+%%PGHOME%%/include/postgresql/server/commands/proclang.h
+%%PGHOME%%/include/postgresql/server/commands/schemacmds.h
+%%PGHOME%%/include/postgresql/server/commands/sequence.h
+%%PGHOME%%/include/postgresql/server/commands/tablecmds.h
+%%PGHOME%%/include/postgresql/server/commands/tablespace.h
+%%PGHOME%%/include/postgresql/server/commands/trigger.h
+%%PGHOME%%/include/postgresql/server/commands/typecmds.h
+%%PGHOME%%/include/postgresql/server/commands/user.h
+%%PGHOME%%/include/postgresql/server/commands/vacuum.h
+%%PGHOME%%/include/postgresql/server/commands/variable.h
+%%PGHOME%%/include/postgresql/server/commands/view.h
+%%PGHOME%%/include/postgresql/server/dynloader.h
+%%PGHOME%%/include/postgresql/server/executor/execdebug.h
+%%PGHOME%%/include/postgresql/server/executor/execdefs.h
+%%PGHOME%%/include/postgresql/server/executor/execdesc.h
+%%PGHOME%%/include/postgresql/server/executor/executor.h
+%%PGHOME%%/include/postgresql/server/executor/functions.h
+%%PGHOME%%/include/postgresql/server/executor/hashjoin.h
+%%PGHOME%%/include/postgresql/server/executor/instrument.h
+%%PGHOME%%/include/postgresql/server/executor/nodeAgg.h
+%%PGHOME%%/include/postgresql/server/executor/nodeAppend.h
+%%PGHOME%%/include/postgresql/server/executor/nodeBitmapAnd.h
+%%PGHOME%%/include/postgresql/server/executor/nodeBitmapHeapscan.h
+%%PGHOME%%/include/postgresql/server/executor/nodeBitmapIndexscan.h
+%%PGHOME%%/include/postgresql/server/executor/nodeBitmapOr.h
+%%PGHOME%%/include/postgresql/server/executor/nodeCtescan.h
+%%PGHOME%%/include/postgresql/server/executor/nodeFunctionscan.h
+%%PGHOME%%/include/postgresql/server/executor/nodeGroup.h
+%%PGHOME%%/include/postgresql/server/executor/nodeHash.h
+%%PGHOME%%/include/postgresql/server/executor/nodeHashjoin.h
+%%PGHOME%%/include/postgresql/server/executor/nodeIndexscan.h
+%%PGHOME%%/include/postgresql/server/executor/nodeLimit.h
+%%PGHOME%%/include/postgresql/server/executor/nodeLockRows.h
+%%PGHOME%%/include/postgresql/server/executor/nodeMaterial.h
+%%PGHOME%%/include/postgresql/server/executor/nodeMergejoin.h
+%%PGHOME%%/include/postgresql/server/executor/nodeModifyTable.h
+%%PGHOME%%/include/postgresql/server/executor/nodeNestloop.h
+%%PGHOME%%/include/postgresql/server/executor/nodeRecursiveunion.h
+%%PGHOME%%/include/postgresql/server/executor/nodeResult.h
+%%PGHOME%%/include/postgresql/server/executor/nodeSeqscan.h
+%%PGHOME%%/include/postgresql/server/executor/nodeSetOp.h
+%%PGHOME%%/include/postgresql/server/executor/nodeSort.h
+%%PGHOME%%/include/postgresql/server/executor/nodeSubplan.h
+%%PGHOME%%/include/postgresql/server/executor/nodeSubqueryscan.h
+%%PGHOME%%/include/postgresql/server/executor/nodeTidscan.h
+%%PGHOME%%/include/postgresql/server/executor/nodeUnique.h
+%%PGHOME%%/include/postgresql/server/executor/nodeValuesscan.h
+%%PGHOME%%/include/postgresql/server/executor/nodeWindowAgg.h
+%%PGHOME%%/include/postgresql/server/executor/nodeWorktablescan.h
+%%PGHOME%%/include/postgresql/server/executor/spi.h
+%%PGHOME%%/include/postgresql/server/executor/spi_priv.h
+%%PGHOME%%/include/postgresql/server/executor/tstoreReceiver.h
+%%PGHOME%%/include/postgresql/server/executor/tuptable.h
+%%PGHOME%%/include/postgresql/server/fmgr.h
+%%PGHOME%%/include/postgresql/server/foreign/foreign.h
+%%PGHOME%%/include/postgresql/server/funcapi.h
+%%PGHOME%%/include/postgresql/server/getaddrinfo.h
+%%PGHOME%%/include/postgresql/server/getopt_long.h
+%%PGHOME%%/include/postgresql/server/lib/dllist.h
+%%PGHOME%%/include/postgresql/server/lib/stringinfo.h
+%%PGHOME%%/include/postgresql/server/libpq/auth.h
+%%PGHOME%%/include/postgresql/server/libpq/be-fsstubs.h
+%%PGHOME%%/include/postgresql/server/libpq/crypt.h
+%%PGHOME%%/include/postgresql/server/libpq/hba.h
+%%PGHOME%%/include/postgresql/server/libpq/ip.h
+%%PGHOME%%/include/postgresql/server/libpq/libpq-be.h
+%%PGHOME%%/include/postgresql/server/libpq/libpq-fs.h
+%%PGHOME%%/include/postgresql/server/libpq/libpq.h
+%%PGHOME%%/include/postgresql/server/libpq/md5.h
+%%PGHOME%%/include/postgresql/server/libpq/pqcomm.h
+%%PGHOME%%/include/postgresql/server/libpq/pqformat.h
+%%PGHOME%%/include/postgresql/server/libpq/pqsignal.h
+%%PGHOME%%/include/postgresql/server/mb/pg_wchar.h
+%%PGHOME%%/include/postgresql/server/miscadmin.h
+%%PGHOME%%/include/postgresql/server/nodes/bitmapset.h
+%%PGHOME%%/include/postgresql/server/nodes/execnodes.h
+%%PGHOME%%/include/postgresql/server/nodes/makefuncs.h
+%%PGHOME%%/include/postgresql/server/nodes/memnodes.h
+%%PGHOME%%/include/postgresql/server/nodes/nodeFuncs.h
+%%PGHOME%%/include/postgresql/server/nodes/nodes.h
+%%PGHOME%%/include/postgresql/server/nodes/params.h
+%%PGHOME%%/include/postgresql/server/nodes/parsenodes.h
+%%PGHOME%%/include/postgresql/server/nodes/pg_list.h
+%%PGHOME%%/include/postgresql/server/nodes/plannodes.h
+%%PGHOME%%/include/postgresql/server/nodes/primnodes.h
+%%PGHOME%%/include/postgresql/server/nodes/print.h
+%%PGHOME%%/include/postgresql/server/nodes/readfuncs.h
+%%PGHOME%%/include/postgresql/server/nodes/relation.h
+%%PGHOME%%/include/postgresql/server/nodes/tidbitmap.h
+%%PGHOME%%/include/postgresql/server/nodes/value.h
+%%PGHOME%%/include/postgresql/server/optimizer/clauses.h
+%%PGHOME%%/include/postgresql/server/optimizer/cost.h
+%%PGHOME%%/include/postgresql/server/optimizer/geqo.h
+%%PGHOME%%/include/postgresql/server/optimizer/geqo_copy.h
+%%PGHOME%%/include/postgresql/server/optimizer/geqo_gene.h
+%%PGHOME%%/include/postgresql/server/optimizer/geqo_misc.h
+%%PGHOME%%/include/postgresql/server/optimizer/geqo_mutation.h
+%%PGHOME%%/include/postgresql/server/optimizer/geqo_pool.h
+%%PGHOME%%/include/postgresql/server/optimizer/geqo_random.h
+%%PGHOME%%/include/postgresql/server/optimizer/geqo_recombination.h
+%%PGHOME%%/include/postgresql/server/optimizer/geqo_selection.h
+%%PGHOME%%/include/postgresql/server/optimizer/joininfo.h
+%%PGHOME%%/include/postgresql/server/optimizer/pathnode.h
+%%PGHOME%%/include/postgresql/server/optimizer/paths.h
+%%PGHOME%%/include/postgresql/server/optimizer/placeholder.h
+%%PGHOME%%/include/postgresql/server/optimizer/plancat.h
+%%PGHOME%%/include/postgresql/server/optimizer/planmain.h
+%%PGHOME%%/include/postgresql/server/optimizer/planner.h
+%%PGHOME%%/include/postgresql/server/optimizer/predtest.h
+%%PGHOME%%/include/postgresql/server/optimizer/prep.h
+%%PGHOME%%/include/postgresql/server/optimizer/restrictinfo.h
+%%PGHOME%%/include/postgresql/server/optimizer/subselect.h
+%%PGHOME%%/include/postgresql/server/optimizer/tlist.h
+%%PGHOME%%/include/postgresql/server/optimizer/var.h
+%%PGHOME%%/include/postgresql/server/parser/analyze.h
+%%PGHOME%%/include/postgresql/server/parser/gram.h
+%%PGHOME%%/include/postgresql/server/parser/gramparse.h
+%%PGHOME%%/include/postgresql/server/parser/keywords.h
+%%PGHOME%%/include/postgresql/server/parser/kwlist.h
+%%PGHOME%%/include/postgresql/server/parser/parse_agg.h
+%%PGHOME%%/include/postgresql/server/parser/parse_clause.h
+%%PGHOME%%/include/postgresql/server/parser/parse_coerce.h
+%%PGHOME%%/include/postgresql/server/parser/parse_cte.h
+%%PGHOME%%/include/postgresql/server/parser/parse_expr.h
+%%PGHOME%%/include/postgresql/server/parser/parse_func.h
+%%PGHOME%%/include/postgresql/server/parser/parse_node.h
+%%PGHOME%%/include/postgresql/server/parser/parse_oper.h
+%%PGHOME%%/include/postgresql/server/parser/parse_param.h
+%%PGHOME%%/include/postgresql/server/parser/parse_relation.h
+%%PGHOME%%/include/postgresql/server/parser/parse_target.h
+%%PGHOME%%/include/postgresql/server/parser/parse_type.h
+%%PGHOME%%/include/postgresql/server/parser/parse_utilcmd.h
+%%PGHOME%%/include/postgresql/server/parser/parser.h
+%%PGHOME%%/include/postgresql/server/parser/parsetree.h
+%%PGHOME%%/include/postgresql/server/parser/scanner.h
+%%PGHOME%%/include/postgresql/server/parser/scansup.h
+%%PGHOME%%/include/postgresql/server/pg_config.h
+%%PGHOME%%/include/postgresql/server/pg_config_manual.h
+%%PGHOME%%/include/postgresql/server/pg_config_os.h
+%%PGHOME%%/include/postgresql/server/pg_trace.h
+%%PGHOME%%/include/postgresql/server/pgstat.h
+%%PGHOME%%/include/postgresql/server/pgtime.h
+%%PGHOME%%/include/postgresql/server/port.h
+%%PGHOME%%/include/postgresql/server/port/aix.h
+%%PGHOME%%/include/postgresql/server/port/bsdi.h
+%%PGHOME%%/include/postgresql/server/port/cygwin.h
+%%PGHOME%%/include/postgresql/server/port/darwin.h
+%%PGHOME%%/include/postgresql/server/port/dgux.h
+%%PGHOME%%/include/postgresql/server/port/freebsd.h
+%%PGHOME%%/include/postgresql/server/port/hpux.h
+%%PGHOME%%/include/postgresql/server/port/irix.h
+%%PGHOME%%/include/postgresql/server/port/linux.h
+%%PGHOME%%/include/postgresql/server/port/netbsd.h
+%%PGHOME%%/include/postgresql/server/port/nextstep.h
+%%PGHOME%%/include/postgresql/server/port/openbsd.h
+%%PGHOME%%/include/postgresql/server/port/osf.h
+%%PGHOME%%/include/postgresql/server/port/sco.h
+%%PGHOME%%/include/postgresql/server/port/solaris.h
+%%PGHOME%%/include/postgresql/server/port/sunos4.h
+%%PGHOME%%/include/postgresql/server/port/svr4.h
+%%PGHOME%%/include/postgresql/server/port/ultrix4.h
+%%PGHOME%%/include/postgresql/server/port/univel.h
+%%PGHOME%%/include/postgresql/server/port/unixware.h
+%%PGHOME%%/include/postgresql/server/port/win32.h
+%%PGHOME%%/include/postgresql/server/port/win32/arpa/inet.h
+%%PGHOME%%/include/postgresql/server/port/win32/dlfcn.h
+%%PGHOME%%/include/postgresql/server/port/win32/grp.h
+%%PGHOME%%/include/postgresql/server/port/win32/netdb.h
+%%PGHOME%%/include/postgresql/server/port/win32/netinet/in.h
+%%PGHOME%%/include/postgresql/server/port/win32/pwd.h
+%%PGHOME%%/include/postgresql/server/port/win32/sys/socket.h
+%%PGHOME%%/include/postgresql/server/port/win32/sys/wait.h
+%%PGHOME%%/include/postgresql/server/port/win32_msvc/dirent.h
+%%PGHOME%%/include/postgresql/server/port/win32_msvc/sys/file.h
+%%PGHOME%%/include/postgresql/server/port/win32_msvc/sys/param.h
+%%PGHOME%%/include/postgresql/server/port/win32_msvc/sys/time.h
+%%PGHOME%%/include/postgresql/server/port/win32_msvc/unistd.h
+%%PGHOME%%/include/postgresql/server/port/win32_msvc/utime.h
+%%PGHOME%%/include/postgresql/server/portability/instr_time.h
+%%PGHOME%%/include/postgresql/server/postgres.h
+%%PGHOME%%/include/postgresql/server/postgres_ext.h
+%%PGHOME%%/include/postgresql/server/postgres_fe.h
+%%PGHOME%%/include/postgresql/server/postmaster/autovacuum.h
+%%PGHOME%%/include/postgresql/server/postmaster/bgwriter.h
+%%PGHOME%%/include/postgresql/server/postmaster/fork_process.h
+%%PGHOME%%/include/postgresql/server/postmaster/pgarch.h
+%%PGHOME%%/include/postgresql/server/postmaster/postmaster.h
+%%PGHOME%%/include/postgresql/server/postmaster/syslogger.h
+%%PGHOME%%/include/postgresql/server/postmaster/walwriter.h
+%%PGHOME%%/include/postgresql/server/regex/regcustom.h
+%%PGHOME%%/include/postgresql/server/regex/regerrs.h
+%%PGHOME%%/include/postgresql/server/regex/regex.h
+%%PGHOME%%/include/postgresql/server/regex/regguts.h
+%%PGHOME%%/include/postgresql/server/replication/walprotocol.h
+%%PGHOME%%/include/postgresql/server/replication/walreceiver.h
+%%PGHOME%%/include/postgresql/server/replication/walsender.h
+%%PGHOME%%/include/postgresql/server/rewrite/prs2lock.h
+%%PGHOME%%/include/postgresql/server/rewrite/rewriteDefine.h
+%%PGHOME%%/include/postgresql/server/rewrite/rewriteHandler.h
+%%PGHOME%%/include/postgresql/server/rewrite/rewriteManip.h
+%%PGHOME%%/include/postgresql/server/rewrite/rewriteRemove.h
+%%PGHOME%%/include/postgresql/server/rewrite/rewriteSupport.h
+%%PGHOME%%/include/postgresql/server/rusagestub.h
+%%PGHOME%%/include/postgresql/server/snowball/header.h
+%%PGHOME%%/include/postgresql/server/snowball/libstemmer/api.h
+%%PGHOME%%/include/postgresql/server/snowball/libstemmer/header.h
+%%PGHOME%%/include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_danish.h
+%%PGHOME%%/include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_dutch.h
+%%PGHOME%%/include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_english.h
+%%PGHOME%%/include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_finnish.h
+%%PGHOME%%/include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_french.h
+%%PGHOME%%/include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_german.h
+%%PGHOME%%/include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_hungarian.h
+%%PGHOME%%/include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_italian.h
+%%PGHOME%%/include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_norwegian.h
+%%PGHOME%%/include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_porter.h
+%%PGHOME%%/include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_portuguese.h
+%%PGHOME%%/include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_spanish.h
+%%PGHOME%%/include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_swedish.h
+%%PGHOME%%/include/postgresql/server/snowball/libstemmer/stem_ISO_8859_2_romanian.h
+%%PGHOME%%/include/postgresql/server/snowball/libstemmer/stem_KOI8_R_russian.h
+%%PGHOME%%/include/postgresql/server/snowball/libstemmer/stem_UTF_8_danish.h
+%%PGHOME%%/include/postgresql/server/snowball/libstemmer/stem_UTF_8_dutch.h
+%%PGHOME%%/include/postgresql/server/snowball/libstemmer/stem_UTF_8_english.h
+%%PGHOME%%/include/postgresql/server/snowball/libstemmer/stem_UTF_8_finnish.h
+%%PGHOME%%/include/postgresql/server/snowball/libstemmer/stem_UTF_8_french.h
+%%PGHOME%%/include/postgresql/server/snowball/libstemmer/stem_UTF_8_german.h
+%%PGHOME%%/include/postgresql/server/snowball/libstemmer/stem_UTF_8_hungarian.h
+%%PGHOME%%/include/postgresql/server/snowball/libstemmer/stem_UTF_8_italian.h
+%%PGHOME%%/include/postgresql/server/snowball/libstemmer/stem_UTF_8_norwegian.h
+%%PGHOME%%/include/postgresql/server/snowball/libstemmer/stem_UTF_8_porter.h
+%%PGHOME%%/include/postgresql/server/snowball/libstemmer/stem_UTF_8_portuguese.h
+%%PGHOME%%/include/postgresql/server/snowball/libstemmer/stem_UTF_8_romanian.h
+%%PGHOME%%/include/postgresql/server/snowball/libstemmer/stem_UTF_8_russian.h
+%%PGHOME%%/include/postgresql/server/snowball/libstemmer/stem_UTF_8_spanish.h
+%%PGHOME%%/include/postgresql/server/snowball/libstemmer/stem_UTF_8_swedish.h
+%%PGHOME%%/include/postgresql/server/snowball/libstemmer/stem_UTF_8_turkish.h
+%%PGHOME%%/include/postgresql/server/storage/backendid.h
+%%PGHOME%%/include/postgresql/server/storage/block.h
+%%PGHOME%%/include/postgresql/server/storage/buf.h
+%%PGHOME%%/include/postgresql/server/storage/buf_internals.h
+%%PGHOME%%/include/postgresql/server/storage/buffile.h
+%%PGHOME%%/include/postgresql/server/storage/bufmgr.h
+%%PGHOME%%/include/postgresql/server/storage/bufpage.h
+%%PGHOME%%/include/postgresql/server/storage/fd.h
+%%PGHOME%%/include/postgresql/server/storage/freespace.h
+%%PGHOME%%/include/postgresql/server/storage/fsm_internals.h
+%%PGHOME%%/include/postgresql/server/storage/indexfsm.h
+%%PGHOME%%/include/postgresql/server/storage/ipc.h
+%%PGHOME%%/include/postgresql/server/storage/item.h
+%%PGHOME%%/include/postgresql/server/storage/itemid.h
+%%PGHOME%%/include/postgresql/server/storage/itemptr.h
+%%PGHOME%%/include/postgresql/server/storage/large_object.h
+%%PGHOME%%/include/postgresql/server/storage/lmgr.h
+%%PGHOME%%/include/postgresql/server/storage/lock.h
+%%PGHOME%%/include/postgresql/server/storage/lwlock.h
+%%PGHOME%%/include/postgresql/server/storage/off.h
+%%PGHOME%%/include/postgresql/server/storage/pg_sema.h
+%%PGHOME%%/include/postgresql/server/storage/pg_shmem.h
+%%PGHOME%%/include/postgresql/server/storage/pmsignal.h
+%%PGHOME%%/include/postgresql/server/storage/pos.h
+%%PGHOME%%/include/postgresql/server/storage/proc.h
+%%PGHOME%%/include/postgresql/server/storage/procarray.h
+%%PGHOME%%/include/postgresql/server/storage/procsignal.h
+%%PGHOME%%/include/postgresql/server/storage/relfilenode.h
+%%PGHOME%%/include/postgresql/server/storage/s_lock.h
+%%PGHOME%%/include/postgresql/server/storage/shmem.h
+%%PGHOME%%/include/postgresql/server/storage/sinval.h
+%%PGHOME%%/include/postgresql/server/storage/sinvaladt.h
+%%PGHOME%%/include/postgresql/server/storage/smgr.h
+%%PGHOME%%/include/postgresql/server/storage/spin.h
+%%PGHOME%%/include/postgresql/server/storage/standby.h
+%%PGHOME%%/include/postgresql/server/tcop/dest.h
+%%PGHOME%%/include/postgresql/server/tcop/fastpath.h
+%%PGHOME%%/include/postgresql/server/tcop/pquery.h
+%%PGHOME%%/include/postgresql/server/tcop/tcopdebug.h
+%%PGHOME%%/include/postgresql/server/tcop/tcopprot.h
+%%PGHOME%%/include/postgresql/server/tcop/utility.h
+%%PGHOME%%/include/postgresql/server/tsearch/dicts/regis.h
+%%PGHOME%%/include/postgresql/server/tsearch/dicts/spell.h
+%%PGHOME%%/include/postgresql/server/tsearch/ts_cache.h
+%%PGHOME%%/include/postgresql/server/tsearch/ts_locale.h
+%%PGHOME%%/include/postgresql/server/tsearch/ts_public.h
+%%PGHOME%%/include/postgresql/server/tsearch/ts_type.h
+%%PGHOME%%/include/postgresql/server/tsearch/ts_utils.h
+%%PGHOME%%/include/postgresql/server/utils/acl.h
+%%PGHOME%%/include/postgresql/server/utils/array.h
+%%PGHOME%%/include/postgresql/server/utils/ascii.h
+%%PGHOME%%/include/postgresql/server/utils/attoptcache.h
+%%PGHOME%%/include/postgresql/server/utils/builtins.h
+%%PGHOME%%/include/postgresql/server/utils/bytea.h
+%%PGHOME%%/include/postgresql/server/utils/cash.h
+%%PGHOME%%/include/postgresql/server/utils/catcache.h
+%%PGHOME%%/include/postgresql/server/utils/combocid.h
+%%PGHOME%%/include/postgresql/server/utils/date.h
+%%PGHOME%%/include/postgresql/server/utils/datetime.h
+%%PGHOME%%/include/postgresql/server/utils/datum.h
+%%PGHOME%%/include/postgresql/server/utils/dynahash.h
+%%PGHOME%%/include/postgresql/server/utils/dynamic_loader.h
+%%PGHOME%%/include/postgresql/server/utils/elog.h
+%%PGHOME%%/include/postgresql/server/utils/errcodes.h
+%%PGHOME%%/include/postgresql/server/utils/fmgroids.h
+%%PGHOME%%/include/postgresql/server/utils/fmgrtab.h
+%%PGHOME%%/include/postgresql/server/utils/formatting.h
+%%PGHOME%%/include/postgresql/server/utils/geo_decls.h
+%%PGHOME%%/include/postgresql/server/utils/guc.h
+%%PGHOME%%/include/postgresql/server/utils/guc_tables.h
+%%PGHOME%%/include/postgresql/server/utils/help_config.h
+%%PGHOME%%/include/postgresql/server/utils/hsearch.h
+%%PGHOME%%/include/postgresql/server/utils/inet.h
+%%PGHOME%%/include/postgresql/server/utils/int8.h
+%%PGHOME%%/include/postgresql/server/utils/inval.h
+%%PGHOME%%/include/postgresql/server/utils/logtape.h
+%%PGHOME%%/include/postgresql/server/utils/lsyscache.h
+%%PGHOME%%/include/postgresql/server/utils/memutils.h
+%%PGHOME%%/include/postgresql/server/utils/nabstime.h
+%%PGHOME%%/include/postgresql/server/utils/numeric.h
+%%PGHOME%%/include/postgresql/server/utils/palloc.h
+%%PGHOME%%/include/postgresql/server/utils/pg_crc.h
+%%PGHOME%%/include/postgresql/server/utils/pg_locale.h
+%%PGHOME%%/include/postgresql/server/utils/pg_lzcompress.h
+%%PGHOME%%/include/postgresql/server/utils/pg_rusage.h
+%%PGHOME%%/include/postgresql/server/utils/plancache.h
+%%PGHOME%%/include/postgresql/server/utils/portal.h
+%%PGHOME%%/include/postgresql/server/utils/probes.h
+%%PGHOME%%/include/postgresql/server/utils/ps_status.h
+%%PGHOME%%/include/postgresql/server/utils/rbtree.h
+%%PGHOME%%/include/postgresql/server/utils/rel.h
+%%PGHOME%%/include/postgresql/server/utils/relcache.h
+%%PGHOME%%/include/postgresql/server/utils/relmapper.h
+%%PGHOME%%/include/postgresql/server/utils/resowner.h
+%%PGHOME%%/include/postgresql/server/utils/selfuncs.h
+%%PGHOME%%/include/postgresql/server/utils/snapmgr.h
+%%PGHOME%%/include/postgresql/server/utils/snapshot.h
+%%PGHOME%%/include/postgresql/server/utils/spccache.h
+%%PGHOME%%/include/postgresql/server/utils/syscache.h
+%%PGHOME%%/include/postgresql/server/utils/timestamp.h
+%%PGHOME%%/include/postgresql/server/utils/tqual.h
+%%PGHOME%%/include/postgresql/server/utils/tuplesort.h
+%%PGHOME%%/include/postgresql/server/utils/tuplestore.h
+%%PGHOME%%/include/postgresql/server/utils/typcache.h
+%%PGHOME%%/include/postgresql/server/utils/tzparser.h
+%%PGHOME%%/include/postgresql/server/utils/uuid.h
+%%PGHOME%%/include/postgresql/server/utils/varbit.h
+%%PGHOME%%/include/postgresql/server/utils/xml.h
+%%PGHOME%%/include/postgresql/server/windowapi.h
+%%PGHOME%%/include/sqlda-compat.h
+%%PGHOME%%/include/sqlda-native.h
+%%PGHOME%%/include/sqlda.h
+ at dirrm %%PGHOME%%/include/postgresql/server/utils
+ at dirrm %%PGHOME%%/include/postgresql/server/tsearch/dicts
+ at dirrm %%PGHOME%%/include/postgresql/server/tsearch
+ at dirrm %%PGHOME%%/include/postgresql/server/tcop
+ at dirrm %%PGHOME%%/include/postgresql/server/storage
+ at dirrm %%PGHOME%%/include/postgresql/server/snowball/libstemmer
+ at dirrm %%PGHOME%%/include/postgresql/server/snowball
+ at dirrm %%PGHOME%%/include/postgresql/server/rewrite
+ at dirrm %%PGHOME%%/include/postgresql/server/replication
+ at dirrm %%PGHOME%%/include/postgresql/server/regex
+ at dirrm %%PGHOME%%/include/postgresql/server/postmaster
+ at dirrm %%PGHOME%%/include/postgresql/server/portability
+ at dirrm %%PGHOME%%/include/postgresql/server/port/win32_msvc/sys
+ at dirrm %%PGHOME%%/include/postgresql/server/port/win32_msvc
+ at dirrm %%PGHOME%%/include/postgresql/server/port/win32/sys
+ at dirrm %%PGHOME%%/include/postgresql/server/port/win32/netinet
+ at dirrm %%PGHOME%%/include/postgresql/server/port/win32/arpa
+ at dirrm %%PGHOME%%/include/postgresql/server/port/win32
+ at dirrm %%PGHOME%%/include/postgresql/server/port
+ at dirrm %%PGHOME%%/include/postgresql/server/parser
+ at dirrm %%PGHOME%%/include/postgresql/server/optimizer
+ at dirrm %%PGHOME%%/include/postgresql/server/nodes
+ at dirrm %%PGHOME%%/include/postgresql/server/mb
+ at dirrm %%PGHOME%%/include/postgresql/server/libpq
+ at dirrm %%PGHOME%%/include/postgresql/server/lib
+ at dirrm %%PGHOME%%/include/postgresql/server/foreign
+ at dirrm %%PGHOME%%/include/postgresql/server/executor
+ at dirrm %%PGHOME%%/include/postgresql/server/commands
+ at dirrm %%PGHOME%%/include/postgresql/server/catalog
+ at dirrm %%PGHOME%%/include/postgresql/server/bootstrap
+ at dirrm %%PGHOME%%/include/postgresql/server/access
+ at dirrm %%PGHOME%%/include/postgresql/server
+%%PGHOME%%/include/libpq/libpq-fs.h
+ at dirrm %%PGHOME%%/include/libpq
+%%PGHOME%%/include/postgresql/internal/libpq/pqcomm.h
+ at dirrm %%PGHOME%%/include/postgresql/internal/libpq
+%%PGHOME%%/include/postgresql/informix/esql/datetime.h
+%%PGHOME%%/include/postgresql/informix/esql/decimal.h
+%%PGHOME%%/include/postgresql/informix/esql/sqltypes.h
+ at dirrm %%PGHOME%%/include/postgresql/informix/esql
+ at dirrm %%PGHOME%%/include/postgresql/informix
+%%PGHOME%%/include/postgresql/internal/c.h
+%%PGHOME%%/include/postgresql/internal/libpq-int.h
+%%PGHOME%%/include/postgresql/internal/postgres_fe.h
+%%PGHOME%%/include/postgresql/internal/port.h
+%%PGHOME%%/include/postgresql/internal/pqexpbuffer.h
+ at dirrm %%PGHOME%%/include/postgresql/internal
+ at dirrm %%PGHOME%%/include/postgresql
+%%PGHOME%%/include/ecpg_informix.h
+%%PGHOME%%/include/ecpgerrno.h
+%%PGHOME%%/include/ecpglib.h
+%%PGHOME%%/include/ecpgtype.h
+%%PGHOME%%/include/libpq-fe.h
+%%PGHOME%%/include/pg_config.h
+%%PGHOME%%/include/pg_config_manual.h
+%%PGHOME%%/include/pg_config_os.h
+%%PGHOME%%/include/pgtypes_date.h
+%%PGHOME%%/include/pgtypes_error.h
+%%PGHOME%%/include/pgtypes_interval.h
+%%PGHOME%%/include/pgtypes_numeric.h
+%%PGHOME%%/include/pgtypes_timestamp.h
+%%PGHOME%%/include/postgres_ext.h
+%%PGHOME%%/include/sql3types.h
+%%PGHOME%%/include/sqlca.h
+%%PGHOME%%/lib/libecpg.a
+%%PGHOME%%/lib/libecpg.so
+%%PGHOME%%/lib/libecpg.so.6
+%%PGHOME%%/lib/libecpg_compat.a
+%%PGHOME%%/lib/libecpg_compat.so
+%%PGHOME%%/lib/libecpg_compat.so.3
+%%PGHOME%%/lib/libpgtypes.so.3
+%%PGHOME%%/lib/libpq.a
+%%PGHOME%%/lib/libpq.so
+%%PGHOME%%/lib/libpq.so.5
+%%PGHOME%%/lib/libpgtypes.a
+%%PGHOME%%/lib/libpgtypes.so
+%%PGHOME%%/lib/postgresql/pgxs/config/install-sh
+%%PGHOME%%/lib/postgresql/pgxs/src/makefiles/pgxs.mk
+%%PGHOME%%/lib/postgresql/pgxs/src/Makefile.global
+%%PGHOME%%/lib/postgresql/pgxs/src/Makefile.port
+%%PGHOME%%/lib/postgresql/pgxs/src/Makefile.shlib
+%%PGHOME%%/lib/postgresql/pgxs/src/nls-global.mk
+ at dirrm %%PGHOME%%/lib/postgresql/pgxs/src/makefiles
+ at dirrm %%PGHOME%%/lib/postgresql/pgxs/config
+ at dirrm %%PGHOME%%/lib/postgresql/pgxs/src
+ at dirrm %%PGHOME%%/lib/postgresql/pgxs
+ at dirrm %%PGHOME%%/lib/postgresql
+%%DOCSDIR%%/README-client
+ at dirrmtry %%DOCSDIR%%
+%%PGHOME%%/share/postgresql/pg_service.conf.sample
+%%PGHOME%%/share/postgresql/psqlrc.sample
+ at dirrmtry %%PGHOME%%/share/postgresql
+%%PGHOME%%/share/locale/cs/LC_MESSAGES/libpq5-9.0.mo
+%%PGHOME%%/share/locale/cs/LC_MESSAGES/pgscripts-9.0.mo
+%%PGHOME%%/share/locale/cs/LC_MESSAGES/psql-9.0.mo
+%%PGHOME%%/share/locale/de/LC_MESSAGES/ecpg-9.0.mo
+%%PGHOME%%/share/locale/de/LC_MESSAGES/ecpglib6-9.0.mo
+%%PGHOME%%/share/locale/de/LC_MESSAGES/libpq5-9.0.mo
+%%PGHOME%%/share/locale/de/LC_MESSAGES/pg_config-9.0.mo
+%%PGHOME%%/share/locale/de/LC_MESSAGES/pg_dump-9.0.mo
+%%PGHOME%%/share/locale/de/LC_MESSAGES/pgscripts-9.0.mo
+%%PGHOME%%/share/locale/de/LC_MESSAGES/psql-9.0.mo
+%%PGHOME%%/share/locale/es/LC_MESSAGES/ecpg-9.0.mo
+%%PGHOME%%/share/locale/es/LC_MESSAGES/ecpglib6-9.0.mo
+%%PGHOME%%/share/locale/es/LC_MESSAGES/libpq5-9.0.mo
+%%PGHOME%%/share/locale/es/LC_MESSAGES/pg_config-9.0.mo
+%%PGHOME%%/share/locale/es/LC_MESSAGES/pg_dump-9.0.mo
+%%PGHOME%%/share/locale/es/LC_MESSAGES/pgscripts-9.0.mo
+%%PGHOME%%/share/locale/es/LC_MESSAGES/psql-9.0.mo
+%%PGHOME%%/share/locale/fr/LC_MESSAGES/ecpg-9.0.mo
+%%PGHOME%%/share/locale/fr/LC_MESSAGES/ecpglib6-9.0.mo
+%%PGHOME%%/share/locale/fr/LC_MESSAGES/libpq5-9.0.mo
+%%PGHOME%%/share/locale/fr/LC_MESSAGES/pg_config-9.0.mo
+%%PGHOME%%/share/locale/fr/LC_MESSAGES/pg_dump-9.0.mo
+%%PGHOME%%/share/locale/fr/LC_MESSAGES/pgscripts-9.0.mo
+%%PGHOME%%/share/locale/fr/LC_MESSAGES/psql-9.0.mo
+%%PGHOME%%/share/locale/it/LC_MESSAGES/ecpg-9.0.mo
+%%PGHOME%%/share/locale/it/LC_MESSAGES/ecpglib6-9.0.mo
+%%PGHOME%%/share/locale/it/LC_MESSAGES/libpq5-9.0.mo
+%%PGHOME%%/share/locale/it/LC_MESSAGES/pg_config-9.0.mo
+%%PGHOME%%/share/locale/it/LC_MESSAGES/pg_dump-9.0.mo
+%%PGHOME%%/share/locale/it/LC_MESSAGES/pgscripts-9.0.mo
+%%PGHOME%%/share/locale/ja/LC_MESSAGES/ecpg-9.0.mo
+%%PGHOME%%/share/locale/ja/LC_MESSAGES/ecpglib6-9.0.mo
+%%PGHOME%%/share/locale/ja/LC_MESSAGES/libpq5-9.0.mo
+%%PGHOME%%/share/locale/ja/LC_MESSAGES/pg_config-9.0.mo
+%%PGHOME%%/share/locale/ja/LC_MESSAGES/pg_dump-9.0.mo
+%%PGHOME%%/share/locale/ja/LC_MESSAGES/pgscripts-9.0.mo
+%%PGHOME%%/share/locale/ja/LC_MESSAGES/psql-9.0.mo
+%%PGHOME%%/share/locale/ko/LC_MESSAGES/libpq5-9.0.mo
+%%PGHOME%%/share/locale/ko/LC_MESSAGES/pg_config-9.0.mo
+%%PGHOME%%/share/locale/ko/LC_MESSAGES/pgscripts-9.0.mo
+%%PGHOME%%/share/locale/nb/LC_MESSAGES/pg_config-9.0.mo
+%%PGHOME%%/share/locale/pt_BR/LC_MESSAGES/ecpg-9.0.mo
+%%PGHOME%%/share/locale/pt_BR/LC_MESSAGES/ecpglib6-9.0.mo
+%%PGHOME%%/share/locale/pt_BR/LC_MESSAGES/libpq5-9.0.mo
+%%PGHOME%%/share/locale/pt_BR/LC_MESSAGES/pg_config-9.0.mo
+%%PGHOME%%/share/locale/pt_BR/LC_MESSAGES/pg_dump-9.0.mo
+%%PGHOME%%/share/locale/pt_BR/LC_MESSAGES/pgscripts-9.0.mo
+%%PGHOME%%/share/locale/pt_BR/LC_MESSAGES/psql-9.0.mo
+%%PGHOME%%/share/locale/ro/LC_MESSAGES/pg_config-9.0.mo
+%%PGHOME%%/share/locale/ro/LC_MESSAGES/pgscripts-9.0.mo
+%%PGHOME%%/share/locale/ru/LC_MESSAGES/libpq5-9.0.mo
+%%PGHOME%%/share/locale/ru/LC_MESSAGES/pg_config-9.0.mo
+%%PGHOME%%/share/locale/sv/LC_MESSAGES/libpq5-9.0.mo
+%%PGHOME%%/share/locale/sv/LC_MESSAGES/pg_config-9.0.mo
+%%PGHOME%%/share/locale/sv/LC_MESSAGES/pg_dump-9.0.mo
+%%PGHOME%%/share/locale/sv/LC_MESSAGES/pgscripts-9.0.mo
+%%PGHOME%%/share/locale/sv/LC_MESSAGES/psql-9.0.mo
+%%PGHOME%%/share/locale/ta/LC_MESSAGES/libpq5-9.0.mo
+%%PGHOME%%/share/locale/ta/LC_MESSAGES/pg_config-9.0.mo
+%%PGHOME%%/share/locale/ta/LC_MESSAGES/pgscripts-9.0.mo
+%%PGHOME%%/share/locale/tr/LC_MESSAGES/ecpg-9.0.mo
+%%PGHOME%%/share/locale/tr/LC_MESSAGES/ecpglib6-9.0.mo
+%%PGHOME%%/share/locale/tr/LC_MESSAGES/libpq5-9.0.mo
+%%PGHOME%%/share/locale/tr/LC_MESSAGES/pg_config-9.0.mo
+%%PGHOME%%/share/locale/tr/LC_MESSAGES/pg_dump-9.0.mo
+%%PGHOME%%/share/locale/tr/LC_MESSAGES/pgscripts-9.0.mo
+%%PGHOME%%/share/locale/tr/LC_MESSAGES/psql-9.0.mo
+%%PGHOME%%/share/locale/zh_CN/LC_MESSAGES/ecpg-9.0.mo
+%%PGHOME%%/share/locale/zh_CN/LC_MESSAGES/ecpglib6-9.0.mo
+%%PGHOME%%/share/locale/zh_CN/LC_MESSAGES/libpq5-9.0.mo
+%%PGHOME%%/share/locale/zh_CN/LC_MESSAGES/pg_config-9.0.mo
+%%PGHOME%%/share/locale/zh_CN/LC_MESSAGES/pg_dump-9.0.mo
+%%PGHOME%%/share/locale/zh_CN/LC_MESSAGES/pgscripts-9.0.mo
diff -ruN ports/databases/postgresql90-server/pkg-plist-server ../20100922/databases/postgresql90-server/pkg-plist-server
--- ports/databases/postgresql90-server/pkg-plist-server	2010-09-20 17:46:46.000000000 +0400
+++ ../20100922/databases/postgresql90-server/pkg-plist-server	2010-09-27 11:37:04.156652146 +0400
@@ -1,750 +1,750 @@
-bin/initdb
-bin/pg_controldata
-bin/pg_ctl
-bin/pg_resetxlog
-bin/postmaster
-bin/postgres
-etc/periodic/daily/502.pgsql
-lib/libpgport.a
-lib/postgresql/ascii_and_mic.so
-lib/postgresql/cyrillic_and_mic.so
-lib/postgresql/dict_snowball.so
-lib/postgresql/euc_cn_and_mic.so
-lib/postgresql/euc2004_sjis2004.so
-lib/postgresql/euc_jp_and_sjis.so
-lib/postgresql/euc_kr_and_mic.so
-lib/postgresql/euc_tw_and_big5.so
-lib/postgresql/latin2_and_win1250.so
-lib/postgresql/latin_and_mic.so
-lib/postgresql/plpgsql.so
-lib/postgresql/utf8_and_ascii.so
-lib/postgresql/utf8_and_big5.so
-lib/postgresql/utf8_and_cyrillic.so
-lib/postgresql/utf8_and_euc_cn.so
-lib/postgresql/utf8_and_euc_jp.so
-lib/postgresql/utf8_and_euc_kr.so
-lib/postgresql/utf8_and_euc_tw.so
-lib/postgresql/utf8_and_euc2004.so
-lib/postgresql/utf8_and_gb18030.so
-lib/postgresql/utf8_and_gbk.so
-lib/postgresql/utf8_and_iso8859.so
-lib/postgresql/utf8_and_iso8859_1.so
-lib/postgresql/utf8_and_johab.so
-lib/postgresql/utf8_and_sjis.so
-lib/postgresql/utf8_and_sjis2004.so
-lib/postgresql/utf8_and_uhc.so
-lib/postgresql/utf8_and_win.so
+%%PGHOME%%/bin/initdb
+%%PGHOME%%/bin/pg_controldata
+%%PGHOME%%/bin/pg_ctl
+%%PGHOME%%/bin/pg_resetxlog
+%%PGHOME%%/bin/postmaster
+%%PGHOME%%/bin/postgres
+etc/periodic/daily/502.pgsql90
+%%PGHOME%%/lib/libpgport.a
+%%PGHOME%%/lib/ascii_and_mic.so
+%%PGHOME%%/lib/cyrillic_and_mic.so
+%%PGHOME%%/lib/dict_snowball.so
+%%PGHOME%%/lib/euc_cn_and_mic.so
+%%PGHOME%%/lib/euc2004_sjis2004.so
+%%PGHOME%%/lib/euc_jp_and_sjis.so
+%%PGHOME%%/lib/euc_kr_and_mic.so
+%%PGHOME%%/lib/euc_tw_and_big5.so
+%%PGHOME%%/lib/latin2_and_win1250.so
+%%PGHOME%%/lib/latin_and_mic.so
+%%PGHOME%%/lib/plpgsql.so
+%%PGHOME%%/lib/utf8_and_ascii.so
+%%PGHOME%%/lib/utf8_and_big5.so
+%%PGHOME%%/lib/utf8_and_cyrillic.so
+%%PGHOME%%/lib/utf8_and_euc_cn.so
+%%PGHOME%%/lib/utf8_and_euc_jp.so
+%%PGHOME%%/lib/utf8_and_euc_kr.so
+%%PGHOME%%/lib/utf8_and_euc_tw.so
+%%PGHOME%%/lib/utf8_and_euc2004.so
+%%PGHOME%%/lib/utf8_and_gb18030.so
+%%PGHOME%%/lib/utf8_and_gbk.so
+%%PGHOME%%/lib/utf8_and_iso8859.so
+%%PGHOME%%/lib/utf8_and_iso8859_1.so
+%%PGHOME%%/lib/utf8_and_johab.so
+%%PGHOME%%/lib/utf8_and_sjis.so
+%%PGHOME%%/lib/utf8_and_sjis2004.so
+%%PGHOME%%/lib/utf8_and_uhc.so
+%%PGHOME%%/lib/utf8_and_win.so
 %%DOCSDIR%%/README-server
 @dirrmtry %%DOCSDIR%%
-share/postgresql/conversion_create.sql
-share/postgresql/information_schema.sql
-share/postgresql/pg_hba.conf.sample
-share/postgresql/pg_ident.conf.sample
-share/postgresql/postgres.bki
-share/postgresql/postgres.description
-share/postgresql/postgresql.conf.sample
-share/postgresql/recovery.conf.sample
-share/postgresql/sql_features.txt
-share/postgresql/system_views.sql
-%%GETTEXT%%share/locale/cs/LC_MESSAGES/initdb-9.0.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/initdb-9.0.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/pg_controldata-9.0.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/pg_ctl-9.0.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/pg_resetxlog-9.0.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/plpgsql-9.0.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/postgres-9.0.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/initdb-9.0.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/pg_controldata-9.0.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/pg_ctl-9.0.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/pg_resetxlog-9.0.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/plpgsql-9.0.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/postgres-9.0.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/initdb-9.0.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/pg_controldata-9.0.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/pg_ctl-9.0.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/pg_resetxlog-9.0.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/plpgsql-9.0.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/postgres-9.0.mo
-%%GETTEXT%%share/locale/it/LC_MESSAGES/initdb-9.0.mo
-%%GETTEXT%%share/locale/it/LC_MESSAGES/pg_controldata-9.0.mo
-%%GETTEXT%%share/locale/it/LC_MESSAGES/pg_ctl-9.0.mo
-%%GETTEXT%%share/locale/it/LC_MESSAGES/pg_resetxlog-9.0.mo
-%%GETTEXT%%share/locale/it/LC_MESSAGES/plpgsql-9.0.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/initdb-9.0.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/pg_controldata-9.0.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/pg_ctl-9.0.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/pg_resetxlog-9.0.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/plpgsql-9.0.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/postgres-9.0.mo
-%%GETTEXT%%share/locale/ko/LC_MESSAGES/pg_controldata-9.0.mo
-%%GETTEXT%%share/locale/ko/LC_MESSAGES/pg_ctl-9.0.mo
-%%GETTEXT%%share/locale/ko/LC_MESSAGES/pg_resetxlog-9.0.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/initdb-9.0.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/pg_controldata-9.0.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/pg_ctl-9.0.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/pg_resetxlog-9.0.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/plpgsql-9.0.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/postgres-9.0.mo
-%%GETTEXT%%share/locale/ro/LC_MESSAGES/pg_controldata-9.0.mo
-%%GETTEXT%%share/locale/ro/LC_MESSAGES/pg_resetxlog-9.0.mo
-%%GETTEXT%%share/locale/ro/LC_MESSAGES/plpgsql-9.0.mo
-%%GETTEXT%%share/locale/ru/LC_MESSAGES/initdb-9.0.mo
-%%GETTEXT%%share/locale/ru/LC_MESSAGES/pg_ctl-9.0.mo
-%%GETTEXT%%share/locale/ru/LC_MESSAGES/pg_resetxlog-9.0.mo
-%%GETTEXT%%share/locale/sv/LC_MESSAGES/initdb-9.0.mo
-%%GETTEXT%%share/locale/sv/LC_MESSAGES/pg_controldata-9.0.mo
-%%GETTEXT%%share/locale/sv/LC_MESSAGES/pg_ctl-9.0.mo
-%%GETTEXT%%share/locale/sv/LC_MESSAGES/pg_resetxlog-9.0.mo
-%%GETTEXT%%share/locale/ta/LC_MESSAGES/initdb-9.0.mo
-%%GETTEXT%%share/locale/ta/LC_MESSAGES/pg_controldata-9.0.mo
-%%GETTEXT%%share/locale/ta/LC_MESSAGES/pg_ctl-9.0.mo
-%%GETTEXT%%share/locale/ta/LC_MESSAGES/pg_resetxlog-9.0.mo
-%%GETTEXT%%share/locale/tr/LC_MESSAGES/initdb-9.0.mo
-%%GETTEXT%%share/locale/tr/LC_MESSAGES/pg_controldata-9.0.mo
-%%GETTEXT%%share/locale/tr/LC_MESSAGES/pg_ctl-9.0.mo
-%%GETTEXT%%share/locale/tr/LC_MESSAGES/pg_resetxlog-9.0.mo
-%%GETTEXT%%share/locale/tr/LC_MESSAGES/plpgsql-9.0.mo
-%%GETTEXT%%share/locale/tr/LC_MESSAGES/postgres-9.0.mo
-%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/initdb-9.0.mo
-%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/pg_controldata-9.0.mo
-%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/pg_ctl-9.0.mo
-%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/pg_resetxlog-9.0.mo
-share/postgresql/postgres.shdescription
-share/postgresql/snowball_create.sql
-%%TZDATA%%share/postgresql/timezone/Africa/Abidjan
-%%TZDATA%%share/postgresql/timezone/Africa/Accra
-%%TZDATA%%share/postgresql/timezone/Africa/Addis_Ababa
-%%TZDATA%%share/postgresql/timezone/Africa/Algiers
-%%TZDATA%%share/postgresql/timezone/Africa/Asmara
-%%TZDATA%%share/postgresql/timezone/Africa/Asmera
-%%TZDATA%%share/postgresql/timezone/Africa/Bamako
-%%TZDATA%%share/postgresql/timezone/Africa/Bangui
-%%TZDATA%%share/postgresql/timezone/Africa/Banjul
-%%TZDATA%%share/postgresql/timezone/Africa/Bissau
-%%TZDATA%%share/postgresql/timezone/Africa/Blantyre
-%%TZDATA%%share/postgresql/timezone/Africa/Brazzaville
-%%TZDATA%%share/postgresql/timezone/Africa/Bujumbura
-%%TZDATA%%share/postgresql/timezone/Africa/Cairo
-%%TZDATA%%share/postgresql/timezone/Africa/Casablanca
-%%TZDATA%%share/postgresql/timezone/Africa/Ceuta
-%%TZDATA%%share/postgresql/timezone/Africa/Conakry
-%%TZDATA%%share/postgresql/timezone/Africa/Dakar
-%%TZDATA%%share/postgresql/timezone/Africa/Dar_es_Salaam
-%%TZDATA%%share/postgresql/timezone/Africa/Djibouti
-%%TZDATA%%share/postgresql/timezone/Africa/Douala
-%%TZDATA%%share/postgresql/timezone/Africa/El_Aaiun
-%%TZDATA%%share/postgresql/timezone/Africa/Freetown
-%%TZDATA%%share/postgresql/timezone/Africa/Gaborone
-%%TZDATA%%share/postgresql/timezone/Africa/Harare
-%%TZDATA%%share/postgresql/timezone/Africa/Johannesburg
-%%TZDATA%%share/postgresql/timezone/Africa/Kampala
-%%TZDATA%%share/postgresql/timezone/Africa/Khartoum
-%%TZDATA%%share/postgresql/timezone/Africa/Kigali
-%%TZDATA%%share/postgresql/timezone/Africa/Kinshasa
-%%TZDATA%%share/postgresql/timezone/Africa/Lagos
-%%TZDATA%%share/postgresql/timezone/Africa/Libreville
-%%TZDATA%%share/postgresql/timezone/Africa/Lome
-%%TZDATA%%share/postgresql/timezone/Africa/Luanda
-%%TZDATA%%share/postgresql/timezone/Africa/Lubumbashi
-%%TZDATA%%share/postgresql/timezone/Africa/Lusaka
-%%TZDATA%%share/postgresql/timezone/Africa/Malabo
-%%TZDATA%%share/postgresql/timezone/Africa/Maputo
-%%TZDATA%%share/postgresql/timezone/Africa/Maseru
-%%TZDATA%%share/postgresql/timezone/Africa/Mbabane
-%%TZDATA%%share/postgresql/timezone/Africa/Mogadishu
-%%TZDATA%%share/postgresql/timezone/Africa/Monrovia
-%%TZDATA%%share/postgresql/timezone/Africa/Nairobi
-%%TZDATA%%share/postgresql/timezone/Africa/Ndjamena
-%%TZDATA%%share/postgresql/timezone/Africa/Niamey
-%%TZDATA%%share/postgresql/timezone/Africa/Nouakchott
-%%TZDATA%%share/postgresql/timezone/Africa/Ouagadougou
-%%TZDATA%%share/postgresql/timezone/Africa/Porto-Novo
-%%TZDATA%%share/postgresql/timezone/Africa/Sao_Tome
-%%TZDATA%%share/postgresql/timezone/Africa/Timbuktu
-%%TZDATA%%share/postgresql/timezone/Africa/Tripoli
-%%TZDATA%%share/postgresql/timezone/Africa/Tunis
-%%TZDATA%%share/postgresql/timezone/Africa/Windhoek
-%%TZDATA%%share/postgresql/timezone/America/Adak
-%%TZDATA%%share/postgresql/timezone/America/Anchorage
-%%TZDATA%%share/postgresql/timezone/America/Anguilla
-%%TZDATA%%share/postgresql/timezone/America/Antigua
-%%TZDATA%%share/postgresql/timezone/America/Araguaina
-%%TZDATA%%share/postgresql/timezone/America/Argentina/Buenos_Aires
-%%TZDATA%%share/postgresql/timezone/America/Argentina/Catamarca
-%%TZDATA%%share/postgresql/timezone/America/Argentina/ComodRivadavia
-%%TZDATA%%share/postgresql/timezone/America/Argentina/Cordoba
-%%TZDATA%%share/postgresql/timezone/America/Argentina/Jujuy
-%%TZDATA%%share/postgresql/timezone/America/Argentina/La_Rioja
-%%TZDATA%%share/postgresql/timezone/America/Argentina/Mendoza
-%%TZDATA%%share/postgresql/timezone/America/Argentina/Rio_Gallegos
-%%TZDATA%%share/postgresql/timezone/America/Argentina/Salta
-%%TZDATA%%share/postgresql/timezone/America/Argentina/San_Juan
-%%TZDATA%%share/postgresql/timezone/America/Argentina/San_Luis
-%%TZDATA%%share/postgresql/timezone/America/Argentina/Tucuman
-%%TZDATA%%share/postgresql/timezone/America/Argentina/Ushuaia
-%%TZDATA%%share/postgresql/timezone/America/Aruba
-%%TZDATA%%share/postgresql/timezone/America/Asuncion
-%%TZDATA%%share/postgresql/timezone/America/Atikokan
-%%TZDATA%%share/postgresql/timezone/America/Atka
-%%TZDATA%%share/postgresql/timezone/America/Bahia
-%%TZDATA%%share/postgresql/timezone/America/Bahia_Banderas
-%%TZDATA%%share/postgresql/timezone/America/Barbados
-%%TZDATA%%share/postgresql/timezone/America/Belem
-%%TZDATA%%share/postgresql/timezone/America/Belize
-%%TZDATA%%share/postgresql/timezone/America/Blanc-Sablon
-%%TZDATA%%share/postgresql/timezone/America/Boa_Vista
-%%TZDATA%%share/postgresql/timezone/America/Bogota
-%%TZDATA%%share/postgresql/timezone/America/Boise
-%%TZDATA%%share/postgresql/timezone/America/Buenos_Aires
-%%TZDATA%%share/postgresql/timezone/America/Cambridge_Bay
-%%TZDATA%%share/postgresql/timezone/America/Campo_Grande
-%%TZDATA%%share/postgresql/timezone/America/Cancun
-%%TZDATA%%share/postgresql/timezone/America/Caracas
-%%TZDATA%%share/postgresql/timezone/America/Catamarca
-%%TZDATA%%share/postgresql/timezone/America/Cayenne
-%%TZDATA%%share/postgresql/timezone/America/Cayman
-%%TZDATA%%share/postgresql/timezone/America/Chicago
-%%TZDATA%%share/postgresql/timezone/America/Chihuahua
-%%TZDATA%%share/postgresql/timezone/America/Coral_Harbour
-%%TZDATA%%share/postgresql/timezone/America/Cordoba
-%%TZDATA%%share/postgresql/timezone/America/Costa_Rica
-%%TZDATA%%share/postgresql/timezone/America/Cuiaba
-%%TZDATA%%share/postgresql/timezone/America/Curacao
-%%TZDATA%%share/postgresql/timezone/America/Danmarkshavn
-%%TZDATA%%share/postgresql/timezone/America/Dawson
-%%TZDATA%%share/postgresql/timezone/America/Dawson_Creek
-%%TZDATA%%share/postgresql/timezone/America/Denver
-%%TZDATA%%share/postgresql/timezone/America/Detroit
-%%TZDATA%%share/postgresql/timezone/America/Dominica
-%%TZDATA%%share/postgresql/timezone/America/Edmonton
-%%TZDATA%%share/postgresql/timezone/America/Eirunepe
-%%TZDATA%%share/postgresql/timezone/America/El_Salvador
-%%TZDATA%%share/postgresql/timezone/America/Ensenada
-%%TZDATA%%share/postgresql/timezone/America/Fort_Wayne
-%%TZDATA%%share/postgresql/timezone/America/Fortaleza
-%%TZDATA%%share/postgresql/timezone/America/Glace_Bay
-%%TZDATA%%share/postgresql/timezone/America/Godthab
-%%TZDATA%%share/postgresql/timezone/America/Goose_Bay
-%%TZDATA%%share/postgresql/timezone/America/Grand_Turk
-%%TZDATA%%share/postgresql/timezone/America/Grenada
-%%TZDATA%%share/postgresql/timezone/America/Guadeloupe
-%%TZDATA%%share/postgresql/timezone/America/Guatemala
-%%TZDATA%%share/postgresql/timezone/America/Guayaquil
-%%TZDATA%%share/postgresql/timezone/America/Guyana
-%%TZDATA%%share/postgresql/timezone/America/Halifax
-%%TZDATA%%share/postgresql/timezone/America/Havana
-%%TZDATA%%share/postgresql/timezone/America/Hermosillo
-%%TZDATA%%share/postgresql/timezone/America/Indiana/Indianapolis
-%%TZDATA%%share/postgresql/timezone/America/Indiana/Knox
-%%TZDATA%%share/postgresql/timezone/America/Indiana/Marengo
-%%TZDATA%%share/postgresql/timezone/America/Indiana/Petersburg
-%%TZDATA%%share/postgresql/timezone/America/Indiana/Tell_City
-%%TZDATA%%share/postgresql/timezone/America/Indiana/Vevay
-%%TZDATA%%share/postgresql/timezone/America/Indiana/Vincennes
-%%TZDATA%%share/postgresql/timezone/America/Indiana/Winamac
-%%TZDATA%%share/postgresql/timezone/America/Indianapolis
-%%TZDATA%%share/postgresql/timezone/America/Inuvik
-%%TZDATA%%share/postgresql/timezone/America/Iqaluit
-%%TZDATA%%share/postgresql/timezone/America/Jamaica
-%%TZDATA%%share/postgresql/timezone/America/Jujuy
-%%TZDATA%%share/postgresql/timezone/America/Juneau
-%%TZDATA%%share/postgresql/timezone/America/Kentucky/Louisville
-%%TZDATA%%share/postgresql/timezone/America/Kentucky/Monticello
-%%TZDATA%%share/postgresql/timezone/America/Knox_IN
-%%TZDATA%%share/postgresql/timezone/America/La_Paz
-%%TZDATA%%share/postgresql/timezone/America/Lima
-%%TZDATA%%share/postgresql/timezone/America/Los_Angeles
-%%TZDATA%%share/postgresql/timezone/America/Louisville
-%%TZDATA%%share/postgresql/timezone/America/Maceio
-%%TZDATA%%share/postgresql/timezone/America/Managua
-%%TZDATA%%share/postgresql/timezone/America/Manaus
-%%TZDATA%%share/postgresql/timezone/America/Marigot
-%%TZDATA%%share/postgresql/timezone/America/Martinique
-%%TZDATA%%share/postgresql/timezone/America/Matamoros
-%%TZDATA%%share/postgresql/timezone/America/Mazatlan
-%%TZDATA%%share/postgresql/timezone/America/Mendoza
-%%TZDATA%%share/postgresql/timezone/America/Menominee
-%%TZDATA%%share/postgresql/timezone/America/Merida
-%%TZDATA%%share/postgresql/timezone/America/Mexico_City
-%%TZDATA%%share/postgresql/timezone/America/Miquelon
-%%TZDATA%%share/postgresql/timezone/America/Moncton
-%%TZDATA%%share/postgresql/timezone/America/Monterrey
-%%TZDATA%%share/postgresql/timezone/America/Montevideo
-%%TZDATA%%share/postgresql/timezone/America/Montreal
-%%TZDATA%%share/postgresql/timezone/America/Montserrat
-%%TZDATA%%share/postgresql/timezone/America/Nassau
-%%TZDATA%%share/postgresql/timezone/America/New_York
-%%TZDATA%%share/postgresql/timezone/America/Nipigon
-%%TZDATA%%share/postgresql/timezone/America/Nome
-%%TZDATA%%share/postgresql/timezone/America/Noronha
-%%TZDATA%%share/postgresql/timezone/America/North_Dakota/Center
-%%TZDATA%%share/postgresql/timezone/America/North_Dakota/New_Salem
-%%TZDATA%%share/postgresql/timezone/America/Ojinaga
-%%TZDATA%%share/postgresql/timezone/America/Panama
-%%TZDATA%%share/postgresql/timezone/America/Pangnirtung
-%%TZDATA%%share/postgresql/timezone/America/Paramaribo
-%%TZDATA%%share/postgresql/timezone/America/Phoenix
-%%TZDATA%%share/postgresql/timezone/America/Port-au-Prince
-%%TZDATA%%share/postgresql/timezone/America/Port_of_Spain
-%%TZDATA%%share/postgresql/timezone/America/Porto_Acre
-%%TZDATA%%share/postgresql/timezone/America/Porto_Velho
-%%TZDATA%%share/postgresql/timezone/America/Puerto_Rico
-%%TZDATA%%share/postgresql/timezone/America/Rainy_River
-%%TZDATA%%share/postgresql/timezone/America/Rankin_Inlet
-%%TZDATA%%share/postgresql/timezone/America/Recife
-%%TZDATA%%share/postgresql/timezone/America/Regina
-%%TZDATA%%share/postgresql/timezone/America/Resolute
-%%TZDATA%%share/postgresql/timezone/America/Rio_Branco
-%%TZDATA%%share/postgresql/timezone/America/Rosario
-%%TZDATA%%share/postgresql/timezone/America/Santa_Isabel
-%%TZDATA%%share/postgresql/timezone/America/Santarem
-%%TZDATA%%share/postgresql/timezone/America/Santiago
-%%TZDATA%%share/postgresql/timezone/America/Santo_Domingo
-%%TZDATA%%share/postgresql/timezone/America/Sao_Paulo
-%%TZDATA%%share/postgresql/timezone/America/Scoresbysund
-%%TZDATA%%share/postgresql/timezone/America/Shiprock
-%%TZDATA%%share/postgresql/timezone/America/St_Barthelemy
-%%TZDATA%%share/postgresql/timezone/America/St_Johns
-%%TZDATA%%share/postgresql/timezone/America/St_Kitts
-%%TZDATA%%share/postgresql/timezone/America/St_Lucia
-%%TZDATA%%share/postgresql/timezone/America/St_Thomas
-%%TZDATA%%share/postgresql/timezone/America/St_Vincent
-%%TZDATA%%share/postgresql/timezone/America/Swift_Current
-%%TZDATA%%share/postgresql/timezone/America/Tegucigalpa
-%%TZDATA%%share/postgresql/timezone/America/Thule
-%%TZDATA%%share/postgresql/timezone/America/Thunder_Bay
-%%TZDATA%%share/postgresql/timezone/America/Tijuana
-%%TZDATA%%share/postgresql/timezone/America/Toronto
-%%TZDATA%%share/postgresql/timezone/America/Tortola
-%%TZDATA%%share/postgresql/timezone/America/Vancouver
-%%TZDATA%%share/postgresql/timezone/America/Virgin
-%%TZDATA%%share/postgresql/timezone/America/Whitehorse
-%%TZDATA%%share/postgresql/timezone/America/Winnipeg
-%%TZDATA%%share/postgresql/timezone/America/Yakutat
-%%TZDATA%%share/postgresql/timezone/America/Yellowknife
-%%TZDATA%%share/postgresql/timezone/Antarctica/Casey
-%%TZDATA%%share/postgresql/timezone/Antarctica/Davis
-%%TZDATA%%share/postgresql/timezone/Antarctica/DumontDUrville
-%%TZDATA%%share/postgresql/timezone/Antarctica/Macquarie
-%%TZDATA%%share/postgresql/timezone/Antarctica/Mawson
-%%TZDATA%%share/postgresql/timezone/Antarctica/McMurdo
-%%TZDATA%%share/postgresql/timezone/Antarctica/Palmer
-%%TZDATA%%share/postgresql/timezone/Antarctica/Rothera
-%%TZDATA%%share/postgresql/timezone/Antarctica/South_Pole
-%%TZDATA%%share/postgresql/timezone/Antarctica/Syowa
-%%TZDATA%%share/postgresql/timezone/Antarctica/Vostok
-%%TZDATA%%share/postgresql/timezone/Arctic/Longyearbyen
-%%TZDATA%%share/postgresql/timezone/Asia/Aden
-%%TZDATA%%share/postgresql/timezone/Asia/Almaty
-%%TZDATA%%share/postgresql/timezone/Asia/Amman
-%%TZDATA%%share/postgresql/timezone/Asia/Anadyr
-%%TZDATA%%share/postgresql/timezone/Asia/Aqtau
-%%TZDATA%%share/postgresql/timezone/Asia/Aqtobe
-%%TZDATA%%share/postgresql/timezone/Asia/Ashgabat
-%%TZDATA%%share/postgresql/timezone/Asia/Ashkhabad
-%%TZDATA%%share/postgresql/timezone/Asia/Baghdad
-%%TZDATA%%share/postgresql/timezone/Asia/Bahrain
-%%TZDATA%%share/postgresql/timezone/Asia/Baku
-%%TZDATA%%share/postgresql/timezone/Asia/Bangkok
-%%TZDATA%%share/postgresql/timezone/Asia/Beirut
-%%TZDATA%%share/postgresql/timezone/Asia/Bishkek
-%%TZDATA%%share/postgresql/timezone/Asia/Brunei
-%%TZDATA%%share/postgresql/timezone/Asia/Calcutta
-%%TZDATA%%share/postgresql/timezone/Asia/Choibalsan
-%%TZDATA%%share/postgresql/timezone/Asia/Chongqing
-%%TZDATA%%share/postgresql/timezone/Asia/Chungking
-%%TZDATA%%share/postgresql/timezone/Asia/Colombo
-%%TZDATA%%share/postgresql/timezone/Asia/Dacca
-%%TZDATA%%share/postgresql/timezone/Asia/Damascus
-%%TZDATA%%share/postgresql/timezone/Asia/Dhaka
-%%TZDATA%%share/postgresql/timezone/Asia/Dili
-%%TZDATA%%share/postgresql/timezone/Asia/Dubai
-%%TZDATA%%share/postgresql/timezone/Asia/Dushanbe
-%%TZDATA%%share/postgresql/timezone/Asia/Gaza
-%%TZDATA%%share/postgresql/timezone/Asia/Harbin
-%%TZDATA%%share/postgresql/timezone/Asia/Ho_Chi_Minh
-%%TZDATA%%share/postgresql/timezone/Asia/Hong_Kong
-%%TZDATA%%share/postgresql/timezone/Asia/Hovd
-%%TZDATA%%share/postgresql/timezone/Asia/Irkutsk
-%%TZDATA%%share/postgresql/timezone/Asia/Istanbul
-%%TZDATA%%share/postgresql/timezone/Asia/Jakarta
-%%TZDATA%%share/postgresql/timezone/Asia/Jayapura
-%%TZDATA%%share/postgresql/timezone/Asia/Jerusalem
-%%TZDATA%%share/postgresql/timezone/Asia/Kabul
-%%TZDATA%%share/postgresql/timezone/Asia/Kamchatka
-%%TZDATA%%share/postgresql/timezone/Asia/Karachi
-%%TZDATA%%share/postgresql/timezone/Asia/Kashgar
-%%TZDATA%%share/postgresql/timezone/Asia/Kathmandu
-%%TZDATA%%share/postgresql/timezone/Asia/Katmandu
-%%TZDATA%%share/postgresql/timezone/Asia/Kolkata
-%%TZDATA%%share/postgresql/timezone/Asia/Krasnoyarsk
-%%TZDATA%%share/postgresql/timezone/Asia/Kuala_Lumpur
-%%TZDATA%%share/postgresql/timezone/Asia/Kuching
-%%TZDATA%%share/postgresql/timezone/Asia/Kuwait
-%%TZDATA%%share/postgresql/timezone/Asia/Macao
-%%TZDATA%%share/postgresql/timezone/Asia/Macau
-%%TZDATA%%share/postgresql/timezone/Asia/Magadan
-%%TZDATA%%share/postgresql/timezone/Asia/Makassar
-%%TZDATA%%share/postgresql/timezone/Asia/Manila
-%%TZDATA%%share/postgresql/timezone/Asia/Muscat
-%%TZDATA%%share/postgresql/timezone/Asia/Nicosia
-%%TZDATA%%share/postgresql/timezone/Asia/Novokuznetsk
-%%TZDATA%%share/postgresql/timezone/Asia/Novosibirsk
-%%TZDATA%%share/postgresql/timezone/Asia/Omsk
-%%TZDATA%%share/postgresql/timezone/Asia/Oral
-%%TZDATA%%share/postgresql/timezone/Asia/Phnom_Penh
-%%TZDATA%%share/postgresql/timezone/Asia/Pontianak
-%%TZDATA%%share/postgresql/timezone/Asia/Pyongyang
-%%TZDATA%%share/postgresql/timezone/Asia/Qatar
-%%TZDATA%%share/postgresql/timezone/Asia/Qyzylorda
-%%TZDATA%%share/postgresql/timezone/Asia/Rangoon
-%%TZDATA%%share/postgresql/timezone/Asia/Riyadh
-%%TZDATA%%share/postgresql/timezone/Asia/Riyadh87
-%%TZDATA%%share/postgresql/timezone/Asia/Riyadh88
-%%TZDATA%%share/postgresql/timezone/Asia/Riyadh89
-%%TZDATA%%share/postgresql/timezone/Asia/Saigon
-%%TZDATA%%share/postgresql/timezone/Asia/Sakhalin
-%%TZDATA%%share/postgresql/timezone/Asia/Samarkand
-%%TZDATA%%share/postgresql/timezone/Asia/Seoul
-%%TZDATA%%share/postgresql/timezone/Asia/Shanghai
-%%TZDATA%%share/postgresql/timezone/Asia/Singapore
-%%TZDATA%%share/postgresql/timezone/Asia/Taipei
-%%TZDATA%%share/postgresql/timezone/Asia/Tashkent
-%%TZDATA%%share/postgresql/timezone/Asia/Tbilisi
-%%TZDATA%%share/postgresql/timezone/Asia/Tehran
-%%TZDATA%%share/postgresql/timezone/Asia/Tel_Aviv
-%%TZDATA%%share/postgresql/timezone/Asia/Thimbu
-%%TZDATA%%share/postgresql/timezone/Asia/Thimphu
-%%TZDATA%%share/postgresql/timezone/Asia/Tokyo
-%%TZDATA%%share/postgresql/timezone/Asia/Ujung_Pandang
-%%TZDATA%%share/postgresql/timezone/Asia/Ulaanbaatar
-%%TZDATA%%share/postgresql/timezone/Asia/Ulan_Bator
-%%TZDATA%%share/postgresql/timezone/Asia/Urumqi
-%%TZDATA%%share/postgresql/timezone/Asia/Vientiane
-%%TZDATA%%share/postgresql/timezone/Asia/Vladivostok
-%%TZDATA%%share/postgresql/timezone/Asia/Yakutsk
-%%TZDATA%%share/postgresql/timezone/Asia/Yekaterinburg
-%%TZDATA%%share/postgresql/timezone/Asia/Yerevan
-%%TZDATA%%share/postgresql/timezone/Atlantic/Azores
-%%TZDATA%%share/postgresql/timezone/Atlantic/Bermuda
-%%TZDATA%%share/postgresql/timezone/Atlantic/Canary
-%%TZDATA%%share/postgresql/timezone/Atlantic/Cape_Verde
-%%TZDATA%%share/postgresql/timezone/Atlantic/Faeroe
-%%TZDATA%%share/postgresql/timezone/Atlantic/Faroe
-%%TZDATA%%share/postgresql/timezone/Atlantic/Jan_Mayen
-%%TZDATA%%share/postgresql/timezone/Atlantic/Madeira
-%%TZDATA%%share/postgresql/timezone/Atlantic/Reykjavik
-%%TZDATA%%share/postgresql/timezone/Atlantic/South_Georgia
-%%TZDATA%%share/postgresql/timezone/Atlantic/St_Helena
-%%TZDATA%%share/postgresql/timezone/Atlantic/Stanley
-%%TZDATA%%share/postgresql/timezone/Australia/ACT
-%%TZDATA%%share/postgresql/timezone/Australia/Adelaide
-%%TZDATA%%share/postgresql/timezone/Australia/Brisbane
-%%TZDATA%%share/postgresql/timezone/Australia/Broken_Hill
-%%TZDATA%%share/postgresql/timezone/Australia/Canberra
-%%TZDATA%%share/postgresql/timezone/Australia/Currie
-%%TZDATA%%share/postgresql/timezone/Australia/Darwin
-%%TZDATA%%share/postgresql/timezone/Australia/Eucla
-%%TZDATA%%share/postgresql/timezone/Australia/Hobart
-%%TZDATA%%share/postgresql/timezone/Australia/LHI
-%%TZDATA%%share/postgresql/timezone/Australia/Lindeman
-%%TZDATA%%share/postgresql/timezone/Australia/Lord_Howe
-%%TZDATA%%share/postgresql/timezone/Australia/Melbourne
-%%TZDATA%%share/postgresql/timezone/Australia/NSW
-%%TZDATA%%share/postgresql/timezone/Australia/North
-%%TZDATA%%share/postgresql/timezone/Australia/Perth
-%%TZDATA%%share/postgresql/timezone/Australia/Queensland
-%%TZDATA%%share/postgresql/timezone/Australia/South
-%%TZDATA%%share/postgresql/timezone/Australia/Sydney
-%%TZDATA%%share/postgresql/timezone/Australia/Tasmania
-%%TZDATA%%share/postgresql/timezone/Australia/Victoria
-%%TZDATA%%share/postgresql/timezone/Australia/West
-%%TZDATA%%share/postgresql/timezone/Australia/Yancowinna
-%%TZDATA%%share/postgresql/timezone/Brazil/Acre
-%%TZDATA%%share/postgresql/timezone/Brazil/DeNoronha
-%%TZDATA%%share/postgresql/timezone/Brazil/East
-%%TZDATA%%share/postgresql/timezone/Brazil/West
-%%TZDATA%%share/postgresql/timezone/CET
-%%TZDATA%%share/postgresql/timezone/CST6CDT
-%%TZDATA%%share/postgresql/timezone/Canada/Atlantic
-%%TZDATA%%share/postgresql/timezone/Canada/Central
-%%TZDATA%%share/postgresql/timezone/Canada/East-Saskatchewan
-%%TZDATA%%share/postgresql/timezone/Canada/Eastern
-%%TZDATA%%share/postgresql/timezone/Canada/Mountain
-%%TZDATA%%share/postgresql/timezone/Canada/Newfoundland
-%%TZDATA%%share/postgresql/timezone/Canada/Pacific
-%%TZDATA%%share/postgresql/timezone/Canada/Saskatchewan
-%%TZDATA%%share/postgresql/timezone/Canada/Yukon
-%%TZDATA%%share/postgresql/timezone/Chile/Continental
-%%TZDATA%%share/postgresql/timezone/Chile/EasterIsland
-%%TZDATA%%share/postgresql/timezone/Cuba
-%%TZDATA%%share/postgresql/timezone/EET
-%%TZDATA%%share/postgresql/timezone/EST
-%%TZDATA%%share/postgresql/timezone/EST5EDT
-%%TZDATA%%share/postgresql/timezone/Egypt
-%%TZDATA%%share/postgresql/timezone/Eire
-%%TZDATA%%share/postgresql/timezone/Etc/GMT
-%%TZDATA%%share/postgresql/timezone/Etc/GMT+0
-%%TZDATA%%share/postgresql/timezone/Etc/GMT+1
-%%TZDATA%%share/postgresql/timezone/Etc/GMT+10
-%%TZDATA%%share/postgresql/timezone/Etc/GMT+11
-%%TZDATA%%share/postgresql/timezone/Etc/GMT+12
-%%TZDATA%%share/postgresql/timezone/Etc/GMT+2
-%%TZDATA%%share/postgresql/timezone/Etc/GMT+3
-%%TZDATA%%share/postgresql/timezone/Etc/GMT+4
-%%TZDATA%%share/postgresql/timezone/Etc/GMT+5
-%%TZDATA%%share/postgresql/timezone/Etc/GMT+6
-%%TZDATA%%share/postgresql/timezone/Etc/GMT+7
-%%TZDATA%%share/postgresql/timezone/Etc/GMT+8
-%%TZDATA%%share/postgresql/timezone/Etc/GMT+9
-%%TZDATA%%share/postgresql/timezone/Etc/GMT-0
-%%TZDATA%%share/postgresql/timezone/Etc/GMT-1
-%%TZDATA%%share/postgresql/timezone/Etc/GMT-10
-%%TZDATA%%share/postgresql/timezone/Etc/GMT-11
-%%TZDATA%%share/postgresql/timezone/Etc/GMT-12
-%%TZDATA%%share/postgresql/timezone/Etc/GMT-13
-%%TZDATA%%share/postgresql/timezone/Etc/GMT-14
-%%TZDATA%%share/postgresql/timezone/Etc/GMT-2
-%%TZDATA%%share/postgresql/timezone/Etc/GMT-3
-%%TZDATA%%share/postgresql/timezone/Etc/GMT-4
-%%TZDATA%%share/postgresql/timezone/Etc/GMT-5
-%%TZDATA%%share/postgresql/timezone/Etc/GMT-6
-%%TZDATA%%share/postgresql/timezone/Etc/GMT-7
-%%TZDATA%%share/postgresql/timezone/Etc/GMT-8
-%%TZDATA%%share/postgresql/timezone/Etc/GMT-9
-%%TZDATA%%share/postgresql/timezone/Etc/GMT0
-%%TZDATA%%share/postgresql/timezone/Etc/Greenwich
-%%TZDATA%%share/postgresql/timezone/Etc/UCT
-%%TZDATA%%share/postgresql/timezone/Etc/UTC
-%%TZDATA%%share/postgresql/timezone/Etc/Universal
-%%TZDATA%%share/postgresql/timezone/Etc/Zulu
-%%TZDATA%%share/postgresql/timezone/Europe/Amsterdam
-%%TZDATA%%share/postgresql/timezone/Europe/Andorra
-%%TZDATA%%share/postgresql/timezone/Europe/Athens
-%%TZDATA%%share/postgresql/timezone/Europe/Belfast
-%%TZDATA%%share/postgresql/timezone/Europe/Belgrade
-%%TZDATA%%share/postgresql/timezone/Europe/Berlin
-%%TZDATA%%share/postgresql/timezone/Europe/Bratislava
-%%TZDATA%%share/postgresql/timezone/Europe/Brussels
-%%TZDATA%%share/postgresql/timezone/Europe/Bucharest
-%%TZDATA%%share/postgresql/timezone/Europe/Budapest
-%%TZDATA%%share/postgresql/timezone/Europe/Chisinau
-%%TZDATA%%share/postgresql/timezone/Europe/Copenhagen
-%%TZDATA%%share/postgresql/timezone/Europe/Dublin
-%%TZDATA%%share/postgresql/timezone/Europe/Gibraltar
-%%TZDATA%%share/postgresql/timezone/Europe/Guernsey
-%%TZDATA%%share/postgresql/timezone/Europe/Helsinki
-%%TZDATA%%share/postgresql/timezone/Europe/Isle_of_Man
-%%TZDATA%%share/postgresql/timezone/Europe/Istanbul
-%%TZDATA%%share/postgresql/timezone/Europe/Jersey
-%%TZDATA%%share/postgresql/timezone/Europe/Kaliningrad
-%%TZDATA%%share/postgresql/timezone/Europe/Kiev
-%%TZDATA%%share/postgresql/timezone/Europe/Lisbon
-%%TZDATA%%share/postgresql/timezone/Europe/Ljubljana
-%%TZDATA%%share/postgresql/timezone/Europe/London
-%%TZDATA%%share/postgresql/timezone/Europe/Luxembourg
-%%TZDATA%%share/postgresql/timezone/Europe/Madrid
-%%TZDATA%%share/postgresql/timezone/Europe/Malta
-%%TZDATA%%share/postgresql/timezone/Europe/Mariehamn
-%%TZDATA%%share/postgresql/timezone/Europe/Minsk
-%%TZDATA%%share/postgresql/timezone/Europe/Monaco
-%%TZDATA%%share/postgresql/timezone/Europe/Moscow
-%%TZDATA%%share/postgresql/timezone/Europe/Nicosia
-%%TZDATA%%share/postgresql/timezone/Europe/Oslo
-%%TZDATA%%share/postgresql/timezone/Europe/Paris
-%%TZDATA%%share/postgresql/timezone/Europe/Podgorica
-%%TZDATA%%share/postgresql/timezone/Europe/Prague
-%%TZDATA%%share/postgresql/timezone/Europe/Riga
-%%TZDATA%%share/postgresql/timezone/Europe/Rome
-%%TZDATA%%share/postgresql/timezone/Europe/Samara
-%%TZDATA%%share/postgresql/timezone/Europe/San_Marino
-%%TZDATA%%share/postgresql/timezone/Europe/Sarajevo
-%%TZDATA%%share/postgresql/timezone/Europe/Simferopol
-%%TZDATA%%share/postgresql/timezone/Europe/Skopje
-%%TZDATA%%share/postgresql/timezone/Europe/Sofia
-%%TZDATA%%share/postgresql/timezone/Europe/Stockholm
-%%TZDATA%%share/postgresql/timezone/Europe/Tallinn
-%%TZDATA%%share/postgresql/timezone/Europe/Tirane
-%%TZDATA%%share/postgresql/timezone/Europe/Tiraspol
-%%TZDATA%%share/postgresql/timezone/Europe/Uzhgorod
-%%TZDATA%%share/postgresql/timezone/Europe/Vaduz
-%%TZDATA%%share/postgresql/timezone/Europe/Vatican
-%%TZDATA%%share/postgresql/timezone/Europe/Vienna
-%%TZDATA%%share/postgresql/timezone/Europe/Vilnius
-%%TZDATA%%share/postgresql/timezone/Europe/Volgograd
-%%TZDATA%%share/postgresql/timezone/Europe/Warsaw
-%%TZDATA%%share/postgresql/timezone/Europe/Zagreb
-%%TZDATA%%share/postgresql/timezone/Europe/Zaporozhye
-%%TZDATA%%share/postgresql/timezone/Europe/Zurich
-%%TZDATA%%share/postgresql/timezone/Factory
-%%TZDATA%%share/postgresql/timezone/GB
-%%TZDATA%%share/postgresql/timezone/GB-Eire
-%%TZDATA%%share/postgresql/timezone/GMT
-%%TZDATA%%share/postgresql/timezone/GMT+0
-%%TZDATA%%share/postgresql/timezone/GMT-0
-%%TZDATA%%share/postgresql/timezone/GMT0
-%%TZDATA%%share/postgresql/timezone/Greenwich
-%%TZDATA%%share/postgresql/timezone/HST
-%%TZDATA%%share/postgresql/timezone/Hongkong
-%%TZDATA%%share/postgresql/timezone/Iceland
-%%TZDATA%%share/postgresql/timezone/Indian/Antananarivo
-%%TZDATA%%share/postgresql/timezone/Indian/Chagos
-%%TZDATA%%share/postgresql/timezone/Indian/Christmas
-%%TZDATA%%share/postgresql/timezone/Indian/Cocos
-%%TZDATA%%share/postgresql/timezone/Indian/Comoro
-%%TZDATA%%share/postgresql/timezone/Indian/Kerguelen
-%%TZDATA%%share/postgresql/timezone/Indian/Mahe
-%%TZDATA%%share/postgresql/timezone/Indian/Maldives
-%%TZDATA%%share/postgresql/timezone/Indian/Mauritius
-%%TZDATA%%share/postgresql/timezone/Indian/Mayotte
-%%TZDATA%%share/postgresql/timezone/Indian/Reunion
-%%TZDATA%%share/postgresql/timezone/Iran
-%%TZDATA%%share/postgresql/timezone/Israel
-%%TZDATA%%share/postgresql/timezone/Jamaica
-%%TZDATA%%share/postgresql/timezone/Japan
-%%TZDATA%%share/postgresql/timezone/Kwajalein
-%%TZDATA%%share/postgresql/timezone/Libya
-%%TZDATA%%share/postgresql/timezone/MET
-%%TZDATA%%share/postgresql/timezone/MST
-%%TZDATA%%share/postgresql/timezone/MST7MDT
-%%TZDATA%%share/postgresql/timezone/Mexico/BajaNorte
-%%TZDATA%%share/postgresql/timezone/Mexico/BajaSur
-%%TZDATA%%share/postgresql/timezone/Mexico/General
-%%TZDATA%%share/postgresql/timezone/Mideast/Riyadh87
-%%TZDATA%%share/postgresql/timezone/Mideast/Riyadh88
-%%TZDATA%%share/postgresql/timezone/Mideast/Riyadh89
-%%TZDATA%%share/postgresql/timezone/NZ
-%%TZDATA%%share/postgresql/timezone/NZ-CHAT
-%%TZDATA%%share/postgresql/timezone/Navajo
-%%TZDATA%%share/postgresql/timezone/PRC
-%%TZDATA%%share/postgresql/timezone/PST8PDT
-%%TZDATA%%share/postgresql/timezone/Pacific/Apia
-%%TZDATA%%share/postgresql/timezone/Pacific/Auckland
-%%TZDATA%%share/postgresql/timezone/Pacific/Chatham
-%%TZDATA%%share/postgresql/timezone/Pacific/Chuuk
-%%TZDATA%%share/postgresql/timezone/Pacific/Easter
-%%TZDATA%%share/postgresql/timezone/Pacific/Efate
-%%TZDATA%%share/postgresql/timezone/Pacific/Enderbury
-%%TZDATA%%share/postgresql/timezone/Pacific/Fakaofo
-%%TZDATA%%share/postgresql/timezone/Pacific/Fiji
-%%TZDATA%%share/postgresql/timezone/Pacific/Funafuti
-%%TZDATA%%share/postgresql/timezone/Pacific/Galapagos
-%%TZDATA%%share/postgresql/timezone/Pacific/Gambier
-%%TZDATA%%share/postgresql/timezone/Pacific/Guadalcanal
-%%TZDATA%%share/postgresql/timezone/Pacific/Guam
-%%TZDATA%%share/postgresql/timezone/Pacific/Honolulu
-%%TZDATA%%share/postgresql/timezone/Pacific/Johnston
-%%TZDATA%%share/postgresql/timezone/Pacific/Kiritimati
-%%TZDATA%%share/postgresql/timezone/Pacific/Kosrae
-%%TZDATA%%share/postgresql/timezone/Pacific/Kwajalein
-%%TZDATA%%share/postgresql/timezone/Pacific/Majuro
-%%TZDATA%%share/postgresql/timezone/Pacific/Marquesas
-%%TZDATA%%share/postgresql/timezone/Pacific/Midway
-%%TZDATA%%share/postgresql/timezone/Pacific/Nauru
-%%TZDATA%%share/postgresql/timezone/Pacific/Niue
-%%TZDATA%%share/postgresql/timezone/Pacific/Norfolk
-%%TZDATA%%share/postgresql/timezone/Pacific/Noumea
-%%TZDATA%%share/postgresql/timezone/Pacific/Pago_Pago
-%%TZDATA%%share/postgresql/timezone/Pacific/Palau
-%%TZDATA%%share/postgresql/timezone/Pacific/Pitcairn
-%%TZDATA%%share/postgresql/timezone/Pacific/Pohnpei
-%%TZDATA%%share/postgresql/timezone/Pacific/Ponape
-%%TZDATA%%share/postgresql/timezone/Pacific/Port_Moresby
-%%TZDATA%%share/postgresql/timezone/Pacific/Rarotonga
-%%TZDATA%%share/postgresql/timezone/Pacific/Saipan
-%%TZDATA%%share/postgresql/timezone/Pacific/Samoa
-%%TZDATA%%share/postgresql/timezone/Pacific/Tahiti
-%%TZDATA%%share/postgresql/timezone/Pacific/Tarawa
-%%TZDATA%%share/postgresql/timezone/Pacific/Tongatapu
-%%TZDATA%%share/postgresql/timezone/Pacific/Truk
-%%TZDATA%%share/postgresql/timezone/Pacific/Wake
-%%TZDATA%%share/postgresql/timezone/Pacific/Wallis
-%%TZDATA%%share/postgresql/timezone/Pacific/Yap
-%%TZDATA%%share/postgresql/timezone/Poland
-%%TZDATA%%share/postgresql/timezone/Portugal
-%%TZDATA%%share/postgresql/timezone/ROC
-%%TZDATA%%share/postgresql/timezone/ROK
-%%TZDATA%%share/postgresql/timezone/Singapore
-%%TZDATA%%share/postgresql/timezone/Turkey
-%%TZDATA%%share/postgresql/timezone/UCT
-%%TZDATA%%share/postgresql/timezone/US/Alaska
-%%TZDATA%%share/postgresql/timezone/US/Aleutian
-%%TZDATA%%share/postgresql/timezone/US/Arizona
-%%TZDATA%%share/postgresql/timezone/US/Central
-%%TZDATA%%share/postgresql/timezone/US/East-Indiana
-%%TZDATA%%share/postgresql/timezone/US/Eastern
-%%TZDATA%%share/postgresql/timezone/US/Hawaii
-%%TZDATA%%share/postgresql/timezone/US/Indiana-Starke
-%%TZDATA%%share/postgresql/timezone/US/Michigan
-%%TZDATA%%share/postgresql/timezone/US/Mountain
-%%TZDATA%%share/postgresql/timezone/US/Pacific
-%%TZDATA%%share/postgresql/timezone/US/Pacific-New
-%%TZDATA%%share/postgresql/timezone/US/Samoa
-%%TZDATA%%share/postgresql/timezone/UTC
-%%TZDATA%%share/postgresql/timezone/Universal
-%%TZDATA%%share/postgresql/timezone/W-SU
-%%TZDATA%%share/postgresql/timezone/WET
-%%TZDATA%%share/postgresql/timezone/Zulu
-%%TZDATA%%share/postgresql/timezone/posixrules
-share/postgresql/timezonesets/Africa.txt
-share/postgresql/timezonesets/America.txt
-share/postgresql/timezonesets/Antarctica.txt
-share/postgresql/timezonesets/Asia.txt
-share/postgresql/timezonesets/Atlantic.txt
-share/postgresql/timezonesets/Australia
-share/postgresql/timezonesets/Australia.txt
-share/postgresql/timezonesets/Default
-share/postgresql/timezonesets/Etc.txt
-share/postgresql/timezonesets/Europe.txt
-share/postgresql/timezonesets/India
-share/postgresql/timezonesets/Indian.txt
-share/postgresql/timezonesets/Pacific.txt
-%%TZDATA%%@dirrm share/postgresql/timezone/Africa
-%%TZDATA%%@dirrm share/postgresql/timezone/America/Argentina
-%%TZDATA%%@dirrm share/postgresql/timezone/America/Indiana
-%%TZDATA%%@dirrm share/postgresql/timezone/America/Kentucky
-%%TZDATA%%@dirrm share/postgresql/timezone/America/North_Dakota
-%%TZDATA%%@dirrm share/postgresql/timezone/America
-%%TZDATA%%@dirrm share/postgresql/timezone/Antarctica
-%%TZDATA%%@dirrm share/postgresql/timezone/Arctic
-%%TZDATA%%@dirrm share/postgresql/timezone/Asia
-%%TZDATA%%@dirrm share/postgresql/timezone/Atlantic
-%%TZDATA%%@dirrm share/postgresql/timezone/Australia
-%%TZDATA%%@dirrm share/postgresql/timezone/Brazil
-%%TZDATA%%@dirrm share/postgresql/timezone/Canada
-%%TZDATA%%@dirrm share/postgresql/timezone/Chile
-%%TZDATA%%@dirrm share/postgresql/timezone/Etc
-%%TZDATA%%@dirrm share/postgresql/timezone/Europe
-%%TZDATA%%@dirrm share/postgresql/timezone/Indian
-%%TZDATA%%@dirrm share/postgresql/timezone/Mexico
-%%TZDATA%%@dirrm share/postgresql/timezone/Mideast
-%%TZDATA%%@dirrm share/postgresql/timezone/Pacific
-%%TZDATA%%@dirrm share/postgresql/timezone/US
-%%TZDATA%%@dirrm share/postgresql/timezone
- at dirrm share/postgresql/timezonesets
-share/postgresql/tsearch_data/danish.stop
-share/postgresql/tsearch_data/dutch.stop
-share/postgresql/tsearch_data/english.stop
-share/postgresql/tsearch_data/finnish.stop
-share/postgresql/tsearch_data/french.stop
-share/postgresql/tsearch_data/german.stop
-share/postgresql/tsearch_data/hungarian.stop
-share/postgresql/tsearch_data/italian.stop
-share/postgresql/tsearch_data/norwegian.stop
-share/postgresql/tsearch_data/portuguese.stop
-share/postgresql/tsearch_data/russian.stop
-share/postgresql/tsearch_data/spanish.stop
-share/postgresql/tsearch_data/swedish.stop
-share/postgresql/tsearch_data/turkish.stop
-share/postgresql/tsearch_data/hunspell_sample.affix
-share/postgresql/tsearch_data/ispell_sample.affix
-share/postgresql/tsearch_data/ispell_sample.dict
-share/postgresql/tsearch_data/synonym_sample.syn
-share/postgresql/tsearch_data/thesaurus_sample.ths
- at dirrm share/postgresql/tsearch_data
+%%PGHOME%%/share/conversion_create.sql
+%%PGHOME%%/share/information_schema.sql
+%%PGHOME%%/share/pg_hba.conf.sample
+%%PGHOME%%/share/pg_ident.conf.sample
+%%PGHOME%%/share/postgres.bki
+%%PGHOME%%/share/postgres.description
+%%PGHOME%%/share/postgresql.conf.sample
+%%PGHOME%%/share/recovery.conf.sample
+%%PGHOME%%/share/sql_features.txt
+%%PGHOME%%/share/system_views.sql
+%%PGHOME%%/share/locale/cs/LC_MESSAGES/initdb-9.0.mo
+%%PGHOME%%/share/locale/de/LC_MESSAGES/initdb-9.0.mo
+%%PGHOME%%/share/locale/de/LC_MESSAGES/pg_controldata-9.0.mo
+%%PGHOME%%/share/locale/de/LC_MESSAGES/pg_ctl-9.0.mo
+%%PGHOME%%/share/locale/de/LC_MESSAGES/pg_resetxlog-9.0.mo
+%%PGHOME%%/share/locale/de/LC_MESSAGES/plpgsql-9.0.mo
+%%PGHOME%%/share/locale/de/LC_MESSAGES/postgres-9.0.mo
+%%PGHOME%%/share/locale/es/LC_MESSAGES/initdb-9.0.mo
+%%PGHOME%%/share/locale/es/LC_MESSAGES/pg_controldata-9.0.mo
+%%PGHOME%%/share/locale/es/LC_MESSAGES/pg_ctl-9.0.mo
+%%PGHOME%%/share/locale/es/LC_MESSAGES/pg_resetxlog-9.0.mo
+%%PGHOME%%/share/locale/es/LC_MESSAGES/plpgsql-9.0.mo
+%%PGHOME%%/share/locale/es/LC_MESSAGES/postgres-9.0.mo
+%%PGHOME%%/share/locale/fr/LC_MESSAGES/initdb-9.0.mo
+%%PGHOME%%/share/locale/fr/LC_MESSAGES/pg_controldata-9.0.mo
+%%PGHOME%%/share/locale/fr/LC_MESSAGES/pg_ctl-9.0.mo
+%%PGHOME%%/share/locale/fr/LC_MESSAGES/pg_resetxlog-9.0.mo
+%%PGHOME%%/share/locale/fr/LC_MESSAGES/plpgsql-9.0.mo
+%%PGHOME%%/share/locale/fr/LC_MESSAGES/postgres-9.0.mo
+%%PGHOME%%/share/locale/it/LC_MESSAGES/initdb-9.0.mo
+%%PGHOME%%/share/locale/it/LC_MESSAGES/pg_controldata-9.0.mo
+%%PGHOME%%/share/locale/it/LC_MESSAGES/pg_ctl-9.0.mo
+%%PGHOME%%/share/locale/it/LC_MESSAGES/pg_resetxlog-9.0.mo
+%%PGHOME%%/share/locale/it/LC_MESSAGES/plpgsql-9.0.mo
+%%PGHOME%%/share/locale/ja/LC_MESSAGES/initdb-9.0.mo
+%%PGHOME%%/share/locale/ja/LC_MESSAGES/pg_controldata-9.0.mo
+%%PGHOME%%/share/locale/ja/LC_MESSAGES/pg_ctl-9.0.mo
+%%PGHOME%%/share/locale/ja/LC_MESSAGES/pg_resetxlog-9.0.mo
+%%PGHOME%%/share/locale/ja/LC_MESSAGES/plpgsql-9.0.mo
+%%PGHOME%%/share/locale/ja/LC_MESSAGES/postgres-9.0.mo
+%%PGHOME%%/share/locale/ko/LC_MESSAGES/pg_controldata-9.0.mo
+%%PGHOME%%/share/locale/ko/LC_MESSAGES/pg_ctl-9.0.mo
+%%PGHOME%%/share/locale/ko/LC_MESSAGES/pg_resetxlog-9.0.mo
+%%PGHOME%%/share/locale/pt_BR/LC_MESSAGES/initdb-9.0.mo
+%%PGHOME%%/share/locale/pt_BR/LC_MESSAGES/pg_controldata-9.0.mo
+%%PGHOME%%/share/locale/pt_BR/LC_MESSAGES/pg_ctl-9.0.mo
+%%PGHOME%%/share/locale/pt_BR/LC_MESSAGES/pg_resetxlog-9.0.mo
+%%PGHOME%%/share/locale/pt_BR/LC_MESSAGES/plpgsql-9.0.mo
+%%PGHOME%%/share/locale/pt_BR/LC_MESSAGES/postgres-9.0.mo
+%%PGHOME%%/share/locale/ro/LC_MESSAGES/pg_controldata-9.0.mo
+%%PGHOME%%/share/locale/ro/LC_MESSAGES/pg_resetxlog-9.0.mo
+%%PGHOME%%/share/locale/ro/LC_MESSAGES/plpgsql-9.0.mo
+%%PGHOME%%/share/locale/ru/LC_MESSAGES/initdb-9.0.mo
+%%PGHOME%%/share/locale/ru/LC_MESSAGES/pg_ctl-9.0.mo
+%%PGHOME%%/share/locale/ru/LC_MESSAGES/pg_resetxlog-9.0.mo
+%%PGHOME%%/share/locale/sv/LC_MESSAGES/initdb-9.0.mo
+%%PGHOME%%/share/locale/sv/LC_MESSAGES/pg_controldata-9.0.mo
+%%PGHOME%%/share/locale/sv/LC_MESSAGES/pg_ctl-9.0.mo
+%%PGHOME%%/share/locale/sv/LC_MESSAGES/pg_resetxlog-9.0.mo
+%%PGHOME%%/share/locale/ta/LC_MESSAGES/initdb-9.0.mo
+%%PGHOME%%/share/locale/ta/LC_MESSAGES/pg_controldata-9.0.mo
+%%PGHOME%%/share/locale/ta/LC_MESSAGES/pg_ctl-9.0.mo
+%%PGHOME%%/share/locale/ta/LC_MESSAGES/pg_resetxlog-9.0.mo
+%%PGHOME%%/share/locale/tr/LC_MESSAGES/initdb-9.0.mo
+%%PGHOME%%/share/locale/tr/LC_MESSAGES/pg_controldata-9.0.mo
+%%PGHOME%%/share/locale/tr/LC_MESSAGES/pg_ctl-9.0.mo
+%%PGHOME%%/share/locale/tr/LC_MESSAGES/pg_resetxlog-9.0.mo
+%%PGHOME%%/share/locale/tr/LC_MESSAGES/plpgsql-9.0.mo
+%%PGHOME%%/share/locale/tr/LC_MESSAGES/postgres-9.0.mo
+%%PGHOME%%/share/locale/zh_CN/LC_MESSAGES/initdb-9.0.mo
+%%PGHOME%%/share/locale/zh_CN/LC_MESSAGES/pg_controldata-9.0.mo
+%%PGHOME%%/share/locale/zh_CN/LC_MESSAGES/pg_ctl-9.0.mo
+%%PGHOME%%/share/locale/zh_CN/LC_MESSAGES/pg_resetxlog-9.0.mo
+%%PGHOME%%/share/postgres.shdescription
+%%PGHOME%%/share/snowball_create.sql
+%%PGHOME%%/share/timezone/Africa/Abidjan
+%%PGHOME%%/share/timezone/Africa/Accra
+%%PGHOME%%/share/timezone/Africa/Addis_Ababa
+%%PGHOME%%/share/timezone/Africa/Algiers
+%%PGHOME%%/share/timezone/Africa/Asmara
+%%PGHOME%%/share/timezone/Africa/Asmera
+%%PGHOME%%/share/timezone/Africa/Bamako
+%%PGHOME%%/share/timezone/Africa/Bangui
+%%PGHOME%%/share/timezone/Africa/Banjul
+%%PGHOME%%/share/timezone/Africa/Bissau
+%%PGHOME%%/share/timezone/Africa/Blantyre
+%%PGHOME%%/share/timezone/Africa/Brazzaville
+%%PGHOME%%/share/timezone/Africa/Bujumbura
+%%PGHOME%%/share/timezone/Africa/Cairo
+%%PGHOME%%/share/timezone/Africa/Casablanca
+%%PGHOME%%/share/timezone/Africa/Ceuta
+%%PGHOME%%/share/timezone/Africa/Conakry
+%%PGHOME%%/share/timezone/Africa/Dakar
+%%PGHOME%%/share/timezone/Africa/Dar_es_Salaam
+%%PGHOME%%/share/timezone/Africa/Djibouti
+%%PGHOME%%/share/timezone/Africa/Douala
+%%PGHOME%%/share/timezone/Africa/El_Aaiun
+%%PGHOME%%/share/timezone/Africa/Freetown
+%%PGHOME%%/share/timezone/Africa/Gaborone
+%%PGHOME%%/share/timezone/Africa/Harare
+%%PGHOME%%/share/timezone/Africa/Johannesburg
+%%PGHOME%%/share/timezone/Africa/Kampala
+%%PGHOME%%/share/timezone/Africa/Khartoum
+%%PGHOME%%/share/timezone/Africa/Kigali
+%%PGHOME%%/share/timezone/Africa/Kinshasa
+%%PGHOME%%/share/timezone/Africa/Lagos
+%%PGHOME%%/share/timezone/Africa/Libreville
+%%PGHOME%%/share/timezone/Africa/Lome
+%%PGHOME%%/share/timezone/Africa/Luanda
+%%PGHOME%%/share/timezone/Africa/Lubumbashi
+%%PGHOME%%/share/timezone/Africa/Lusaka
+%%PGHOME%%/share/timezone/Africa/Malabo
+%%PGHOME%%/share/timezone/Africa/Maputo
+%%PGHOME%%/share/timezone/Africa/Maseru
+%%PGHOME%%/share/timezone/Africa/Mbabane
+%%PGHOME%%/share/timezone/Africa/Mogadishu
+%%PGHOME%%/share/timezone/Africa/Monrovia
+%%PGHOME%%/share/timezone/Africa/Nairobi
+%%PGHOME%%/share/timezone/Africa/Ndjamena
+%%PGHOME%%/share/timezone/Africa/Niamey
+%%PGHOME%%/share/timezone/Africa/Nouakchott
+%%PGHOME%%/share/timezone/Africa/Ouagadougou
+%%PGHOME%%/share/timezone/Africa/Porto-Novo
+%%PGHOME%%/share/timezone/Africa/Sao_Tome
+%%PGHOME%%/share/timezone/Africa/Timbuktu
+%%PGHOME%%/share/timezone/Africa/Tripoli
+%%PGHOME%%/share/timezone/Africa/Tunis
+%%PGHOME%%/share/timezone/Africa/Windhoek
+%%PGHOME%%/share/timezone/America/Adak
+%%PGHOME%%/share/timezone/America/Anchorage
+%%PGHOME%%/share/timezone/America/Anguilla
+%%PGHOME%%/share/timezone/America/Antigua
+%%PGHOME%%/share/timezone/America/Araguaina
+%%PGHOME%%/share/timezone/America/Argentina/Buenos_Aires
+%%PGHOME%%/share/timezone/America/Argentina/Catamarca
+%%PGHOME%%/share/timezone/America/Argentina/ComodRivadavia
+%%PGHOME%%/share/timezone/America/Argentina/Cordoba
+%%PGHOME%%/share/timezone/America/Argentina/Jujuy
+%%PGHOME%%/share/timezone/America/Argentina/La_Rioja
+%%PGHOME%%/share/timezone/America/Argentina/Mendoza
+%%PGHOME%%/share/timezone/America/Argentina/Rio_Gallegos
+%%PGHOME%%/share/timezone/America/Argentina/Salta
+%%PGHOME%%/share/timezone/America/Argentina/San_Juan
+%%PGHOME%%/share/timezone/America/Argentina/San_Luis
+%%PGHOME%%/share/timezone/America/Argentina/Tucuman
+%%PGHOME%%/share/timezone/America/Argentina/Ushuaia
+%%PGHOME%%/share/timezone/America/Aruba
+%%PGHOME%%/share/timezone/America/Asuncion
+%%PGHOME%%/share/timezone/America/Atikokan
+%%PGHOME%%/share/timezone/America/Atka
+%%PGHOME%%/share/timezone/America/Bahia
+%%PGHOME%%/share/timezone/America/Bahia_Banderas
+%%PGHOME%%/share/timezone/America/Barbados
+%%PGHOME%%/share/timezone/America/Belem
+%%PGHOME%%/share/timezone/America/Belize
+%%PGHOME%%/share/timezone/America/Blanc-Sablon
+%%PGHOME%%/share/timezone/America/Boa_Vista
+%%PGHOME%%/share/timezone/America/Bogota
+%%PGHOME%%/share/timezone/America/Boise
+%%PGHOME%%/share/timezone/America/Buenos_Aires
+%%PGHOME%%/share/timezone/America/Cambridge_Bay
+%%PGHOME%%/share/timezone/America/Campo_Grande
+%%PGHOME%%/share/timezone/America/Cancun
+%%PGHOME%%/share/timezone/America/Caracas
+%%PGHOME%%/share/timezone/America/Catamarca
+%%PGHOME%%/share/timezone/America/Cayenne
+%%PGHOME%%/share/timezone/America/Cayman
+%%PGHOME%%/share/timezone/America/Chicago
+%%PGHOME%%/share/timezone/America/Chihuahua
+%%PGHOME%%/share/timezone/America/Coral_Harbour
+%%PGHOME%%/share/timezone/America/Cordoba
+%%PGHOME%%/share/timezone/America/Costa_Rica
+%%PGHOME%%/share/timezone/America/Cuiaba
+%%PGHOME%%/share/timezone/America/Curacao
+%%PGHOME%%/share/timezone/America/Danmarkshavn
+%%PGHOME%%/share/timezone/America/Dawson
+%%PGHOME%%/share/timezone/America/Dawson_Creek
+%%PGHOME%%/share/timezone/America/Denver
+%%PGHOME%%/share/timezone/America/Detroit
+%%PGHOME%%/share/timezone/America/Dominica
+%%PGHOME%%/share/timezone/America/Edmonton
+%%PGHOME%%/share/timezone/America/Eirunepe
+%%PGHOME%%/share/timezone/America/El_Salvador
+%%PGHOME%%/share/timezone/America/Ensenada
+%%PGHOME%%/share/timezone/America/Fort_Wayne
+%%PGHOME%%/share/timezone/America/Fortaleza
+%%PGHOME%%/share/timezone/America/Glace_Bay
+%%PGHOME%%/share/timezone/America/Godthab
+%%PGHOME%%/share/timezone/America/Goose_Bay
+%%PGHOME%%/share/timezone/America/Grand_Turk
+%%PGHOME%%/share/timezone/America/Grenada
+%%PGHOME%%/share/timezone/America/Guadeloupe
+%%PGHOME%%/share/timezone/America/Guatemala
+%%PGHOME%%/share/timezone/America/Guayaquil
+%%PGHOME%%/share/timezone/America/Guyana
+%%PGHOME%%/share/timezone/America/Halifax
+%%PGHOME%%/share/timezone/America/Havana
+%%PGHOME%%/share/timezone/America/Hermosillo
+%%PGHOME%%/share/timezone/America/Indiana/Indianapolis
+%%PGHOME%%/share/timezone/America/Indiana/Knox
+%%PGHOME%%/share/timezone/America/Indiana/Marengo
+%%PGHOME%%/share/timezone/America/Indiana/Petersburg
+%%PGHOME%%/share/timezone/America/Indiana/Tell_City
+%%PGHOME%%/share/timezone/America/Indiana/Vevay
+%%PGHOME%%/share/timezone/America/Indiana/Vincennes
+%%PGHOME%%/share/timezone/America/Indiana/Winamac
+%%PGHOME%%/share/timezone/America/Indianapolis
+%%PGHOME%%/share/timezone/America/Inuvik
+%%PGHOME%%/share/timezone/America/Iqaluit
+%%PGHOME%%/share/timezone/America/Jamaica
+%%PGHOME%%/share/timezone/America/Jujuy
+%%PGHOME%%/share/timezone/America/Juneau
+%%PGHOME%%/share/timezone/America/Kentucky/Louisville
+%%PGHOME%%/share/timezone/America/Kentucky/Monticello
+%%PGHOME%%/share/timezone/America/Knox_IN
+%%PGHOME%%/share/timezone/America/La_Paz
+%%PGHOME%%/share/timezone/America/Lima
+%%PGHOME%%/share/timezone/America/Los_Angeles
+%%PGHOME%%/share/timezone/America/Louisville
+%%PGHOME%%/share/timezone/America/Maceio
+%%PGHOME%%/share/timezone/America/Managua
+%%PGHOME%%/share/timezone/America/Manaus
+%%PGHOME%%/share/timezone/America/Marigot
+%%PGHOME%%/share/timezone/America/Martinique
+%%PGHOME%%/share/timezone/America/Matamoros
+%%PGHOME%%/share/timezone/America/Mazatlan
+%%PGHOME%%/share/timezone/America/Mendoza
+%%PGHOME%%/share/timezone/America/Menominee
+%%PGHOME%%/share/timezone/America/Merida
+%%PGHOME%%/share/timezone/America/Mexico_City
+%%PGHOME%%/share/timezone/America/Miquelon
+%%PGHOME%%/share/timezone/America/Moncton
+%%PGHOME%%/share/timezone/America/Monterrey
+%%PGHOME%%/share/timezone/America/Montevideo
+%%PGHOME%%/share/timezone/America/Montreal
+%%PGHOME%%/share/timezone/America/Montserrat
+%%PGHOME%%/share/timezone/America/Nassau
+%%PGHOME%%/share/timezone/America/New_York
+%%PGHOME%%/share/timezone/America/Nipigon
+%%PGHOME%%/share/timezone/America/Nome
+%%PGHOME%%/share/timezone/America/Noronha
+%%PGHOME%%/share/timezone/America/North_Dakota/Center
+%%PGHOME%%/share/timezone/America/North_Dakota/New_Salem
+%%PGHOME%%/share/timezone/America/Ojinaga
+%%PGHOME%%/share/timezone/America/Panama
+%%PGHOME%%/share/timezone/America/Pangnirtung
+%%PGHOME%%/share/timezone/America/Paramaribo
+%%PGHOME%%/share/timezone/America/Phoenix
+%%PGHOME%%/share/timezone/America/Port-au-Prince
+%%PGHOME%%/share/timezone/America/Port_of_Spain
+%%PGHOME%%/share/timezone/America/Porto_Acre
+%%PGHOME%%/share/timezone/America/Porto_Velho
+%%PGHOME%%/share/timezone/America/Puerto_Rico
+%%PGHOME%%/share/timezone/America/Rainy_River
+%%PGHOME%%/share/timezone/America/Rankin_Inlet
+%%PGHOME%%/share/timezone/America/Recife
+%%PGHOME%%/share/timezone/America/Regina
+%%PGHOME%%/share/timezone/America/Resolute
+%%PGHOME%%/share/timezone/America/Rio_Branco
+%%PGHOME%%/share/timezone/America/Rosario
+%%PGHOME%%/share/timezone/America/Santa_Isabel
+%%PGHOME%%/share/timezone/America/Santarem
+%%PGHOME%%/share/timezone/America/Santiago
+%%PGHOME%%/share/timezone/America/Santo_Domingo
+%%PGHOME%%/share/timezone/America/Sao_Paulo
+%%PGHOME%%/share/timezone/America/Scoresbysund
+%%PGHOME%%/share/timezone/America/Shiprock
+%%PGHOME%%/share/timezone/America/St_Barthelemy
+%%PGHOME%%/share/timezone/America/St_Johns
+%%PGHOME%%/share/timezone/America/St_Kitts
+%%PGHOME%%/share/timezone/America/St_Lucia
+%%PGHOME%%/share/timezone/America/St_Thomas
+%%PGHOME%%/share/timezone/America/St_Vincent
+%%PGHOME%%/share/timezone/America/Swift_Current
+%%PGHOME%%/share/timezone/America/Tegucigalpa
+%%PGHOME%%/share/timezone/America/Thule
+%%PGHOME%%/share/timezone/America/Thunder_Bay
+%%PGHOME%%/share/timezone/America/Tijuana
+%%PGHOME%%/share/timezone/America/Toronto
+%%PGHOME%%/share/timezone/America/Tortola
+%%PGHOME%%/share/timezone/America/Vancouver
+%%PGHOME%%/share/timezone/America/Virgin
+%%PGHOME%%/share/timezone/America/Whitehorse
+%%PGHOME%%/share/timezone/America/Winnipeg
+%%PGHOME%%/share/timezone/America/Yakutat
+%%PGHOME%%/share/timezone/America/Yellowknife
+%%PGHOME%%/share/timezone/Antarctica/Casey
+%%PGHOME%%/share/timezone/Antarctica/Davis
+%%PGHOME%%/share/timezone/Antarctica/DumontDUrville
+%%PGHOME%%/share/timezone/Antarctica/Macquarie
+%%PGHOME%%/share/timezone/Antarctica/Mawson
+%%PGHOME%%/share/timezone/Antarctica/McMurdo
+%%PGHOME%%/share/timezone/Antarctica/Palmer
+%%PGHOME%%/share/timezone/Antarctica/Rothera
+%%PGHOME%%/share/timezone/Antarctica/South_Pole
+%%PGHOME%%/share/timezone/Antarctica/Syowa
+%%PGHOME%%/share/timezone/Antarctica/Vostok
+%%PGHOME%%/share/timezone/Arctic/Longyearbyen
+%%PGHOME%%/share/timezone/Asia/Aden
+%%PGHOME%%/share/timezone/Asia/Almaty
+%%PGHOME%%/share/timezone/Asia/Amman
+%%PGHOME%%/share/timezone/Asia/Anadyr
+%%PGHOME%%/share/timezone/Asia/Aqtau
+%%PGHOME%%/share/timezone/Asia/Aqtobe
+%%PGHOME%%/share/timezone/Asia/Ashgabat
+%%PGHOME%%/share/timezone/Asia/Ashkhabad
+%%PGHOME%%/share/timezone/Asia/Baghdad
+%%PGHOME%%/share/timezone/Asia/Bahrain
+%%PGHOME%%/share/timezone/Asia/Baku
+%%PGHOME%%/share/timezone/Asia/Bangkok
+%%PGHOME%%/share/timezone/Asia/Beirut
+%%PGHOME%%/share/timezone/Asia/Bishkek
+%%PGHOME%%/share/timezone/Asia/Brunei
+%%PGHOME%%/share/timezone/Asia/Calcutta
+%%PGHOME%%/share/timezone/Asia/Choibalsan
+%%PGHOME%%/share/timezone/Asia/Chongqing
+%%PGHOME%%/share/timezone/Asia/Chungking
+%%PGHOME%%/share/timezone/Asia/Colombo
+%%PGHOME%%/share/timezone/Asia/Dacca
+%%PGHOME%%/share/timezone/Asia/Damascus
+%%PGHOME%%/share/timezone/Asia/Dhaka
+%%PGHOME%%/share/timezone/Asia/Dili
+%%PGHOME%%/share/timezone/Asia/Dubai
+%%PGHOME%%/share/timezone/Asia/Dushanbe
+%%PGHOME%%/share/timezone/Asia/Gaza
+%%PGHOME%%/share/timezone/Asia/Harbin
+%%PGHOME%%/share/timezone/Asia/Ho_Chi_Minh
+%%PGHOME%%/share/timezone/Asia/Hong_Kong
+%%PGHOME%%/share/timezone/Asia/Hovd
+%%PGHOME%%/share/timezone/Asia/Irkutsk
+%%PGHOME%%/share/timezone/Asia/Istanbul
+%%PGHOME%%/share/timezone/Asia/Jakarta
+%%PGHOME%%/share/timezone/Asia/Jayapura
+%%PGHOME%%/share/timezone/Asia/Jerusalem
+%%PGHOME%%/share/timezone/Asia/Kabul
+%%PGHOME%%/share/timezone/Asia/Kamchatka
+%%PGHOME%%/share/timezone/Asia/Karachi
+%%PGHOME%%/share/timezone/Asia/Kashgar
+%%PGHOME%%/share/timezone/Asia/Kathmandu
+%%PGHOME%%/share/timezone/Asia/Katmandu
+%%PGHOME%%/share/timezone/Asia/Kolkata
+%%PGHOME%%/share/timezone/Asia/Krasnoyarsk
+%%PGHOME%%/share/timezone/Asia/Kuala_Lumpur
+%%PGHOME%%/share/timezone/Asia/Kuching
+%%PGHOME%%/share/timezone/Asia/Kuwait
+%%PGHOME%%/share/timezone/Asia/Macao
+%%PGHOME%%/share/timezone/Asia/Macau
+%%PGHOME%%/share/timezone/Asia/Magadan
+%%PGHOME%%/share/timezone/Asia/Makassar
+%%PGHOME%%/share/timezone/Asia/Manila
+%%PGHOME%%/share/timezone/Asia/Muscat
+%%PGHOME%%/share/timezone/Asia/Nicosia
+%%PGHOME%%/share/timezone/Asia/Novokuznetsk
+%%PGHOME%%/share/timezone/Asia/Novosibirsk
+%%PGHOME%%/share/timezone/Asia/Omsk
+%%PGHOME%%/share/timezone/Asia/Oral
+%%PGHOME%%/share/timezone/Asia/Phnom_Penh
+%%PGHOME%%/share/timezone/Asia/Pontianak
+%%PGHOME%%/share/timezone/Asia/Pyongyang
+%%PGHOME%%/share/timezone/Asia/Qatar
+%%PGHOME%%/share/timezone/Asia/Qyzylorda
+%%PGHOME%%/share/timezone/Asia/Rangoon
+%%PGHOME%%/share/timezone/Asia/Riyadh
+%%PGHOME%%/share/timezone/Asia/Riyadh87
+%%PGHOME%%/share/timezone/Asia/Riyadh88
+%%PGHOME%%/share/timezone/Asia/Riyadh89
+%%PGHOME%%/share/timezone/Asia/Saigon
+%%PGHOME%%/share/timezone/Asia/Sakhalin
+%%PGHOME%%/share/timezone/Asia/Samarkand
+%%PGHOME%%/share/timezone/Asia/Seoul
+%%PGHOME%%/share/timezone/Asia/Shanghai
+%%PGHOME%%/share/timezone/Asia/Singapore
+%%PGHOME%%/share/timezone/Asia/Taipei
+%%PGHOME%%/share/timezone/Asia/Tashkent
+%%PGHOME%%/share/timezone/Asia/Tbilisi
+%%PGHOME%%/share/timezone/Asia/Tehran
+%%PGHOME%%/share/timezone/Asia/Tel_Aviv
+%%PGHOME%%/share/timezone/Asia/Thimbu
+%%PGHOME%%/share/timezone/Asia/Thimphu
+%%PGHOME%%/share/timezone/Asia/Tokyo
+%%PGHOME%%/share/timezone/Asia/Ujung_Pandang
+%%PGHOME%%/share/timezone/Asia/Ulaanbaatar
+%%PGHOME%%/share/timezone/Asia/Ulan_Bator
+%%PGHOME%%/share/timezone/Asia/Urumqi
+%%PGHOME%%/share/timezone/Asia/Vientiane
+%%PGHOME%%/share/timezone/Asia/Vladivostok
+%%PGHOME%%/share/timezone/Asia/Yakutsk
+%%PGHOME%%/share/timezone/Asia/Yekaterinburg
+%%PGHOME%%/share/timezone/Asia/Yerevan
+%%PGHOME%%/share/timezone/Atlantic/Azores
+%%PGHOME%%/share/timezone/Atlantic/Bermuda
+%%PGHOME%%/share/timezone/Atlantic/Canary
+%%PGHOME%%/share/timezone/Atlantic/Cape_Verde
+%%PGHOME%%/share/timezone/Atlantic/Faeroe
+%%PGHOME%%/share/timezone/Atlantic/Faroe
+%%PGHOME%%/share/timezone/Atlantic/Jan_Mayen
+%%PGHOME%%/share/timezone/Atlantic/Madeira
+%%PGHOME%%/share/timezone/Atlantic/Reykjavik
+%%PGHOME%%/share/timezone/Atlantic/South_Georgia
+%%PGHOME%%/share/timezone/Atlantic/St_Helena
+%%PGHOME%%/share/timezone/Atlantic/Stanley
+%%PGHOME%%/share/timezone/Australia/ACT
+%%PGHOME%%/share/timezone/Australia/Adelaide
+%%PGHOME%%/share/timezone/Australia/Brisbane
+%%PGHOME%%/share/timezone/Australia/Broken_Hill
+%%PGHOME%%/share/timezone/Australia/Canberra
+%%PGHOME%%/share/timezone/Australia/Currie
+%%PGHOME%%/share/timezone/Australia/Darwin
+%%PGHOME%%/share/timezone/Australia/Eucla
+%%PGHOME%%/share/timezone/Australia/Hobart
+%%PGHOME%%/share/timezone/Australia/LHI
+%%PGHOME%%/share/timezone/Australia/Lindeman
+%%PGHOME%%/share/timezone/Australia/Lord_Howe
+%%PGHOME%%/share/timezone/Australia/Melbourne
+%%PGHOME%%/share/timezone/Australia/NSW
+%%PGHOME%%/share/timezone/Australia/North
+%%PGHOME%%/share/timezone/Australia/Perth
+%%PGHOME%%/share/timezone/Australia/Queensland
+%%PGHOME%%/share/timezone/Australia/South
+%%PGHOME%%/share/timezone/Australia/Sydney
+%%PGHOME%%/share/timezone/Australia/Tasmania
+%%PGHOME%%/share/timezone/Australia/Victoria
+%%PGHOME%%/share/timezone/Australia/West
+%%PGHOME%%/share/timezone/Australia/Yancowinna
+%%PGHOME%%/share/timezone/Brazil/Acre
+%%PGHOME%%/share/timezone/Brazil/DeNoronha
+%%PGHOME%%/share/timezone/Brazil/East
+%%PGHOME%%/share/timezone/Brazil/West
+%%PGHOME%%/share/timezone/CET
+%%PGHOME%%/share/timezone/CST6CDT
+%%PGHOME%%/share/timezone/Canada/Atlantic
+%%PGHOME%%/share/timezone/Canada/Central
+%%PGHOME%%/share/timezone/Canada/East-Saskatchewan
+%%PGHOME%%/share/timezone/Canada/Eastern
+%%PGHOME%%/share/timezone/Canada/Mountain
+%%PGHOME%%/share/timezone/Canada/Newfoundland
+%%PGHOME%%/share/timezone/Canada/Pacific
+%%PGHOME%%/share/timezone/Canada/Saskatchewan
+%%PGHOME%%/share/timezone/Canada/Yukon
+%%PGHOME%%/share/timezone/Chile/Continental
+%%PGHOME%%/share/timezone/Chile/EasterIsland
+%%PGHOME%%/share/timezone/Cuba
+%%PGHOME%%/share/timezone/EET
+%%PGHOME%%/share/timezone/EST
+%%PGHOME%%/share/timezone/EST5EDT
+%%PGHOME%%/share/timezone/Egypt
+%%PGHOME%%/share/timezone/Eire
+%%PGHOME%%/share/timezone/Etc/GMT
+%%PGHOME%%/share/timezone/Etc/GMT+0
+%%PGHOME%%/share/timezone/Etc/GMT+1
+%%PGHOME%%/share/timezone/Etc/GMT+10
+%%PGHOME%%/share/timezone/Etc/GMT+11
+%%PGHOME%%/share/timezone/Etc/GMT+12
+%%PGHOME%%/share/timezone/Etc/GMT+2
+%%PGHOME%%/share/timezone/Etc/GMT+3
+%%PGHOME%%/share/timezone/Etc/GMT+4
+%%PGHOME%%/share/timezone/Etc/GMT+5
+%%PGHOME%%/share/timezone/Etc/GMT+6
+%%PGHOME%%/share/timezone/Etc/GMT+7
+%%PGHOME%%/share/timezone/Etc/GMT+8
+%%PGHOME%%/share/timezone/Etc/GMT+9
+%%PGHOME%%/share/timezone/Etc/GMT-0
+%%PGHOME%%/share/timezone/Etc/GMT-1
+%%PGHOME%%/share/timezone/Etc/GMT-10
+%%PGHOME%%/share/timezone/Etc/GMT-11
+%%PGHOME%%/share/timezone/Etc/GMT-12
+%%PGHOME%%/share/timezone/Etc/GMT-13
+%%PGHOME%%/share/timezone/Etc/GMT-14
+%%PGHOME%%/share/timezone/Etc/GMT-2
+%%PGHOME%%/share/timezone/Etc/GMT-3
+%%PGHOME%%/share/timezone/Etc/GMT-4
+%%PGHOME%%/share/timezone/Etc/GMT-5
+%%PGHOME%%/share/timezone/Etc/GMT-6
+%%PGHOME%%/share/timezone/Etc/GMT-7
+%%PGHOME%%/share/timezone/Etc/GMT-8
+%%PGHOME%%/share/timezone/Etc/GMT-9
+%%PGHOME%%/share/timezone/Etc/GMT0
+%%PGHOME%%/share/timezone/Etc/Greenwich
+%%PGHOME%%/share/timezone/Etc/UCT
+%%PGHOME%%/share/timezone/Etc/UTC
+%%PGHOME%%/share/timezone/Etc/Universal
+%%PGHOME%%/share/timezone/Etc/Zulu
+%%PGHOME%%/share/timezone/Europe/Amsterdam
+%%PGHOME%%/share/timezone/Europe/Andorra
+%%PGHOME%%/share/timezone/Europe/Athens
+%%PGHOME%%/share/timezone/Europe/Belfast
+%%PGHOME%%/share/timezone/Europe/Belgrade
+%%PGHOME%%/share/timezone/Europe/Berlin
+%%PGHOME%%/share/timezone/Europe/Bratislava
+%%PGHOME%%/share/timezone/Europe/Brussels
+%%PGHOME%%/share/timezone/Europe/Bucharest
+%%PGHOME%%/share/timezone/Europe/Budapest
+%%PGHOME%%/share/timezone/Europe/Chisinau
+%%PGHOME%%/share/timezone/Europe/Copenhagen
+%%PGHOME%%/share/timezone/Europe/Dublin
+%%PGHOME%%/share/timezone/Europe/Gibraltar
+%%PGHOME%%/share/timezone/Europe/Guernsey
+%%PGHOME%%/share/timezone/Europe/Helsinki
+%%PGHOME%%/share/timezone/Europe/Isle_of_Man
+%%PGHOME%%/share/timezone/Europe/Istanbul
+%%PGHOME%%/share/timezone/Europe/Jersey
+%%PGHOME%%/share/timezone/Europe/Kaliningrad
+%%PGHOME%%/share/timezone/Europe/Kiev
+%%PGHOME%%/share/timezone/Europe/Lisbon
+%%PGHOME%%/share/timezone/Europe/Ljubljana
+%%PGHOME%%/share/timezone/Europe/London
+%%PGHOME%%/share/timezone/Europe/Luxembourg
+%%PGHOME%%/share/timezone/Europe/Madrid
+%%PGHOME%%/share/timezone/Europe/Malta
+%%PGHOME%%/share/timezone/Europe/Mariehamn
+%%PGHOME%%/share/timezone/Europe/Minsk
+%%PGHOME%%/share/timezone/Europe/Monaco
+%%PGHOME%%/share/timezone/Europe/Moscow
+%%PGHOME%%/share/timezone/Europe/Nicosia
+%%PGHOME%%/share/timezone/Europe/Oslo
+%%PGHOME%%/share/timezone/Europe/Paris
+%%PGHOME%%/share/timezone/Europe/Podgorica
+%%PGHOME%%/share/timezone/Europe/Prague
+%%PGHOME%%/share/timezone/Europe/Riga
+%%PGHOME%%/share/timezone/Europe/Rome
+%%PGHOME%%/share/timezone/Europe/Samara
+%%PGHOME%%/share/timezone/Europe/San_Marino
+%%PGHOME%%/share/timezone/Europe/Sarajevo
+%%PGHOME%%/share/timezone/Europe/Simferopol
+%%PGHOME%%/share/timezone/Europe/Skopje
+%%PGHOME%%/share/timezone/Europe/Sofia
+%%PGHOME%%/share/timezone/Europe/Stockholm
+%%PGHOME%%/share/timezone/Europe/Tallinn
+%%PGHOME%%/share/timezone/Europe/Tirane
+%%PGHOME%%/share/timezone/Europe/Tiraspol
+%%PGHOME%%/share/timezone/Europe/Uzhgorod
+%%PGHOME%%/share/timezone/Europe/Vaduz
+%%PGHOME%%/share/timezone/Europe/Vatican
+%%PGHOME%%/share/timezone/Europe/Vienna
+%%PGHOME%%/share/timezone/Europe/Vilnius
+%%PGHOME%%/share/timezone/Europe/Volgograd
+%%PGHOME%%/share/timezone/Europe/Warsaw
+%%PGHOME%%/share/timezone/Europe/Zagreb
+%%PGHOME%%/share/timezone/Europe/Zaporozhye
+%%PGHOME%%/share/timezone/Europe/Zurich
+%%PGHOME%%/share/timezone/Factory
+%%PGHOME%%/share/timezone/GB
+%%PGHOME%%/share/timezone/GB-Eire
+%%PGHOME%%/share/timezone/GMT
+%%PGHOME%%/share/timezone/GMT+0
+%%PGHOME%%/share/timezone/GMT-0
+%%PGHOME%%/share/timezone/GMT0
+%%PGHOME%%/share/timezone/Greenwich
+%%PGHOME%%/share/timezone/HST
+%%PGHOME%%/share/timezone/Hongkong
+%%PGHOME%%/share/timezone/Iceland
+%%PGHOME%%/share/timezone/Indian/Antananarivo
+%%PGHOME%%/share/timezone/Indian/Chagos
+%%PGHOME%%/share/timezone/Indian/Christmas
+%%PGHOME%%/share/timezone/Indian/Cocos
+%%PGHOME%%/share/timezone/Indian/Comoro
+%%PGHOME%%/share/timezone/Indian/Kerguelen
+%%PGHOME%%/share/timezone/Indian/Mahe
+%%PGHOME%%/share/timezone/Indian/Maldives
+%%PGHOME%%/share/timezone/Indian/Mauritius
+%%PGHOME%%/share/timezone/Indian/Mayotte
+%%PGHOME%%/share/timezone/Indian/Reunion
+%%PGHOME%%/share/timezone/Iran
+%%PGHOME%%/share/timezone/Israel
+%%PGHOME%%/share/timezone/Jamaica
+%%PGHOME%%/share/timezone/Japan
+%%PGHOME%%/share/timezone/Kwajalein
+%%PGHOME%%/share/timezone/Libya
+%%PGHOME%%/share/timezone/MET
+%%PGHOME%%/share/timezone/MST
+%%PGHOME%%/share/timezone/MST7MDT
+%%PGHOME%%/share/timezone/Mexico/BajaNorte
+%%PGHOME%%/share/timezone/Mexico/BajaSur
+%%PGHOME%%/share/timezone/Mexico/General
+%%PGHOME%%/share/timezone/Mideast/Riyadh87
+%%PGHOME%%/share/timezone/Mideast/Riyadh88
+%%PGHOME%%/share/timezone/Mideast/Riyadh89
+%%PGHOME%%/share/timezone/NZ
+%%PGHOME%%/share/timezone/NZ-CHAT
+%%PGHOME%%/share/timezone/Navajo
+%%PGHOME%%/share/timezone/PRC
+%%PGHOME%%/share/timezone/PST8PDT
+%%PGHOME%%/share/timezone/Pacific/Apia
+%%PGHOME%%/share/timezone/Pacific/Auckland
+%%PGHOME%%/share/timezone/Pacific/Chatham
+%%PGHOME%%/share/timezone/Pacific/Chuuk
+%%PGHOME%%/share/timezone/Pacific/Easter
+%%PGHOME%%/share/timezone/Pacific/Efate
+%%PGHOME%%/share/timezone/Pacific/Enderbury
+%%PGHOME%%/share/timezone/Pacific/Fakaofo
+%%PGHOME%%/share/timezone/Pacific/Fiji
+%%PGHOME%%/share/timezone/Pacific/Funafuti
+%%PGHOME%%/share/timezone/Pacific/Galapagos
+%%PGHOME%%/share/timezone/Pacific/Gambier
+%%PGHOME%%/share/timezone/Pacific/Guadalcanal
+%%PGHOME%%/share/timezone/Pacific/Guam
+%%PGHOME%%/share/timezone/Pacific/Honolulu
+%%PGHOME%%/share/timezone/Pacific/Johnston
+%%PGHOME%%/share/timezone/Pacific/Kiritimati
+%%PGHOME%%/share/timezone/Pacific/Kosrae
+%%PGHOME%%/share/timezone/Pacific/Kwajalein
+%%PGHOME%%/share/timezone/Pacific/Majuro
+%%PGHOME%%/share/timezone/Pacific/Marquesas
+%%PGHOME%%/share/timezone/Pacific/Midway
+%%PGHOME%%/share/timezone/Pacific/Nauru
+%%PGHOME%%/share/timezone/Pacific/Niue
+%%PGHOME%%/share/timezone/Pacific/Norfolk
+%%PGHOME%%/share/timezone/Pacific/Noumea
+%%PGHOME%%/share/timezone/Pacific/Pago_Pago
+%%PGHOME%%/share/timezone/Pacific/Palau
+%%PGHOME%%/share/timezone/Pacific/Pitcairn
+%%PGHOME%%/share/timezone/Pacific/Pohnpei
+%%PGHOME%%/share/timezone/Pacific/Ponape
+%%PGHOME%%/share/timezone/Pacific/Port_Moresby
+%%PGHOME%%/share/timezone/Pacific/Rarotonga
+%%PGHOME%%/share/timezone/Pacific/Saipan
+%%PGHOME%%/share/timezone/Pacific/Samoa
+%%PGHOME%%/share/timezone/Pacific/Tahiti
+%%PGHOME%%/share/timezone/Pacific/Tarawa
+%%PGHOME%%/share/timezone/Pacific/Tongatapu
+%%PGHOME%%/share/timezone/Pacific/Truk
+%%PGHOME%%/share/timezone/Pacific/Wake
+%%PGHOME%%/share/timezone/Pacific/Wallis
+%%PGHOME%%/share/timezone/Pacific/Yap
+%%PGHOME%%/share/timezone/Poland
+%%PGHOME%%/share/timezone/Portugal
+%%PGHOME%%/share/timezone/ROC
+%%PGHOME%%/share/timezone/ROK
+%%PGHOME%%/share/timezone/Singapore
+%%PGHOME%%/share/timezone/Turkey
+%%PGHOME%%/share/timezone/UCT
+%%PGHOME%%/share/timezone/US/Alaska
+%%PGHOME%%/share/timezone/US/Aleutian
+%%PGHOME%%/share/timezone/US/Arizona
+%%PGHOME%%/share/timezone/US/Central
+%%PGHOME%%/share/timezone/US/East-Indiana
+%%PGHOME%%/share/timezone/US/Eastern
+%%PGHOME%%/share/timezone/US/Hawaii
+%%PGHOME%%/share/timezone/US/Indiana-Starke
+%%PGHOME%%/share/timezone/US/Michigan
+%%PGHOME%%/share/timezone/US/Mountain
+%%PGHOME%%/share/timezone/US/Pacific
+%%PGHOME%%/share/timezone/US/Pacific-New
+%%PGHOME%%/share/timezone/US/Samoa
+%%PGHOME%%/share/timezone/UTC
+%%PGHOME%%/share/timezone/Universal
+%%PGHOME%%/share/timezone/W-SU
+%%PGHOME%%/share/timezone/WET
+%%PGHOME%%/share/timezone/Zulu
+%%PGHOME%%/share/timezone/posixrules
+%%PGHOME%%/share/timezonesets/Africa.txt
+%%PGHOME%%/share/timezonesets/America.txt
+%%PGHOME%%/share/timezonesets/Antarctica.txt
+%%PGHOME%%/share/timezonesets/Asia.txt
+%%PGHOME%%/share/timezonesets/Atlantic.txt
+%%PGHOME%%/share/timezonesets/Australia
+%%PGHOME%%/share/timezonesets/Australia.txt
+%%PGHOME%%/share/timezonesets/Default
+%%PGHOME%%/share/timezonesets/Etc.txt
+%%PGHOME%%/share/timezonesets/Europe.txt
+%%PGHOME%%/share/timezonesets/India
+%%PGHOME%%/share/timezonesets/Indian.txt
+%%PGHOME%%/share/timezonesets/Pacific.txt
+ at dirrm %%PGHOME%%/share/timezone/Africa
+ at dirrm %%PGHOME%%/share/timezone/America/Argentina
+ at dirrm %%PGHOME%%/share/timezone/America/Indiana
+ at dirrm %%PGHOME%%/share/timezone/America/Kentucky
+ at dirrm %%PGHOME%%/share/timezone/America/North_Dakota
+ at dirrm %%PGHOME%%/share/timezone/America
+ at dirrm %%PGHOME%%/share/timezone/Antarctica
+ at dirrm %%PGHOME%%/share/timezone/Arctic
+ at dirrm %%PGHOME%%/share/timezone/Asia
+ at dirrm %%PGHOME%%/share/timezone/Atlantic
+ at dirrm %%PGHOME%%/share/timezone/Australia
+ at dirrm %%PGHOME%%/share/timezone/Brazil
+ at dirrm %%PGHOME%%/share/timezone/Canada
+ at dirrm %%PGHOME%%/share/timezone/Chile
+ at dirrm %%PGHOME%%/share/timezone/Etc
+ at dirrm %%PGHOME%%/share/timezone/Europe
+ at dirrm %%PGHOME%%/share/timezone/Indian
+ at dirrm %%PGHOME%%/share/timezone/Mexico
+ at dirrm %%PGHOME%%/share/timezone/Mideast
+ at dirrm %%PGHOME%%/share/timezone/Pacific
+ at dirrm %%PGHOME%%/share/timezone/US
+ at dirrm %%PGHOME%%/share/timezone
+ at dirrm %%PGHOME%%/share/timezonesets
+%%PGHOME%%/share/tsearch_data/danish.stop
+%%PGHOME%%/share/tsearch_data/dutch.stop
+%%PGHOME%%/share/tsearch_data/english.stop
+%%PGHOME%%/share/tsearch_data/finnish.stop
+%%PGHOME%%/share/tsearch_data/french.stop
+%%PGHOME%%/share/tsearch_data/german.stop
+%%PGHOME%%/share/tsearch_data/hungarian.stop
+%%PGHOME%%/share/tsearch_data/italian.stop
+%%PGHOME%%/share/tsearch_data/norwegian.stop
+%%PGHOME%%/share/tsearch_data/portuguese.stop
+%%PGHOME%%/share/tsearch_data/russian.stop
+%%PGHOME%%/share/tsearch_data/spanish.stop
+%%PGHOME%%/share/tsearch_data/swedish.stop
+%%PGHOME%%/share/tsearch_data/turkish.stop
+%%PGHOME%%/share/tsearch_data/hunspell_sample.affix
+%%PGHOME%%/share/tsearch_data/ispell_sample.affix
+%%PGHOME%%/share/tsearch_data/ispell_sample.dict
+%%PGHOME%%/share/tsearch_data/synonym_sample.syn
+%%PGHOME%%/share/tsearch_data/thesaurus_sample.ths
+ at dirrm %%PGHOME%%/share/tsearch_data
 @unexec echo "Warning: If you will *NOT* use this package anymore, please remove the pgsql user manually."
- at dirrmtry share/postgresql
+ at dirrmtry %%PGHOME%%/share/
 @dirrmtry etc/periodic/daily
 @dirrmtry etc/periodic
- at dirrmtry lib/postgresql
- at dirrmtry pgsql
+ at dirrmtry %%PGHOME%%/lib
+ at dirrmtry %%PGHOME%%/pgsql
diff -ruN ports/databases/postgresql90-server/postgresql/9.0/doc/README-server ../20100922/databases/postgresql90-server/postgresql/9.0/doc/README-server
--- ports/databases/postgresql90-server/postgresql/9.0/doc/README-server	1970-01-01 03:00:00.000000000 +0300
+++ ../20100922/databases/postgresql90-server/postgresql/9.0/doc/README-server	2010-09-27 11:47:01.865503431 +0400
@@ -0,0 +1,70 @@
+For procedural languages and postgresql functions, please note that
+you might have to update them when updating the server.
+
+If you have many tables and many clients running, consider raising
+kern.maxfiles using sysctl(8), or reconfigure your kernel
+appropriately.
+
+The port is set up to use autovacuum for new databases, but you might
+also want to vacuum and perhaps backup your database regularly. There
+is a periodic script, /usr/local/etc/periodic/daily/502.pgsql, that
+you may find useful. You can use it to backup and perfom vacuum on all
+databases nightly. Per default, it perfoms `vacuum analyze'. See the
+script for instructions. For autovacuum settings, please review
+~pgsql/data/postgresql.conf.
+
+To allow many simultaneous connections to your PostgreSQL server, you
+should raise the SystemV shared memory limits in your kernel. Here are
+example values for allowing up to 180 clients (configurations in
+postgresql.conf also needed, of course):
+  options         SYSVSHM
+  options         SYSVSEM
+  options         SYSVMSG
+  options         SHMMAXPGS=65536
+  options         SEMMNI=40
+  options         SEMMNS=240
+  options         SEMUME=40
+  options         SEMMNU=120
+
+If you plan to access your PostgreSQL server using ODBC, please
+consider running the SQL script /usr/local/share/postgresql/odbc.sql
+to get the functions required for ODBC compliance.
+
+Please note that if you use the rc script,
+/usr/local/etc/rc.d/postgresql, to initialize the database, unicode
+(UTF-8) will be used to store character data by default.  Set
+postgresql_initdb_flags or use login.conf settings described below to
+alter this behaviour. See the start rc script for more info.
+
+To set limits, environment stuff like locale and collation and other
+things, you can set up a class in /etc/login.conf before initializing
+the database. Add something similar to this to /etc/login.conf:
+---
+postgres:\
+	:lang=en_US.UTF-8:\
+	:setenv=LC_COLLATE=C:\
+	:tc=default:
+---
+and run `cap_mkdb /etc/login.conf'.
+Then add 'postgresql_class="postgres"' to /etc/rc.conf.
+
+======================================================================
+
+To initialize the database, run
+
+  /usr/local/etc/rc.d/postgresql initdb
+
+You can then start PostgreSQL by running:
+
+  /usr/local/etc/rc.d/postgresql start
+
+For postmaster settings, see ~pgsql/data/postgresql.conf
+
+NB. FreeBSD's PostgreSQL port logs to syslog by default
+    See ~pgsql/data/postgresql.conf for more info
+
+======================================================================
+
+To run PostgreSQL at startup, add
+'postgresql_enable="YES"' to /etc/rc.conf
+
diff -ruN ports/databases/postgresql90-client/Makefile ../20100922/databases/postgresql90-client/Makefile
--- ports/databases/postgresql90-client/Makefile	2010-09-20 17:46:46.000000000 +0400
+++ ../20100922/databases/postgresql90-client/Makefile	2010-09-27 10:39:28.972848423 +0400
@@ -14,10 +14,19 @@
 
 MASTERDIR=	${.CURDIR}/../postgresql90-server
 
+PGRELHOME=postgresql/9.0
+PGHOME=${PREFIX}/${PGRELHOME}
+
+
 BUILD_DIRS=	config src/include src/interfaces \
 		src/bin/pg_dump src/bin/psql src/bin/scripts src/bin/pg_config \
 		doc src/makefiles
 CLIENT_ONLY=	yes
+
+.if defined($PGHOME)
+USE_LDCONFIG=${PGHOME}/lib
+.else
 USE_LDCONFIG=	yes
+.endif
 
 .include "${MASTERDIR}/Makefile"
--- ports/Mk/bsd.database.mk	2010-09-21 16:20:26.000000000 +0400
+++ ../20100922/Mk/bsd.database.mk	2010-09-22 17:02:58.246009407 +0400
@@ -177,8 +177,14 @@
 PGSQL90_LIBVER=		5
 
 # Setting/finding PostgreSQL version we want.
-.if exists(${LOCALBASE}/bin/pg_config)
+.if defined(PGHOME) 
+.  if exists(${PGHOME}/bin/pg_config)
+_PGSQL_VER!=    ${PGHOME}/bin/pg_config --version | ${SED} -n 's/PostgreSQL[^0-9]*\([0-9][0-9]*\)\.\([0-9][0-9]*\)[^0-9].*/\1\2/p'
+.  endif
+.else
+.  if exists(${LOCALBASE}/bin/pg_config)
 _PGSQL_VER!=	${LOCALBASE}/bin/pg_config --version | ${SED} -n 's/PostgreSQL[^0-9]*\([0-9][0-9]*\)\.\([0-9][0-9]*\)[^0-9].*/\1\2/p'
+.  endif
 .endif
 
 .if defined(WANT_PGSQL_VER)


More information about the freebsd-ports mailing list