pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/databases Changes 8.2.0:
details: https://anonhg.NetBSD.org/pkgsrc/rev/0b5994d72e63
branches: trunk
changeset: 522448:0b5994d72e63
user: adam <adam%pkgsrc.org@localhost>
date: Sat Dec 09 15:34:13 2006 +0000
description:
Changes 8.2.0:
* Query language enhancements including "INSERT/UPDATE/DELETE
RETURNING", multirow VALUES lists, and optional target-table alias
in "UPDATE"/"DELETE"
* Index creation without blocking concurrent
"INSERT"/"UPDATE"/"DELETE" operations
* Many query optimization improvements, including support for
reordering outer joins
* Improved sorting performance with lower memory usage
* More efficient locking with better concurrency
* More efficient vacuuming
* Easier administration of warm standby servers
* New FILLFACTOR support for tables and indexes
* Monitoring, logging, and performance tuning additions
* More control over creating and dropping objects
* Table inheritance relationships can be defined for and removed from
pre-existing tables
* "COPY TO" can copy the output of an arbitrary "SELECT" statement
* Array improvements, including nulls in arrays
* Aggregate-function improvements, including multiple-input
aggregates and SQL:2003 statistical functions
* Many "contrib/" improvements
diffstat:
databases/postgresql82-client/DESCR | 9 +
databases/postgresql82-client/Makefile | 90 +
databases/postgresql82-client/PLIST | 1526 ++++++++++++++++++++++++
databases/postgresql82-client/buildlink3.mk | 34 +
databases/postgresql82-server/DEINSTALL | 20 +
databases/postgresql82-server/DESCR | 9 +
databases/postgresql82-server/MESSAGE | 19 +
databases/postgresql82-server/Makefile | 93 +
databases/postgresql82-server/PLIST | 649 ++++++++++
databases/postgresql82-server/files/pgsql.sh | 144 ++
databases/postgresql82/DESCR | 9 +
databases/postgresql82/Makefile | 19 +
databases/postgresql82/Makefile.common | 175 ++
databases/postgresql82/Makefile.mirrors | 101 +
databases/postgresql82/PLIST | 2 +
databases/postgresql82/distinfo | 19 +
databases/postgresql82/files/GNUmakefile.libpq | 20 +
databases/postgresql82/files/Makefile.custom | 42 +
databases/postgresql82/files/Makefile.libtool | 120 +
databases/postgresql82/files/dynloader-ltdl.h | 17 +
databases/postgresql82/options.mk | 13 +
databases/postgresql82/patches/patch-aa | 14 +
databases/postgresql82/patches/patch-ab | 23 +
databases/postgresql82/patches/patch-ac | 15 +
databases/postgresql82/patches/patch-ad | 79 +
databases/postgresql82/patches/patch-ae | 45 +
databases/postgresql82/patches/patch-af | 30 +
databases/postgresql82/patches/patch-ag | 15 +
databases/postgresql82/patches/patch-ah | 13 +
databases/postgresql82/patches/patch-ai | 80 +
databases/postgresql82/patches/patch-aj | 30 +
databases/postgresql82/patches/patch-ak | 30 +
databases/postgresql82/patches/patch-al | 29 +
databases/postgresql82/patches/patch-am | 39 +
databases/postgresql82/patches/patch-an | 13 +
35 files changed, 3585 insertions(+), 0 deletions(-)
diffs (truncated from 3725 to 300 lines):
diff -r 2f57812b8b1e -r 0b5994d72e63 databases/postgresql82-client/DESCR
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/databases/postgresql82-client/DESCR Sat Dec 09 15:34:13 2006 +0000
@@ -0,0 +1,9 @@
+PostgreSQL is a robust, next-generation, Object-Relational DBMS (ORDBMS),
+derived from the Berkeley Postgres database management system. While
+PostgreSQL retains the powerful object-relational data model, rich data types
+and easy extensibility of Postgres, it replaces the PostQuel query language
+with an extended subset of SQL.
+
+PostgreSQL is free and the complete source is available.
+
+This package contains the database client programs.
diff -r 2f57812b8b1e -r 0b5994d72e63 databases/postgresql82-client/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/databases/postgresql82-client/Makefile Sat Dec 09 15:34:13 2006 +0000
@@ -0,0 +1,90 @@
+# $NetBSD: Makefile,v 1.1.1.1 2006/12/09 15:34:59 adam Exp $
+
+PKGNAME= postgresql82-client-${BASE_VERS}
+COMMENT= PostgreSQL database client programs
+
+PKG_DESTDIR_SUPPORT= user-destdir
+
+.include "../../databases/postgresql82/Makefile.common"
+
+USE_TOOLS+= gzip tar
+USE_LIBTOOL= yes
+CONFIGURE_ARGS+= --with-openssl
+CONFIGURE_ARGS+= --with-readline
+CONFIGURE_ARGS+= --with-zlib
+
+CONFLICTS+= postgresql82-lib-[0-9]*
+CONFLICTS+= postgresql82-docs-[0-9]*
+
+# 1. The thread-safety test in ${WRSRC}/src/tools/thread does not pass on
+# NetBSD (missing strerror_r) or DragonFly.
+# 2. configure with --enable-thread-safety fails on OpenBSD.
+#
+.if ${OPSYS} == "NetBSD" || ${OPSYS} == "DragonFly" || ${OPSYS} == "OpenBSD"
+PGSQL_THREAD_SAFETY?= no
+.endif
+PGSQL_THREAD_SAFETY?= yes
+BUILD_DEFS+= PGSQL_THREAD_SAFETY
+
+.if !empty(PGSQL_THREAD_SAFETY:M[yY][eE][sS])
+. include "../../mk/pthread.buildlink3.mk"
+. if (${PTHREAD_TYPE} == "native")
+CONFIGURE_ARGS+= --enable-thread-safety
+. endif
+.endif
+
+INSTALL_DIRS= src/include
+INSTALL_DIRS+= src/interfaces
+INSTALL_DIRS+= src/bin
+INSTALL_DIRS+= doc
+
+BUILD_DIRS= ${INSTALL_DIRS}
+
+# Without this, the Darwin build fails (related to -bundle_loader).
+BUILD_DIRS+= src/backend
+
+PKG_OPTIONS_VAR= PKG_OPTIONS.postgresql82-client
+.include "../../databases/postgresql82/options.mk"
+
+.for _file_ in pg_service.conf psqlrc
+CONF_FILES+= ${PG_DATA_DIR}/${_file_}.sample ${PG_ETC_DIR}/${_file_}
+.endfor
+.if !empty(PG_SUBPREFIX)
+PLIST_SUBST+= PG_DIRRM_SUBPREFIX="@dirrm ${PG_SUBPREFIX}"
+.else
+PLIST_SUBST+= PG_DIRRM_SUBPREFIX="@comment empty line"
+.endif
+
+# XXX work around core dumps with the native libedit
+USE_GNU_READLINE= yes
+
+.include "../../devel/readline/buildlink3.mk"
+.include "../../devel/zlib/buildlink3.mk"
+.include "../../security/openssl/buildlink3.mk"
+
+# On Solaris, avoid conflicts between "${SSLBASE}/include/openssl/des.h"
+# and "/usr/include/crypt.h" -- we want the definitions in the former.
+#
+.if ${OPSYS} == "SunOS"
+post-wrapper:
+ touch ${BUILDLINK_DIR}/include/crypt.h
+.endif
+
+pre-build:
+ ${_PKG_SILENT}${_PKG_DEBUG}${_ULIMIT_CMD} \
+ cd ${WRKSRC}/src/backend && \
+ env ${MAKE_ENV} ${MAKE_PROGRAM} ${BUILD_MAKE_FLAGS} \
+ ../../src/include/parser/parse.h \
+ ../../src/include/utils/fmgroids.h
+
+post-install:
+ cd ${WRKSRC}/doc; for file in \
+ FAQ* KNOWN_BUGS MISSING_FEATURES README.* TODO \
+ bug.template; \
+ do \
+ ${INSTALL_DATA} $$file ${DESTDIR}${PG_DOC_DIR}/$$file; \
+ done
+ cp -R ${WRKSRC}/doc/TODO.detail ${DESTDIR}${PG_DOC_DIR}
+ chown -R ${DOCOWN}:${DOCGRP} ${DESTDIR}${PG_DOC_DIR}/TODO.detail
+
+.include "../../mk/bsd.pkg.mk"
diff -r 2f57812b8b1e -r 0b5994d72e63 databases/postgresql82-client/PLIST
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/databases/postgresql82-client/PLIST Sat Dec 09 15:34:13 2006 +0000
@@ -0,0 +1,1526 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2006/12/09 15:35:02 adam Exp $
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/af/LC_MESSAGES/libpq.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/cs/LC_MESSAGES/initdb.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/cs/LC_MESSAGES/libpq.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/cs/LC_MESSAGES/pg_config.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/cs/LC_MESSAGES/pg_controldata.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/cs/LC_MESSAGES/pg_ctl.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/cs/LC_MESSAGES/pg_dump.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/cs/LC_MESSAGES/pg_resetxlog.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/cs/LC_MESSAGES/pgscripts.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/cs/LC_MESSAGES/psql.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/de/LC_MESSAGES/initdb.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/de/LC_MESSAGES/libpq.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/de/LC_MESSAGES/pg_config.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/de/LC_MESSAGES/pg_controldata.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/de/LC_MESSAGES/pg_ctl.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/de/LC_MESSAGES/pg_dump.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/de/LC_MESSAGES/pg_resetxlog.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/de/LC_MESSAGES/pgscripts.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/de/LC_MESSAGES/psql.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/es/LC_MESSAGES/initdb.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/es/LC_MESSAGES/libpq.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/es/LC_MESSAGES/pg_config.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/es/LC_MESSAGES/pg_controldata.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/es/LC_MESSAGES/pg_ctl.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/es/LC_MESSAGES/pg_dump.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/es/LC_MESSAGES/pg_resetxlog.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/es/LC_MESSAGES/pgscripts.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/es/LC_MESSAGES/psql.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/fa/LC_MESSAGES/pg_controldata.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/fa/LC_MESSAGES/psql.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/fr/LC_MESSAGES/initdb.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/fr/LC_MESSAGES/libpq.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/fr/LC_MESSAGES/pg_config.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/fr/LC_MESSAGES/pg_controldata.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/fr/LC_MESSAGES/pg_ctl.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/fr/LC_MESSAGES/pg_dump.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/fr/LC_MESSAGES/pg_resetxlog.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/fr/LC_MESSAGES/pgscripts.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/fr/LC_MESSAGES/psql.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/hr/LC_MESSAGES/libpq.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/hu/LC_MESSAGES/pg_controldata.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/hu/LC_MESSAGES/pg_resetxlog.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/hu/LC_MESSAGES/psql.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/it/LC_MESSAGES/initdb.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/it/LC_MESSAGES/libpq.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/it/LC_MESSAGES/pg_controldata.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/it/LC_MESSAGES/pg_dump.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/it/LC_MESSAGES/pg_resetxlog.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/it/LC_MESSAGES/pgscripts.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/it/LC_MESSAGES/psql.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/ko/LC_MESSAGES/initdb.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/ko/LC_MESSAGES/libpq.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/ko/LC_MESSAGES/pg_config.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/ko/LC_MESSAGES/pg_controldata.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/ko/LC_MESSAGES/pg_ctl.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/ko/LC_MESSAGES/pg_dump.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/ko/LC_MESSAGES/pg_resetxlog.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/ko/LC_MESSAGES/pgscripts.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/ko/LC_MESSAGES/psql.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/nb/LC_MESSAGES/libpq.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/nb/LC_MESSAGES/pg_controldata.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/nb/LC_MESSAGES/pg_dump.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/nb/LC_MESSAGES/pg_resetxlog.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/nb/LC_MESSAGES/psql.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/pl/LC_MESSAGES/initdb.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/pl/LC_MESSAGES/libpq.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/pl/LC_MESSAGES/pg_config.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/pl/LC_MESSAGES/pg_controldata.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/pt_BR/LC_MESSAGES/initdb.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/pt_BR/LC_MESSAGES/libpq.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/pt_BR/LC_MESSAGES/pg_config.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/pt_BR/LC_MESSAGES/pg_controldata.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/pt_BR/LC_MESSAGES/pg_ctl.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/pt_BR/LC_MESSAGES/pg_dump.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/pt_BR/LC_MESSAGES/pg_resetxlog.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/pt_BR/LC_MESSAGES/pgscripts.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/pt_BR/LC_MESSAGES/psql.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/ro/LC_MESSAGES/initdb.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/ro/LC_MESSAGES/pg_config.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/ro/LC_MESSAGES/pg_controldata.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/ro/LC_MESSAGES/pg_ctl.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/ro/LC_MESSAGES/pg_dump.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/ro/LC_MESSAGES/pg_resetxlog.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/ro/LC_MESSAGES/pgscripts.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/ro/LC_MESSAGES/psql.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/ru/LC_MESSAGES/initdb.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/ru/LC_MESSAGES/libpq.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/ru/LC_MESSAGES/pg_config.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/ru/LC_MESSAGES/pg_controldata.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/ru/LC_MESSAGES/pg_ctl.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/ru/LC_MESSAGES/pg_dump.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/ru/LC_MESSAGES/pg_resetxlog.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/ru/LC_MESSAGES/pgscripts.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/ru/LC_MESSAGES/psql.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/sk/LC_MESSAGES/initdb.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/sk/LC_MESSAGES/libpq.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/sk/LC_MESSAGES/pg_controldata.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/sk/LC_MESSAGES/pg_ctl.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/sk/LC_MESSAGES/pg_dump.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/sk/LC_MESSAGES/pg_resetxlog.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/sk/LC_MESSAGES/pgscripts.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/sk/LC_MESSAGES/psql.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/sl/LC_MESSAGES/initdb.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/sl/LC_MESSAGES/libpq.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/sl/LC_MESSAGES/pg_config.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/sl/LC_MESSAGES/pg_controldata.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/sl/LC_MESSAGES/pg_ctl.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/sl/LC_MESSAGES/pg_dump.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/sl/LC_MESSAGES/pg_resetxlog.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/sl/LC_MESSAGES/pgscripts.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/sl/LC_MESSAGES/psql.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/sv/LC_MESSAGES/initdb.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/sv/LC_MESSAGES/libpq.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/sv/LC_MESSAGES/pg_config.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/sv/LC_MESSAGES/pg_controldata.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/sv/LC_MESSAGES/pg_ctl.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/sv/LC_MESSAGES/pg_dump.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/sv/LC_MESSAGES/pg_resetxlog.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/sv/LC_MESSAGES/pgscripts.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/sv/LC_MESSAGES/psql.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/tr/LC_MESSAGES/initdb.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/tr/LC_MESSAGES/libpq.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/tr/LC_MESSAGES/pg_config.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/tr/LC_MESSAGES/pg_controldata.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/tr/LC_MESSAGES/pg_ctl.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/tr/LC_MESSAGES/pg_dump.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/tr/LC_MESSAGES/pg_resetxlog.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/tr/LC_MESSAGES/pgscripts.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/tr/LC_MESSAGES/psql.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/zh_CN/LC_MESSAGES/initdb.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/zh_CN/LC_MESSAGES/libpq.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/zh_CN/LC_MESSAGES/pg_config.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/zh_CN/LC_MESSAGES/pg_controldata.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/zh_CN/LC_MESSAGES/pg_ctl.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/zh_CN/LC_MESSAGES/pg_dump.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/zh_CN/LC_MESSAGES/pg_resetxlog.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/zh_CN/LC_MESSAGES/pgscripts.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/zh_CN/LC_MESSAGES/psql.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/zh_TW/LC_MESSAGES/initdb.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/zh_TW/LC_MESSAGES/libpq.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/zh_TW/LC_MESSAGES/pg_config.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/zh_TW/LC_MESSAGES/pg_controldata.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/zh_TW/LC_MESSAGES/pg_ctl.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/zh_TW/LC_MESSAGES/pg_dump.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/zh_TW/LC_MESSAGES/pg_resetxlog.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/zh_TW/LC_MESSAGES/pgscripts.mo
+${PG_SUBPREFIX}${PKGLOCALEDIR}/locale/zh_TW/LC_MESSAGES/psql.mo
+${PG_SUBPREFIX}bin/clusterdb
+${PG_SUBPREFIX}bin/createdb
+${PG_SUBPREFIX}bin/createlang
+${PG_SUBPREFIX}bin/createuser
+${PG_SUBPREFIX}bin/dropdb
+${PG_SUBPREFIX}bin/droplang
+${PG_SUBPREFIX}bin/dropuser
+${PG_SUBPREFIX}bin/ecpg
+${PG_SUBPREFIX}bin/initdb
+${PG_SUBPREFIX}bin/ipcclean
+${PG_SUBPREFIX}bin/pg_config
+${PG_SUBPREFIX}bin/pg_controldata
+${PG_SUBPREFIX}bin/pg_ctl
+${PG_SUBPREFIX}bin/pg_dump
+${PG_SUBPREFIX}bin/pg_dumpall
+${PG_SUBPREFIX}bin/pg_resetxlog
+${PG_SUBPREFIX}bin/pg_restore
+${PG_SUBPREFIX}bin/psql
+${PG_SUBPREFIX}bin/reindexdb
+${PG_SUBPREFIX}bin/vacuumdb
+${PG_SUBPREFIX}include/ecpg_config.h
+${PG_SUBPREFIX}include/ecpg_informix.h
+${PG_SUBPREFIX}include/ecpgerrno.h
+${PG_SUBPREFIX}include/ecpglib.h
+${PG_SUBPREFIX}include/ecpgtype.h
+${PG_SUBPREFIX}include/libpq-fe.h
+${PG_SUBPREFIX}include/libpq/libpq-fs.h
+${PG_SUBPREFIX}include/pg_config.h
+${PG_SUBPREFIX}include/pg_config_manual.h
+${PG_SUBPREFIX}include/pg_config_os.h
+${PG_SUBPREFIX}include/pgtypes_date.h
+${PG_SUBPREFIX}include/pgtypes_error.h
+${PG_SUBPREFIX}include/pgtypes_interval.h
+${PG_SUBPREFIX}include/pgtypes_numeric.h
+${PG_SUBPREFIX}include/pgtypes_timestamp.h
+${PG_SUBPREFIX}include/postgres_ext.h
+${PG_SUBPREFIX}include/postgresql/informix/esql/datetime.h
+${PG_SUBPREFIX}include/postgresql/informix/esql/decimal.h
+${PG_SUBPREFIX}include/postgresql/informix/esql/sqlda.h
+${PG_SUBPREFIX}include/postgresql/informix/esql/sqltypes.h
+${PG_SUBPREFIX}include/postgresql/internal/c.h
Home |
Main Index |
Thread Index |
Old Index