Update to PostgreSQL 7.4.3
Changes in the package layout means that there is now a -client and -server subpackage, and users no longer need to decide which, as the -server depends on the -client, just like the sane cases in mysql and openldap. Other changes include: * Removal of the tcl FLAVOR until someone with more tcl/tk knowledge can make it work correctly. * The INSTALL-server script now created a _postgresql user and group if they don't already exist, and also a default database in /var/postgresql if that directory also doesn't exist. * The port is marked for NO_SHARED_ARCHS as the -server subpackage needs shared lib support to build. * The port will build with spinlocks disabled on hppa until someone can check and test this problem more closely. Built and checked on i386, sparc64, amd64, macppc (waiting for regress test feedback). Dependent packages will be updated after this commit, shortly.
This commit is contained in:
parent
0bc83833ba
commit
565ffb7a61
@ -1,15 +1,15 @@
|
||||
# $OpenBSD: Makefile,v 1.68 2004/02/04 07:39:18 sturm Exp $
|
||||
# $OpenBSD: Makefile,v 1.69 2004/07/26 10:10:46 peter Exp $
|
||||
|
||||
COMMENT= "PostgreSQL RDBMS"
|
||||
COMMENT-tcl= "PostgreSQL RDBMS tcl libraries and utilities"
|
||||
COMMENT-clients="PostgreSQL RDBMS client libraries and utilities"
|
||||
COMMENT= "PostgreSQL RDBMS (client)"
|
||||
COMMENT-server= "PostgreSQL RDBMS (server)"
|
||||
COMMENT-docs= "PostgreSQL RDBMS documentation"
|
||||
|
||||
VERSION= 7.3.5
|
||||
VERSION= 7.4.3
|
||||
DISTNAME= postgresql-${VERSION}
|
||||
PKGNAME-clients=postgresql-clients-${VERSION}
|
||||
FULLPKGNAME= postgresql-client-${VERSION}
|
||||
PKGNAME-server= postgresql-server-${VERSION}
|
||||
PKGNAME-docs= postgresql-docs-${VERSION}
|
||||
PKGNAME-tcl= postgresql-tcl-${VERSION}
|
||||
|
||||
CATEGORIES= databases
|
||||
|
||||
HOMEPAGE= http://www.postgresql.org/
|
||||
@ -17,26 +17,23 @@ HOMEPAGE= http://www.postgresql.org/
|
||||
MAINTAINER= Brandon Palmer <bpalmer@crimelabs.net>, \
|
||||
Peter Galbavy <peter.galbavy@knowtion.net>
|
||||
|
||||
# BSD
|
||||
PERMIT_PACKAGE_CDROM= "without fee clause"
|
||||
PERMIT_PACKAGE_FTP= Yes
|
||||
PERMIT_DISTFILES_CDROM= "without fee clause"
|
||||
PERMIT_DISTFILES_FTP= Yes
|
||||
|
||||
MASTER_SITES= \
|
||||
ftp://ftp.us.postgresql.org/source/v${VERSION}/ \
|
||||
ftp://ftp.au.postgresql.org/pub/postgresql/source/v${VERSION}/ \
|
||||
ftp://ftp.at.postgresql.org/db/www.postgresql.org/pub/source/v${VERSION}/ \
|
||||
ftp://ftp.cl.postgresql.org/pub/GNU/pgsql/source/v${VERSION}/ \
|
||||
ftp://ftp.cz.postgresql.org/pub/ftp.postgresql.org/source/v${VERSION}/ \
|
||||
ftp://ftp.dk.postgresql.org/mirrors/postgresql/source/v${VERSION}/
|
||||
MASTER_SITES= ftp://ftp3.us.postgresql.org/pub/postgresql/source/v${VERSION}/ \
|
||||
ftp://ftp.postgresql.org/pub/source/v${VERSION}/
|
||||
|
||||
PSEUDO_FLAVORS= tcl
|
||||
FLAVOR?=
|
||||
|
||||
MULTI_PACKAGES= -clients -docs
|
||||
MULTI_PACKAGES= -server -docs
|
||||
SUBPACKAGE?=
|
||||
|
||||
# The -client SUBPACKAGE should build and run fine on static arches,
|
||||
# but the server requires loadable library support. Until we figure
|
||||
# out the correct incantation to not build the server on those systems,
|
||||
# simply don't build for them, yet.
|
||||
NOT_FOR_ARCHS= ${NO_SHARED_ARCHS}
|
||||
|
||||
MAKE_FILE= GNUmakefile
|
||||
|
||||
SUBST_VARS= VERSION
|
||||
@ -44,16 +41,37 @@ SUBST_VARS= VERSION
|
||||
USE_GMAKE= Yes
|
||||
CONFIGURE_STYLE=gnu
|
||||
CONFIGURE_ENV= LIBS=-lcurses
|
||||
CONFIGURE_ARGS= --disable-rpath \
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
.if ${KERBEROS5} == "yes"
|
||||
POSTGRES_KRB5_LIBS=--with-krb5=/usr
|
||||
POSTGRES_KRB5_INCLUDES=/usr/include/kerberosV
|
||||
.endif
|
||||
|
||||
CONFIGURE_ARGS= --disable-rpath --with-openssl=/usr \
|
||||
--with-includes=${POSTGRES_KRB5_LIBS} --with-perl \
|
||||
--enable-integer-datetimes \
|
||||
--includedir="${PREFIX}/include/postgresql" \
|
||||
--datadir="${PREFIX}/share/postgresql" \
|
||||
--docdir="${PREFIX}/share/doc/postgresql"
|
||||
|
||||
# There is no spinlock support for hppa yet. Until we have access to
|
||||
# a system to get this working, disable them for now. There is
|
||||
# (apparently) a serious performance hit doing this.
|
||||
|
||||
.if ${MACHINE_ARCH} == "hppa"
|
||||
CONFIGURE_ARGS+=--disable-spinlocks
|
||||
.endif
|
||||
|
||||
MODGNU_CONFIG_GUESS_DIRS= ${WRKSRC}/config
|
||||
|
||||
INSTALL_TARGET= install install-all-headers
|
||||
|
||||
.if ${SUBPACKAGE} == "-server"
|
||||
RUN_DEPENDS= :postgresql-client-${VERSION}:databases/postgresql
|
||||
.endif
|
||||
|
||||
# Regression tests must be done manually and not as root. Successful
|
||||
# runs have been achieved on the i386 using the following:
|
||||
#
|
||||
@ -68,34 +86,8 @@ NO_REGRESS= Yes
|
||||
DOCS= ${WRKSRC}/COPYRIGHT ${WRKSRC}/HISTORY \
|
||||
${WRKSRC}/INSTALL ${WRKSRC}/README \
|
||||
${WRKSRC}/doc/README.mb.big5 ${WRKSRC}/doc/README.mb.jp \
|
||||
${WRKSRC}/register.txt \
|
||||
${WRKSRC}/doc/FAQ ${WRKSRC}/doc/FAQ_DEV ${WRKSRC}/doc/TODO
|
||||
|
||||
# For tcl
|
||||
.if ${FLAVOR:L:Mtcl}
|
||||
MULTI_PACKAGES+= -tcl
|
||||
|
||||
TCL_INCDIR= ${LOCALBASE}/include/tcl8.3
|
||||
TK_INCDIR= ${LOCALBASE}/include/tk8.3
|
||||
CONFIGURE_ENV+= WISH="${LOCALBASE}/bin/wish8.3"
|
||||
CONFIGURE_ARGS+= --with-tcl \
|
||||
--with-tclconfig="${LOCALBASE}/lib/tcl8.3 ${LOCALBASE}/lib/tk8.3" \
|
||||
--with-includes="${TCL_INCDIR} ${TK_INCDIR} ${LOCALBASE}/include"
|
||||
BUILD_DEPENDS+= tk83::x11/tk/8.3
|
||||
|
||||
. if defined(PACKAGING)
|
||||
. if ${SUBPACKAGE} == "-tcl"
|
||||
RUN_DEPENDS= ::databases/postgresql
|
||||
LIB_DEPENDS+= tk83::x11/tk/8.3
|
||||
. endif
|
||||
. endif
|
||||
.else
|
||||
CONFIGURE_ARGS+= --without-tcl
|
||||
.endif
|
||||
.if defined(PACKAGING) && ${SUBPACKAGE} == "-docs"
|
||||
PKG_ARCH= *
|
||||
.endif
|
||||
|
||||
post-install:
|
||||
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/postgresql
|
||||
${INSTALL_DATA} ${DOCS} ${PREFIX}/share/doc/postgresql
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (postgresql-7.3.5.tar.gz) = ef2751173050b97fad8592ce23525ddf
|
||||
RMD160 (postgresql-7.3.5.tar.gz) = 83d5f713d7bfcf3ca57fb2bcc88d052982911d73
|
||||
SHA1 (postgresql-7.3.5.tar.gz) = fbdab6ce38008a0e741f8b75e3b57633a36ff5ff
|
||||
MD5 (postgresql-7.4.3.tar.gz) = 581d8a4a4f5fe013d6d9b0137d11172c
|
||||
RMD160 (postgresql-7.4.3.tar.gz) = 540a433b7802d49ed4a4c01880bdb61e14e77a4f
|
||||
SHA1 (postgresql-7.4.3.tar.gz) = 1c36aa22d3140b83afa9d678017325a4549448f4
|
||||
|
@ -1,22 +1,17 @@
|
||||
Requirements
|
||||
------------
|
||||
|
||||
Please note that OpenBSD port of PostgreSQL requires a kernel
|
||||
compiled with SYSVSEM and SYSVSHM options for proper operation.
|
||||
Please note that OpenBSD port of the PostgreSQL server requires a
|
||||
kernel compiled with SYSVSEM and SYSVSHM options for proper operation.
|
||||
The GENERIC kernel has these settings.
|
||||
|
||||
Using PostgreSQL in an OpenBSD environment
|
||||
------------------------------------------
|
||||
|
||||
If you are installing PostgreSQL for the first time, the following
|
||||
steps are required:
|
||||
|
||||
1. Create the PostgreSQL user and group:
|
||||
|
||||
# useradd -c "PostgreSQL Admin User" -g =uid -m -d /var/postgresql \
|
||||
-s /bin/sh -u 503 _postgresql
|
||||
|
||||
2. su to the postgresql account and initialize the database:
|
||||
If you are installing PostgreSQL for the first time a default database
|
||||
will have been created for you. If this failed for any reason or if you
|
||||
want to use non-default paramaters, you can do something similar to the
|
||||
following steps manually:
|
||||
|
||||
# su - _postgresql
|
||||
$ mkdir /var/postgresql/data
|
||||
@ -67,33 +62,40 @@ appropriate changes to allow connection from your network.
|
||||
The default sizes in the GENERIC kernel for SysV semaphores
|
||||
are not really large enough for a database with more than a
|
||||
handful of connections. A server running such a database should
|
||||
have at least the following:
|
||||
have at least the following in /etc/sysctl.conf:
|
||||
|
||||
option SEMMNI=256
|
||||
option SEMMNS=2048
|
||||
kern.seminfo.semmni=256
|
||||
kern.seminfo.semmns=2048
|
||||
|
||||
To serve a large number of connections (>250), you may also need
|
||||
to increase the maximum shared memory segment size, on the i386
|
||||
try:
|
||||
|
||||
option SHMMAXPGS=4096 # default on i386 is 2048 = 8Mb
|
||||
# other archs may vary
|
||||
kern.shminfo.shmmax=50331648 # this is 48MB.
|
||||
# default on i386 is 32MB
|
||||
# other archs will vary
|
||||
|
||||
These numbers should be tweaked depending on system use. See
|
||||
options(4) and release(8) manual pages and the FAQ at
|
||||
http://www.openbsd.org/faq/faq5.html describe how to compile
|
||||
a new custom kernel.
|
||||
These numbers should be tuned depending on system use. You will also
|
||||
need to tune the values in the postgresql.conf file to increase the
|
||||
number of connections to the backend.
|
||||
|
||||
The ulimit settings can also be a problem. The following can be
|
||||
added for the postgresql user in the /etc/login.conf file:
|
||||
By default, the _postgresql user, and so the postmaster and backend
|
||||
processes run in the login(1) class of "daemon". On a busy server,
|
||||
it may be advisable to put the _postgresql user and processed in
|
||||
their own login(1) class with tuned resources, such as more open
|
||||
file descriptors etc.
|
||||
|
||||
For example, add this to the login.conf(5) file:
|
||||
|
||||
postgresql:\
|
||||
:maxproc-max=256:\
|
||||
:maxproc-cur=256:\
|
||||
:openfiles-cur=768:\
|
||||
:datasize-max=256M:\
|
||||
:datasize-cur=64M:\
|
||||
:stacksize-cur=4M:
|
||||
:tc=daemon:
|
||||
|
||||
Rebuild the login.conf.db file if necessary:
|
||||
|
||||
# cap_mkdb /etc/login.conf
|
||||
|
||||
Change the login class with either vipw(8) or chsh(8).
|
||||
|
||||
For more than about 250 connections, these numbers should be
|
||||
increased. Please report any changes and experiences to the package
|
||||
|
12
databases/postgresql/patches/patch-configure
Normal file
12
databases/postgresql/patches/patch-configure
Normal file
@ -0,0 +1,12 @@
|
||||
$OpenBSD: patch-configure,v 1.3 2004/07/26 10:10:46 peter Exp $
|
||||
--- configure.orig 2004-04-23 15:42:37.000000000 +0000
|
||||
+++ configure 2004-04-23 15:45:24.000000000 +0000
|
||||
@@ -6458,7 +6458,7 @@ cat conftest.$ac_ext >&5
|
||||
fi
|
||||
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
||||
if test "$ac_cv_search_com_err" = no; then
|
||||
- for ac_lib in krb5 'krb5 -ldes -lasn1 -lroken' com_err; do
|
||||
+ for ac_lib in krb5 'krb5 -ldes -lasn1 -lroken' 'com_err -lssl -lcrypto' ; do
|
||||
LIBS="-l$ac_lib $ac_func_search_save_LIBS"
|
||||
cat >conftest.$ac_ext <<_ACEOF
|
||||
#line $LINENO "configure"
|
@ -1,17 +0,0 @@
|
||||
$OpenBSD: patch-src_Makefile_shlib,v 1.2 2002/12/17 16:38:54 naddy Exp $
|
||||
--- src/Makefile.shlib.orig Thu Sep 5 18:28:46 2002
|
||||
+++ src/Makefile.shlib Sun Oct 6 16:39:21 2002
|
||||
@@ -87,12 +87,7 @@ endif
|
||||
|
||||
ifeq ($(PORTNAME), openbsd)
|
||||
shlib := lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION).$(SO_MINOR_VERSION)
|
||||
- ifdef ELF_SYSTEM
|
||||
- LINK.shared = $(COMPILER) -shared -Wl,-x,-soname,$(soname)
|
||||
- SHLIB_LINK += -lc
|
||||
- else
|
||||
- LINK.shared = $(LD) -x -Bshareable -Bforcearchive
|
||||
- endif
|
||||
+ LINK.shared = $(COMPILER) -shared
|
||||
endif
|
||||
|
||||
ifeq ($(PORTNAME), bsdi)
|
@ -1,12 +0,0 @@
|
||||
$OpenBSD: patch-src_interfaces_ecpg_lib_Makefile,v 1.3 2003/02/12 17:09:03 naddy Exp $
|
||||
--- src/interfaces/ecpg/lib/Makefile.orig Tue Jan 8 20:41:26 2002
|
||||
+++ src/interfaces/ecpg/lib/Makefile Fri Feb 1 11:25:38 2002
|
||||
@@ -14,7 +14,7 @@ include $(top_builddir)/src/Makefile.glo
|
||||
|
||||
NAME= ecpg
|
||||
SO_MAJOR_VERSION= 3
|
||||
-SO_MINOR_VERSION= 4.1
|
||||
+SO_MINOR_VERSION= 41
|
||||
|
||||
override CPPFLAGS := -I$(top_srcdir)/src/interfaces/ecpg/include -I$(libpq_srcdir) $(CPPFLAGS)
|
||||
|
@ -1,14 +0,0 @@
|
||||
$OpenBSD: patch-src_makefiles_Makefile_openbsd,v 1.2 2002/12/17 16:38:54 naddy Exp $
|
||||
--- src/makefiles/Makefile.openbsd.orig Wed Aug 29 19:14:40 2001
|
||||
+++ src/makefiles/Makefile.openbsd Fri Feb 1 11:24:08 2002
|
||||
@@ -1,8 +1,9 @@
|
||||
AROPT = cr
|
||||
|
||||
+rpath = -Wl,-rpath,$(libdir)
|
||||
+
|
||||
ifdef ELF_SYSTEM
|
||||
export_dynamic = -Wl,-E
|
||||
-rpath = -R$(libdir)
|
||||
shlib_symbolic = -Wl,-Bsymbolic
|
||||
endif
|
||||
|
@ -1,29 +0,0 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# $OpenBSD: DEINSTALL,v 1.4 2003/06/23 19:11:11 sturm Exp $
|
||||
#
|
||||
# postgresql de-installation
|
||||
|
||||
set -e
|
||||
PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
||||
PREFIX=${PKG_PREFIX:-/usr/local}
|
||||
PGPREFIX=/var/postgresql
|
||||
|
||||
echo
|
||||
echo "+---------------"
|
||||
echo "| To completely deinstall the $1 package you need to perform"
|
||||
echo "| these steps as root:"
|
||||
echo "|"
|
||||
echo "| userdel -r _postgresql"
|
||||
echo "| groupdel _postgresql"
|
||||
echo "|"
|
||||
echo "| If you selected a different username to _postgresql, then replace"
|
||||
echo "| it above as appropriate"
|
||||
echo "|"
|
||||
echo "| DO NOT do this if you want to keep your data and/or plan on"
|
||||
echo "| re-installing or upgrading the $1 package at some"
|
||||
echo "| future time."
|
||||
echo "+---------------"
|
||||
echo
|
||||
|
||||
exit 0
|
@ -1,20 +1,20 @@
|
||||
PostgreSQL is Object-Relational Database Management System. It
|
||||
supports almost all SQL constructs, including transactions, subselects,
|
||||
and user-defined types and functions. Write-ahead logging means
|
||||
increased performance while retaining data integrity.
|
||||
PostgreSQL RDBMS client applications, libraries and include files
|
||||
for database administration, maintenance and integration with other
|
||||
applications.
|
||||
|
||||
The OpenBSD PostgreSQL port build produces several packages:
|
||||
|
||||
* postgresql-${VERSION} - complete package
|
||||
Contains all files needed for creating, administering and maintaining
|
||||
databases, querying and manipulating data in them, libraries and
|
||||
header files for database applications development and man pages.
|
||||
* postgresql-client-${VERSION} - client package
|
||||
Client-side applications, headers and libraries.
|
||||
|
||||
* postgresql-clients-${VERSION} - client-side applications and headers
|
||||
Reduced variant of complete package without backend-related files.
|
||||
* postgresql-server-${VERSION} - server package
|
||||
Contains additional files needed for performing backend server
|
||||
functions - such as providing the database server itself.
|
||||
|
||||
* postgresql-docs-${VERSION} - documentation
|
||||
Additional documentation: FAQs, READMEs; PostgreSQL manuals in
|
||||
HTML format: Administrator's Guide, Programmer's Manual, PostgreSQL
|
||||
Tutorial and User's Guide and Integrated Documentation package
|
||||
contains all the above documentation.
|
||||
|
||||
WWW: ${HOMEPAGE}
|
||||
|
@ -1,5 +0,0 @@
|
||||
PostgreSQL RDBMS frontend applications, libraries and include files
|
||||
for database administration, maintenance and integration with other
|
||||
applications.
|
||||
|
||||
Package includes psql - interactive SQL database query tool.
|
3
databases/postgresql/pkg/DESCR-server
Normal file
3
databases/postgresql/pkg/DESCR-server
Normal file
@ -0,0 +1,3 @@
|
||||
PostgreSQL RDBMS server
|
||||
|
||||
Additional programs and libraries required to run a PostgreSQL server.
|
@ -1,4 +0,0 @@
|
||||
PostgreSQL RDBMS tcl applications, libraries and include files
|
||||
for use by tcl/tk.
|
||||
|
||||
Package includes pgtksh/pgtclsh - SQL enabled shells for tk and tcl.
|
@ -1,48 +0,0 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# $OpenBSD: INSTALL,v 1.4 2001/04/23 21:58:44 espie Exp $
|
||||
#
|
||||
# Pre/post-installation setup of postgresql
|
||||
|
||||
# exit on errors, use a sane path and install prefix
|
||||
#
|
||||
set -e
|
||||
PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
||||
PREFIX=${PKG_PREFIX:-/usr/local}
|
||||
|
||||
# Function: tell the user what s/he needs to do to use the port just installed
|
||||
#
|
||||
do_notice()
|
||||
{
|
||||
echo
|
||||
echo "+---------------"
|
||||
echo "| The $1 package installation completed."
|
||||
echo "| See $PREFIX/share/doc/postgresql/README.OpenBSD for"
|
||||
echo "| information on using PostgreSQL package in OpenBSD environment."
|
||||
echo "+---------------"
|
||||
echo
|
||||
}
|
||||
|
||||
# verify proper execution
|
||||
#
|
||||
if [ $# -ne 2 ]; then
|
||||
echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Verify/process the command
|
||||
#
|
||||
case $2 in
|
||||
PRE-INSTALL)
|
||||
: nothing to pre-install for this port
|
||||
;;
|
||||
POST-INSTALL)
|
||||
do_notice $1
|
||||
;;
|
||||
*)
|
||||
echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
exit 0
|
123
databases/postgresql/pkg/INSTALL-server
Normal file
123
databases/postgresql/pkg/INSTALL-server
Normal file
@ -0,0 +1,123 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# $OpenBSD: INSTALL-server,v 1.1 2004/07/26 10:10:46 peter Exp $
|
||||
#
|
||||
# Pre/post-installation setup of postgresql
|
||||
|
||||
# use a sane path and install prefix
|
||||
#
|
||||
PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
||||
PREFIX=${PKG_PREFIX:-/usr/local}
|
||||
|
||||
PGHOME=/var/postgresql
|
||||
PG=_postgresql
|
||||
ID=503
|
||||
|
||||
# add user/group _postgresql if they don't already exist
|
||||
do_accts()
|
||||
{
|
||||
echo
|
||||
echo "+---------------------"
|
||||
|
||||
groupinfo -e $PG
|
||||
if [ $? -eq 0 ]; then
|
||||
echo "| Using existing group '$PG'"
|
||||
else
|
||||
echo "| Creating group '$PG'"
|
||||
groupadd -g $ID $PG
|
||||
fi
|
||||
|
||||
userinfo -e $PG
|
||||
if [ $? -eq 0 ]; then
|
||||
echo "| Using existing account '$PG'"
|
||||
else
|
||||
echo "| Creating user '$PG'"
|
||||
if [ -d $PGHOME ]; then
|
||||
PGCREATEHOME=""
|
||||
else
|
||||
PGCREATEHOME="-m"
|
||||
fi
|
||||
useradd -g $PG \
|
||||
-c "PostgreSQL Manager" \
|
||||
$PGCREATEHOME -d $PGHOME \
|
||||
-L daemon \
|
||||
-u $ID $PG
|
||||
fi
|
||||
|
||||
echo "+---------------------"
|
||||
echo
|
||||
}
|
||||
|
||||
do_initdb()
|
||||
{
|
||||
if [ ! -d $PGHOME/data ]; then
|
||||
echo
|
||||
echo "+---------------------"
|
||||
echo "| Creating default database installation in:"
|
||||
echo "|"
|
||||
echo "| $PGHOME/data"
|
||||
echo "+---------------------"
|
||||
echo
|
||||
install -d -o $PG -g $PG -m 0775 $PGHOME/data
|
||||
su $PG -c "$PREFIX/bin/initdb -D $PGHOME/data"
|
||||
echo
|
||||
else
|
||||
echo
|
||||
echo "+---------------------"
|
||||
echo "| Leaving existing database installation in:"
|
||||
echo "|"
|
||||
echo "| $PGHOME/data"
|
||||
echo "|"
|
||||
echo "| Note that any previous database files are UNLIKELY to"
|
||||
echo "| be compatible with upgraded versions of $1"
|
||||
echo "| package."
|
||||
echo "|"
|
||||
echo "| DO NOT just try to start the database unless you"
|
||||
echo "| are absolutely sure that the existing files are"
|
||||
echo "| compatible with this version of $1."
|
||||
echo "|"
|
||||
echo "| See the $1 documentation and/or"
|
||||
echo "| $PREFIX/share/doc/postgresql/README.OpenBSD for"
|
||||
echo "| more information."
|
||||
echo "+---------------------"
|
||||
echo
|
||||
fi
|
||||
}
|
||||
|
||||
# Function: tell the user what s/he needs to do to use the port just installed
|
||||
#
|
||||
do_notice()
|
||||
{
|
||||
echo
|
||||
echo "+---------------------"
|
||||
echo "| The $1 package installation completed."
|
||||
echo "| See $PREFIX/share/doc/postgresql/README.OpenBSD for more"
|
||||
echo "| information on using PostgreSQL package in OpenBSD environment."
|
||||
echo "+---------------------"
|
||||
echo
|
||||
}
|
||||
|
||||
# verify proper execution
|
||||
#
|
||||
if [ $# -ne 2 ]; then
|
||||
echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Verify/process the command
|
||||
#
|
||||
case $2 in
|
||||
PRE-INSTALL)
|
||||
do_accts $1
|
||||
;;
|
||||
POST-INSTALL)
|
||||
do_initdb $1
|
||||
do_notice $1
|
||||
;;
|
||||
*)
|
||||
echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
exit 0
|
@ -1,4 +1,6 @@
|
||||
@comment $OpenBSD: PFRAG.shared,v 1.11 2003/02/12 17:09:03 naddy Exp $
|
||||
lib/libecpg.so.3.41
|
||||
lib/libpq.so.3.0
|
||||
@comment $OpenBSD: PFRAG.shared,v 1.12 2004/07/26 10:10:46 peter Exp $
|
||||
lib/libecpg.so.4.1
|
||||
lib/libecpg_compat.so.1.2
|
||||
lib/libpgtypes.so.1.2
|
||||
lib/libpq.so.3.1
|
||||
DYNLIBDIR(%B)
|
||||
|
@ -1,4 +0,0 @@
|
||||
@comment $OpenBSD: PFRAG.shared-clients,v 1.8 2003/02/12 17:09:03 naddy Exp $
|
||||
lib/libecpg.so.3.41
|
||||
lib/libpq.so.3.0
|
||||
DYNLIBDIR(%B)
|
29
databases/postgresql/pkg/PFRAG.shared-server
Normal file
29
databases/postgresql/pkg/PFRAG.shared-server
Normal file
@ -0,0 +1,29 @@
|
||||
@comment $OpenBSD: PFRAG.shared-server,v 1.1 2004/07/26 10:10:46 peter Exp $
|
||||
lib/postgresql/ascii_and_mic.so
|
||||
lib/postgresql/cyrillic_and_mic.so
|
||||
lib/postgresql/euc_cn_and_mic.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/plperl.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_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_tcvn.so
|
||||
lib/postgresql/utf8_and_uhc.so
|
||||
lib/postgresql/utf8_and_win1250.so
|
||||
lib/postgresql/utf8_and_win1256.so
|
||||
lib/postgresql/utf8_and_win874.so
|
@ -1,3 +0,0 @@
|
||||
@comment $OpenBSD: PFRAG.shared-tcl,v 1.2 2003/02/12 17:09:03 naddy Exp $
|
||||
lib/libpgtcl.so.2.3
|
||||
DYNLIBDIR(%B)
|
@ -1,7 +1,7 @@
|
||||
@comment $OpenBSD: PLIST,v 1.23 2003/02/12 17:09:03 naddy Exp $
|
||||
@pkgcfl postgresql-clients-[0-9]*
|
||||
@pkgcfl pgsql-[0-9]*
|
||||
@pkgcfl pgsql-clients-[0-9]*
|
||||
@pkgcfl postgresql-[0-9]*
|
||||
@comment $OpenBSD: PLIST,v 1.24 2004/07/26 10:10:46 peter Exp $
|
||||
bin/clusterdb
|
||||
bin/createdb
|
||||
bin/createlang
|
||||
@ -10,383 +10,53 @@ bin/dropdb
|
||||
bin/droplang
|
||||
bin/dropuser
|
||||
bin/ecpg
|
||||
bin/initdb
|
||||
bin/initlocation
|
||||
bin/ipcclean
|
||||
bin/pg_config
|
||||
bin/pg_controldata
|
||||
bin/pg_ctl
|
||||
bin/pg_dump
|
||||
bin/pg_dumpall
|
||||
bin/pg_encoding
|
||||
bin/pg_id
|
||||
bin/pg_resetxlog
|
||||
bin/pg_restore
|
||||
bin/postgres
|
||||
bin/postmaster
|
||||
bin/psql
|
||||
bin/vacuumdb
|
||||
include/postgresql/ecpg_informix.h
|
||||
include/postgresql/ecpgerrno.h
|
||||
include/postgresql/ecpglib.h
|
||||
include/postgresql/ecpgtype.h
|
||||
include/postgresql/informix/esql/datetime.h
|
||||
include/postgresql/informix/esql/decimal.h
|
||||
include/postgresql/informix/esql/sqlda.h
|
||||
include/postgresql/informix/esql/sqltypes.h
|
||||
include/postgresql/internal/c.h
|
||||
include/postgresql/internal/lib/dllist.h
|
||||
include/postgresql/internal/libpq-int.h
|
||||
include/postgresql/internal/libpq/pqcomm.h
|
||||
include/postgresql/internal/port.h
|
||||
include/postgresql/internal/postgres_fe.h
|
||||
include/postgresql/internal/pqexpbuffer.h
|
||||
include/postgresql/libpq-fe.h
|
||||
include/postgresql/libpq/libpq-fs.h
|
||||
include/postgresql/pg_config.h
|
||||
include/postgresql/pg_config_manual.h
|
||||
include/postgresql/pg_config_os.h
|
||||
include/postgresql/pgtypes_date.h
|
||||
include/postgresql/pgtypes_error.h
|
||||
include/postgresql/pgtypes_interval.h
|
||||
include/postgresql/pgtypes_numeric.h
|
||||
include/postgresql/pgtypes_timestamp.h
|
||||
include/postgresql/postgres_ext.h
|
||||
include/postgresql/server/access/attnum.h
|
||||
include/postgresql/server/access/clog.h
|
||||
include/postgresql/server/access/genam.h
|
||||
include/postgresql/server/access/gist.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/ibit.h
|
||||
include/postgresql/server/access/iqual.h
|
||||
include/postgresql/server/access/istrat.h
|
||||
include/postgresql/server/access/itup.h
|
||||
include/postgresql/server/access/nbtree.h
|
||||
include/postgresql/server/access/printtup.h
|
||||
include/postgresql/server/access/relscan.h
|
||||
include/postgresql/server/access/rmgr.h
|
||||
include/postgresql/server/access/rtree.h
|
||||
include/postgresql/server/access/rtscan.h
|
||||
include/postgresql/server/access/sdir.h
|
||||
include/postgresql/server/access/skey.h
|
||||
include/postgresql/server/access/strat.h
|
||||
include/postgresql/server/access/transam.h
|
||||
include/postgresql/server/access/tupdesc.h
|
||||
include/postgresql/server/access/tupmacs.h
|
||||
include/postgresql/server/access/tuptoaster.h
|
||||
include/postgresql/server/access/valid.h
|
||||
include/postgresql/server/access/xact.h
|
||||
include/postgresql/server/access/xlog.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/catname.h
|
||||
include/postgresql/server/catalog/catversion.h
|
||||
include/postgresql/server/catalog/dependency.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_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_database.h
|
||||
include/postgresql/server/catalog/pg_depend.h
|
||||
include/postgresql/server/catalog/pg_description.h
|
||||
include/postgresql/server/catalog/pg_group.h
|
||||
include/postgresql/server/catalog/pg_index.h
|
||||
include/postgresql/server/catalog/pg_inherits.h
|
||||
include/postgresql/server/catalog/pg_language.h
|
||||
include/postgresql/server/catalog/pg_largeobject.h
|
||||
include/postgresql/server/catalog/pg_listener.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_proc.h
|
||||
include/postgresql/server/catalog/pg_rewrite.h
|
||||
include/postgresql/server/catalog/pg_shadow.h
|
||||
include/postgresql/server/catalog/pg_statistic.h
|
||||
include/postgresql/server/catalog/pg_trigger.h
|
||||
include/postgresql/server/catalog/pg_type.h
|
||||
include/postgresql/server/catalog/pg_version.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/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/trigger.h
|
||||
include/postgresql/server/commands/user.h
|
||||
include/postgresql/server/commands/vacuum.h
|
||||
include/postgresql/server/commands/variable.h
|
||||
include/postgresql/server/commands/version.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/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/nodeMaterial.h
|
||||
include/postgresql/server/executor/nodeMergejoin.h
|
||||
include/postgresql/server/executor/nodeNestloop.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/spi.h
|
||||
include/postgresql/server/executor/spi_priv.h
|
||||
include/postgresql/server/executor/tuptable.h
|
||||
include/postgresql/server/fmgr.h
|
||||
include/postgresql/server/funcapi.h
|
||||
include/postgresql/server/lib/dllist.h
|
||||
include/postgresql/server/lib/lispsort.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/libpq-be.h
|
||||
include/postgresql/server/libpq/libpq-fs.h
|
||||
include/postgresql/server/libpq/libpq.h
|
||||
include/postgresql/server/libpq/password.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/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/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/plancat.h
|
||||
include/postgresql/server/optimizer/planmain.h
|
||||
include/postgresql/server/optimizer/planner.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/gramparse.h
|
||||
include/postgresql/server/parser/keywords.h
|
||||
include/postgresql/server/parser/parse.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_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_relation.h
|
||||
include/postgresql/server/parser/parse_target.h
|
||||
include/postgresql/server/parser/parse_type.h
|
||||
include/postgresql/server/parser/parser.h
|
||||
include/postgresql/server/parser/parsetree.h
|
||||
include/postgresql/server/parser/scansup.h
|
||||
include/postgresql/server/pg_config.h
|
||||
include/postgresql/server/pg_config_os.h
|
||||
include/postgresql/server/pgstat.h
|
||||
include/postgresql/server/port/aix.h
|
||||
include/postgresql/server/port/beos.h
|
||||
include/postgresql/server/port/bsdi.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/irix5.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/qnx4.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/win.h
|
||||
include/postgresql/server/port/win32.h
|
||||
include/postgresql/server/postgres.h
|
||||
include/postgresql/server/postgres_ext.h
|
||||
include/postgresql/server/postgres_fe.h
|
||||
include/postgresql/server/regex/cclass.h
|
||||
include/postgresql/server/regex/cname.h
|
||||
include/postgresql/server/regex/regex.h
|
||||
include/postgresql/server/regex/regex2.h
|
||||
include/postgresql/server/regex/utils.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/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/ipc.h
|
||||
include/postgresql/server/storage/item.h
|
||||
include/postgresql/server/storage/itemid.h
|
||||
include/postgresql/server/storage/itempos.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/page.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/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/strdup.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/utils/acl.h
|
||||
include/postgresql/server/utils/array.h
|
||||
include/postgresql/server/utils/ascii.h
|
||||
include/postgresql/server/utils/bit.h
|
||||
include/postgresql/server/utils/builtins.h
|
||||
include/postgresql/server/utils/cash.h
|
||||
include/postgresql/server/utils/catcache.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/fcache.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/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/portal.h
|
||||
include/postgresql/server/utils/ps_status.h
|
||||
include/postgresql/server/utils/rel.h
|
||||
include/postgresql/server/utils/relcache.h
|
||||
include/postgresql/server/utils/selfuncs.h
|
||||
include/postgresql/server/utils/sets.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/varbit.h
|
||||
include/postgresql/sql3types.h
|
||||
include/postgresql/sqlca.h
|
||||
lib/libecpg.a
|
||||
@comment lib/libecpg.so
|
||||
@comment lib/libecpg.so.4
|
||||
lib/libecpg_compat.a
|
||||
@comment lib/libecpg_compat.so
|
||||
@comment lib/libecpg_compat.so.1
|
||||
lib/libpgtypes.a
|
||||
@comment lib/libpgtypes.so
|
||||
@comment lib/libpgtypes.so.1
|
||||
lib/libpq.a
|
||||
lib/postgresql/ascii_and_mic.so
|
||||
lib/postgresql/cyrillic_and_mic.so
|
||||
lib/postgresql/euc_cn_and_mic.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_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_tcvn.so
|
||||
lib/postgresql/utf8_and_uhc.so
|
||||
lib/postgresql/utf8_and_win1250.so
|
||||
lib/postgresql/utf8_and_win1256.so
|
||||
lib/postgresql/utf8_and_win874.so
|
||||
@comment lib/libpq.so
|
||||
@comment lib/libpq.so.3
|
||||
man/man1/clusterdb.1
|
||||
man/man1/createdb.1
|
||||
man/man1/createlang.1
|
||||
@ -395,23 +65,23 @@ man/man1/dropdb.1
|
||||
man/man1/droplang.1
|
||||
man/man1/dropuser.1
|
||||
man/man1/ecpg.1
|
||||
man/man1/initdb.1
|
||||
man/man1/initlocation.1
|
||||
man/man1/ipcclean.1
|
||||
man/man1/pg_config.1
|
||||
man/man1/pg_controldata.1
|
||||
man/man1/pg_ctl.1
|
||||
man/man1/pg_dump.1
|
||||
man/man1/pg_dumpall.1
|
||||
man/man1/pg_resetxlog.1
|
||||
man/man1/pg_restore.1
|
||||
man/man1/postgres.1
|
||||
man/man1/postmaster.1
|
||||
man/man1/psql.1
|
||||
man/man1/vacuumdb.1
|
||||
man/man7/abort.7
|
||||
man/man7/alter_aggregate.7
|
||||
man/man7/alter_conversion.7
|
||||
man/man7/alter_database.7
|
||||
man/man7/alter_domain.7
|
||||
man/man7/alter_function.7
|
||||
man/man7/alter_group.7
|
||||
man/man7/alter_language.7
|
||||
man/man7/alter_operator_class.7
|
||||
man/man7/alter_schema.7
|
||||
man/man7/alter_sequence.7
|
||||
man/man7/alter_table.7
|
||||
man/man7/alter_trigger.7
|
||||
man/man7/alter_user.7
|
||||
@ -500,41 +170,20 @@ share/doc/postgresql/FAQ_DEV
|
||||
share/doc/postgresql/HISTORY
|
||||
share/doc/postgresql/INSTALL
|
||||
share/doc/postgresql/README
|
||||
share/doc/postgresql/README.OpenBSD
|
||||
share/doc/postgresql/README.mb.big5
|
||||
share/doc/postgresql/README.mb.jp
|
||||
share/doc/postgresql/TODO
|
||||
share/doc/postgresql/register.txt
|
||||
share/postgresql/conversion_create.sql
|
||||
share/postgresql/pg_hba.conf.sample
|
||||
share/postgresql/pg_ident.conf.sample
|
||||
share/postgresql/postgres.bki
|
||||
share/postgresql/information_schema.sql
|
||||
share/postgresql/postgres.description
|
||||
share/postgresql/postgresql.conf.sample
|
||||
share/postgresql/sql_features.txt
|
||||
%%SHARED%%
|
||||
@dirrm share/postgresql
|
||||
@dirrm share/doc/postgresql
|
||||
@dirrm lib/postgresql
|
||||
@dirrm include/postgresql/server/utils
|
||||
@dirrm include/postgresql/server/tcop
|
||||
@dirrm include/postgresql/server/storage
|
||||
@dirrm include/postgresql/server/rewrite
|
||||
@dirrm include/postgresql/server/regex
|
||||
@dirrm include/postgresql/server/port
|
||||
@dirrm include/postgresql/server/parser
|
||||
@dirrm include/postgresql/server/optimizer
|
||||
@dirrm include/postgresql/server/nodes
|
||||
@dirrm include/postgresql/server/mb
|
||||
@dirrm include/postgresql/server/libpq
|
||||
@dirrm include/postgresql/server/lib
|
||||
@dirrm include/postgresql/server/executor
|
||||
@dirrm include/postgresql/server/commands
|
||||
@dirrm include/postgresql/server/catalog
|
||||
@dirrm include/postgresql/server/bootstrap
|
||||
@dirrm include/postgresql/server/access
|
||||
@dirrm include/postgresql/server
|
||||
@dirrm include/postgresql/libpq
|
||||
@dirrm include/postgresql/internal/libpq
|
||||
@dirrm include/postgresql/internal/lib
|
||||
@dirrm include/postgresql/internal
|
||||
@dirrm include/postgresql/informix/esql
|
||||
@dirrm include/postgresql/informix
|
||||
@dirrm include/postgresql
|
||||
|
@ -1,5 +1,5 @@
|
||||
@comment $OpenBSD: PLIST-docs,v 1.12 2003/12/23 19:40:32 brad Exp $
|
||||
share/doc/postgresql/html/admin-preface.html
|
||||
@comment $OpenBSD: PLIST-docs,v 1.13 2004/07/26 10:10:46 peter Exp $
|
||||
share/doc/postgresql/html/LEGALNOTICE.html
|
||||
share/doc/postgresql/html/admin.html
|
||||
share/doc/postgresql/html/app-clusterdb.html
|
||||
share/doc/postgresql/html/app-createdb.html
|
||||
@ -25,8 +25,8 @@ share/doc/postgresql/html/app-postgres.html
|
||||
share/doc/postgresql/html/app-postmaster.html
|
||||
share/doc/postgresql/html/app-psql.html
|
||||
share/doc/postgresql/html/app-vacuumdb.html
|
||||
share/doc/postgresql/html/appendixes.html
|
||||
share/doc/postgresql/html/applevel-consistency.html
|
||||
share/doc/postgresql/html/arch-pg.html
|
||||
share/doc/postgresql/html/arrays.html
|
||||
share/doc/postgresql/html/auth-methods.html
|
||||
share/doc/postgresql/html/backup-file.html
|
||||
@ -35,6 +35,7 @@ share/doc/postgresql/html/biblio.html
|
||||
share/doc/postgresql/html/bki-commands.html
|
||||
share/doc/postgresql/html/bki-example.html
|
||||
share/doc/postgresql/html/bki.html
|
||||
share/doc/postgresql/html/bookindex.html
|
||||
share/doc/postgresql/html/bug-reporting.html
|
||||
share/doc/postgresql/html/catalog-pg-aggregate.html
|
||||
share/doc/postgresql/html/catalog-pg-am.html
|
||||
@ -64,14 +65,12 @@ share/doc/postgresql/html/catalog-pg-shadow.html
|
||||
share/doc/postgresql/html/catalog-pg-statistic.html
|
||||
share/doc/postgresql/html/catalog-pg-trigger.html
|
||||
share/doc/postgresql/html/catalog-pg-type.html
|
||||
share/doc/postgresql/html/catalogs.gif
|
||||
share/doc/postgresql/html/catalogs.html
|
||||
share/doc/postgresql/html/charset.html
|
||||
share/doc/postgresql/html/client-authentication-problems.html
|
||||
share/doc/postgresql/html/client-authentication.html
|
||||
share/doc/postgresql/html/compiler.html
|
||||
share/doc/postgresql/html/client-interfaces.html
|
||||
share/doc/postgresql/html/connect-estab.html
|
||||
share/doc/postgresql/html/connections.gif
|
||||
share/doc/postgresql/html/creating-cluster.html
|
||||
share/doc/postgresql/html/cvs-tree.html
|
||||
share/doc/postgresql/html/cvs.html
|
||||
@ -88,8 +87,11 @@ share/doc/postgresql/html/datatype-oid.html
|
||||
share/doc/postgresql/html/datatype-pseudo.html
|
||||
share/doc/postgresql/html/datatype.html
|
||||
share/doc/postgresql/html/datetime-appendix.html
|
||||
share/doc/postgresql/html/datetime-keywords.html
|
||||
share/doc/postgresql/html/datetime-units-history.html
|
||||
share/doc/postgresql/html/ddl-alter.html
|
||||
share/doc/postgresql/html/ddl-constraints.html
|
||||
share/doc/postgresql/html/ddl-default.html
|
||||
share/doc/postgresql/html/ddl-depend.html
|
||||
share/doc/postgresql/html/ddl-inherit.html
|
||||
share/doc/postgresql/html/ddl-others.html
|
||||
@ -97,36 +99,45 @@ share/doc/postgresql/html/ddl-priv.html
|
||||
share/doc/postgresql/html/ddl-schemas.html
|
||||
share/doc/postgresql/html/ddl-system-columns.html
|
||||
share/doc/postgresql/html/ddl.html
|
||||
share/doc/postgresql/html/developer.html
|
||||
share/doc/postgresql/html/disk-full.html
|
||||
share/doc/postgresql/html/diskusage.html
|
||||
share/doc/postgresql/html/dml-delete.html
|
||||
share/doc/postgresql/html/dml-update.html
|
||||
share/doc/postgresql/html/dml.html
|
||||
share/doc/postgresql/html/doc-build.html
|
||||
share/doc/postgresql/html/doc-sources.html
|
||||
share/doc/postgresql/html/doc-style.html
|
||||
share/doc/postgresql/html/doc-toolsets.html
|
||||
share/doc/postgresql/html/docguide-authoring.html
|
||||
share/doc/postgresql/html/docguide-build.html
|
||||
share/doc/postgresql/html/docguide-style.html
|
||||
share/doc/postgresql/html/docguide-toolsets.html
|
||||
share/doc/postgresql/html/docguide.html
|
||||
share/doc/postgresql/html/ecpg-commands.html
|
||||
share/doc/postgresql/html/ecpg-connect.html
|
||||
share/doc/postgresql/html/ecpg-descriptors.html
|
||||
share/doc/postgresql/html/ecpg-develop.html
|
||||
share/doc/postgresql/html/ecpg-disconnect.html
|
||||
share/doc/postgresql/html/ecpg-dynamic.html
|
||||
share/doc/postgresql/html/ecpg-errors.html
|
||||
share/doc/postgresql/html/ecpg-include.html
|
||||
share/doc/postgresql/html/ecpg-library.html
|
||||
share/doc/postgresql/html/ecpg-porting.html
|
||||
share/doc/postgresql/html/ecpg-process.html
|
||||
share/doc/postgresql/html/ecpg-set-connection.html
|
||||
share/doc/postgresql/html/ecpg-variables.html
|
||||
share/doc/postgresql/html/ecpg.html
|
||||
share/doc/postgresql/html/errcodes-appendix.html
|
||||
share/doc/postgresql/html/error-message-reporting.html
|
||||
share/doc/postgresql/html/error-style-guide.html
|
||||
share/doc/postgresql/html/examples.html
|
||||
share/doc/postgresql/html/executor.html
|
||||
share/doc/postgresql/html/explicit-joins.html
|
||||
share/doc/postgresql/html/explicit-locking.html
|
||||
share/doc/postgresql/html/extend-type-system.html
|
||||
share/doc/postgresql/html/extend.html
|
||||
share/doc/postgresql/html/extensibility.html
|
||||
share/doc/postgresql/html/features.html
|
||||
share/doc/postgresql/html/functions-aggregate.html
|
||||
share/doc/postgresql/html/functions-array.html
|
||||
share/doc/postgresql/html/functions-binarystring.html
|
||||
share/doc/postgresql/html/functions-comparison.html
|
||||
share/doc/postgresql/html/functions-comparisons.html
|
||||
share/doc/postgresql/html/functions-conditional.html
|
||||
share/doc/postgresql/html/functions-datetime.html
|
||||
share/doc/postgresql/html/functions-formatting.html
|
||||
@ -146,16 +157,58 @@ share/doc/postgresql/html/geqo.html
|
||||
share/doc/postgresql/html/gist.html
|
||||
share/doc/postgresql/html/groups.html
|
||||
share/doc/postgresql/html/history.html
|
||||
share/doc/postgresql/html/implementation.html
|
||||
share/doc/postgresql/html/index.html
|
||||
share/doc/postgresql/html/indexcost.html
|
||||
share/doc/postgresql/html/indexes-examine.html
|
||||
share/doc/postgresql/html/indexes-functional.html
|
||||
share/doc/postgresql/html/indexes-expressional.html
|
||||
share/doc/postgresql/html/indexes-multicolumn.html
|
||||
share/doc/postgresql/html/indexes-opclass.html
|
||||
share/doc/postgresql/html/indexes-partial.html
|
||||
share/doc/postgresql/html/indexes-types.html
|
||||
share/doc/postgresql/html/indexes-unique.html
|
||||
share/doc/postgresql/html/indexes.html
|
||||
share/doc/postgresql/html/information-schema.html
|
||||
share/doc/postgresql/html/infoschema-applicable-roles.html
|
||||
share/doc/postgresql/html/infoschema-check-constraints.html
|
||||
share/doc/postgresql/html/infoschema-column-domain-usage.html
|
||||
share/doc/postgresql/html/infoschema-column-privileges.html
|
||||
share/doc/postgresql/html/infoschema-column-udt-usage.html
|
||||
share/doc/postgresql/html/infoschema-columns.html
|
||||
share/doc/postgresql/html/infoschema-constraint-column-usage.html
|
||||
share/doc/postgresql/html/infoschema-constraint-table-usage.html
|
||||
share/doc/postgresql/html/infoschema-data-type-privileges.html
|
||||
share/doc/postgresql/html/infoschema-datatypes.html
|
||||
share/doc/postgresql/html/infoschema-domain-constraints.html
|
||||
share/doc/postgresql/html/infoschema-domain-udt-usage.html
|
||||
share/doc/postgresql/html/infoschema-domains.html
|
||||
share/doc/postgresql/html/infoschema-element-types.html
|
||||
share/doc/postgresql/html/infoschema-enabled-roles.html
|
||||
share/doc/postgresql/html/infoschema-information-schema-catalog-name.html
|
||||
share/doc/postgresql/html/infoschema-key-column-usage.html
|
||||
share/doc/postgresql/html/infoschema-parameters.html
|
||||
share/doc/postgresql/html/infoschema-referential-constraints.html
|
||||
share/doc/postgresql/html/infoschema-role-column-grants.html
|
||||
share/doc/postgresql/html/infoschema-role-routine-grants.html
|
||||
share/doc/postgresql/html/infoschema-role-table-grants.html
|
||||
share/doc/postgresql/html/infoschema-role-usage-grants.html
|
||||
share/doc/postgresql/html/infoschema-routine-privileges.html
|
||||
share/doc/postgresql/html/infoschema-routines.html
|
||||
share/doc/postgresql/html/infoschema-schemata.html
|
||||
share/doc/postgresql/html/infoschema-sql-features.html
|
||||
share/doc/postgresql/html/infoschema-sql-implementation-info.html
|
||||
share/doc/postgresql/html/infoschema-sql-languages.html
|
||||
share/doc/postgresql/html/infoschema-sql-packages.html
|
||||
share/doc/postgresql/html/infoschema-sql-sizing-profiles.html
|
||||
share/doc/postgresql/html/infoschema-sql-sizing.html
|
||||
share/doc/postgresql/html/infoschema-table-constraints.html
|
||||
share/doc/postgresql/html/infoschema-table-privileges.html
|
||||
share/doc/postgresql/html/infoschema-tables.html
|
||||
share/doc/postgresql/html/infoschema-triggers.html
|
||||
share/doc/postgresql/html/infoschema-usage-privileges.html
|
||||
share/doc/postgresql/html/infoschema-view-column-usage.html
|
||||
share/doc/postgresql/html/infoschema-view-table-usage.html
|
||||
share/doc/postgresql/html/infoschema-views.html
|
||||
share/doc/postgresql/html/install-getsource.html
|
||||
share/doc/postgresql/html/install-post.html
|
||||
share/doc/postgresql/html/install-procedure.html
|
||||
@ -163,7 +216,9 @@ share/doc/postgresql/html/install-requirements.html
|
||||
share/doc/postgresql/html/install-upgrading.html
|
||||
share/doc/postgresql/html/install-win32.html
|
||||
share/doc/postgresql/html/installation.html
|
||||
share/doc/postgresql/html/internals.html
|
||||
share/doc/postgresql/html/jdbc-binary-data.html
|
||||
share/doc/postgresql/html/jdbc-callproc.html
|
||||
share/doc/postgresql/html/jdbc-datasource.html
|
||||
share/doc/postgresql/html/jdbc-ddl.html
|
||||
share/doc/postgresql/html/jdbc-ext.html
|
||||
@ -179,28 +234,23 @@ share/doc/postgresql/html/libpgtcl-loading.html
|
||||
share/doc/postgresql/html/libpgtcl-ref.html
|
||||
share/doc/postgresql/html/libpq-async.html
|
||||
share/doc/postgresql/html/libpq-build.html
|
||||
share/doc/postgresql/html/libpq-connect.html
|
||||
share/doc/postgresql/html/libpq-control.html
|
||||
share/doc/postgresql/html/libpq-copy.html
|
||||
share/doc/postgresql/html/libpq-envars.html
|
||||
share/doc/postgresql/html/libpq-example.html
|
||||
share/doc/postgresql/html/libpq-exec.html
|
||||
share/doc/postgresql/html/libpq-fastpath.html
|
||||
share/doc/postgresql/html/libpq-files.html
|
||||
share/doc/postgresql/html/libpq-notice-processing.html
|
||||
share/doc/postgresql/html/libpq-notify.html
|
||||
share/doc/postgresql/html/libpq-pgpass.html
|
||||
share/doc/postgresql/html/libpq-status.html
|
||||
share/doc/postgresql/html/libpq-threading.html
|
||||
share/doc/postgresql/html/libpq-trace.html
|
||||
share/doc/postgresql/html/libpq.html
|
||||
share/doc/postgresql/html/ln17989.html
|
||||
share/doc/postgresql/html/ln24805.html
|
||||
share/doc/postgresql/html/ln25.html
|
||||
share/doc/postgresql/html/ln37249.html
|
||||
share/doc/postgresql/html/ln51965.html
|
||||
share/doc/postgresql/html/ln659.html
|
||||
share/doc/postgresql/html/limitations.html
|
||||
share/doc/postgresql/html/lo-examplesect.html
|
||||
share/doc/postgresql/html/lo-funcs.html
|
||||
share/doc/postgresql/html/lo-implementation.html
|
||||
share/doc/postgresql/html/lo-interfaces.html
|
||||
share/doc/postgresql/html/lo-libpq.html
|
||||
share/doc/postgresql/html/locking-indexes.html
|
||||
share/doc/postgresql/html/logfile-maintenance.html
|
||||
share/doc/postgresql/html/maintenance.html
|
||||
@ -224,7 +274,7 @@ share/doc/postgresql/html/page.html
|
||||
share/doc/postgresql/html/parser-stage.html
|
||||
share/doc/postgresql/html/performance-tips.html
|
||||
share/doc/postgresql/html/perm-functions.html
|
||||
share/doc/postgresql/html/pg-system-catalogs.html
|
||||
share/doc/postgresql/html/pgtcl-examplesect.html
|
||||
share/doc/postgresql/html/pgtcl-pgconndefaults.html
|
||||
share/doc/postgresql/html/pgtcl-pgconnect.html
|
||||
share/doc/postgresql/html/pgtcl-pgdisconnect.html
|
||||
@ -247,6 +297,7 @@ share/doc/postgresql/html/pgtcl-pgselect.html
|
||||
share/doc/postgresql/html/pgtcl.html
|
||||
share/doc/postgresql/html/planner-optimizer.html
|
||||
share/doc/postgresql/html/planner-stats.html
|
||||
share/doc/postgresql/html/plhandler.html
|
||||
share/doc/postgresql/html/plperl-data.html
|
||||
share/doc/postgresql/html/plperl-database.html
|
||||
share/doc/postgresql/html/plperl-missing.html
|
||||
@ -255,8 +306,8 @@ share/doc/postgresql/html/plperl.html
|
||||
share/doc/postgresql/html/plpgsql-control-structures.html
|
||||
share/doc/postgresql/html/plpgsql-cursors.html
|
||||
share/doc/postgresql/html/plpgsql-declarations.html
|
||||
share/doc/postgresql/html/plpgsql-development-tips.html
|
||||
share/doc/postgresql/html/plpgsql-errors-and-messages.html
|
||||
share/doc/postgresql/html/plpgsql-examples.html
|
||||
share/doc/postgresql/html/plpgsql-expressions.html
|
||||
share/doc/postgresql/html/plpgsql-porting.html
|
||||
share/doc/postgresql/html/plpgsql-statements.html
|
||||
@ -265,91 +316,37 @@ share/doc/postgresql/html/plpgsql-trigger.html
|
||||
share/doc/postgresql/html/plpgsql.html
|
||||
share/doc/postgresql/html/plpython-database.html
|
||||
share/doc/postgresql/html/plpython-trigger.html
|
||||
share/doc/postgresql/html/plpython-trusted.html
|
||||
share/doc/postgresql/html/plpython.html
|
||||
share/doc/postgresql/html/pltcl-description.html
|
||||
share/doc/postgresql/html/pltcl-data.html
|
||||
share/doc/postgresql/html/pltcl-dbaccess.html
|
||||
share/doc/postgresql/html/pltcl-functions.html
|
||||
share/doc/postgresql/html/pltcl-global.html
|
||||
share/doc/postgresql/html/pltcl-procnames.html
|
||||
share/doc/postgresql/html/pltcl-trigger.html
|
||||
share/doc/postgresql/html/pltcl-unknown.html
|
||||
share/doc/postgresql/html/pltcl.html
|
||||
share/doc/postgresql/html/populate.html
|
||||
share/doc/postgresql/html/postmaster-shutdown.html
|
||||
share/doc/postgresql/html/postmaster-start.html
|
||||
share/doc/postgresql/html/preface.html
|
||||
share/doc/postgresql/html/privileges.html
|
||||
share/doc/postgresql/html/programmer-client.html
|
||||
share/doc/postgresql/html/programmer-pl.html
|
||||
share/doc/postgresql/html/programmer-preface.html
|
||||
share/doc/postgresql/html/programmer-server.html
|
||||
share/doc/postgresql/html/programmer.html
|
||||
share/doc/postgresql/html/protocol-changes.html
|
||||
share/doc/postgresql/html/protocol-error-fields.html
|
||||
share/doc/postgresql/html/protocol-flow.html
|
||||
share/doc/postgresql/html/protocol-message-formats.html
|
||||
share/doc/postgresql/html/protocol-message-types.html
|
||||
share/doc/postgresql/html/protocol-protocol.html
|
||||
share/doc/postgresql/html/protocol.html
|
||||
share/doc/postgresql/html/pygresql-close.html
|
||||
share/doc/postgresql/html/pygresql-connect.html
|
||||
share/doc/postgresql/html/pygresql-db-clear.html
|
||||
share/doc/postgresql/html/pygresql-db-delete.html
|
||||
share/doc/postgresql/html/pygresql-db-get-attnames.html
|
||||
share/doc/postgresql/html/pygresql-db-get-databases.html
|
||||
share/doc/postgresql/html/pygresql-db-get-tables.html
|
||||
share/doc/postgresql/html/pygresql-db-get.html
|
||||
share/doc/postgresql/html/pygresql-db-insert.html
|
||||
share/doc/postgresql/html/pygresql-db-pkey.html
|
||||
share/doc/postgresql/html/pygresql-db-update.html
|
||||
share/doc/postgresql/html/pygresql-endcopy.html
|
||||
share/doc/postgresql/html/pygresql-fileno.html
|
||||
share/doc/postgresql/html/pygresql-get-defbase.html
|
||||
share/doc/postgresql/html/pygresql-get-defhost.html
|
||||
share/doc/postgresql/html/pygresql-get-defopt.html
|
||||
share/doc/postgresql/html/pygresql-get-defport.html
|
||||
share/doc/postgresql/html/pygresql-get-deftty.html
|
||||
share/doc/postgresql/html/pygresql-getline.html
|
||||
share/doc/postgresql/html/pygresql-getlo.html
|
||||
share/doc/postgresql/html/pygresql-getnotify.html
|
||||
share/doc/postgresql/html/pygresql-inserttable.html
|
||||
share/doc/postgresql/html/pygresql-locreate.html
|
||||
share/doc/postgresql/html/pygresql-loimport.html
|
||||
share/doc/postgresql/html/pygresql-pg-db.html
|
||||
share/doc/postgresql/html/pygresql-pg-functions.html
|
||||
share/doc/postgresql/html/pygresql-pg-pglarge.html
|
||||
share/doc/postgresql/html/pygresql-pg-pgobject.html
|
||||
share/doc/postgresql/html/pygresql-pg-pgqueryobject.html
|
||||
share/doc/postgresql/html/pygresql-pglargeobject-close.html
|
||||
share/doc/postgresql/html/pygresql-pglargeobject-export.html
|
||||
share/doc/postgresql/html/pygresql-pglargeobject-open.html
|
||||
share/doc/postgresql/html/pygresql-pglargeobject-read.html
|
||||
share/doc/postgresql/html/pygresql-pglargeobject-seek.html
|
||||
share/doc/postgresql/html/pygresql-pglargeobject-size.html
|
||||
share/doc/postgresql/html/pygresql-pglargeobject-tell.html
|
||||
share/doc/postgresql/html/pygresql-pglargeobject-unlink.html
|
||||
share/doc/postgresql/html/pygresql-pglargeobject-write.html
|
||||
share/doc/postgresql/html/pygresql-pgqueryobject-dictresult.html
|
||||
share/doc/postgresql/html/pygresql-pgqueryobject-fieldname.html
|
||||
share/doc/postgresql/html/pygresql-pgqueryobject-fieldnum.html
|
||||
share/doc/postgresql/html/pygresql-pgqueryobject-getresult.html
|
||||
share/doc/postgresql/html/pygresql-pgqueryobject-listfields.html
|
||||
share/doc/postgresql/html/pygresql-pgqueryobject-ntuples.html
|
||||
share/doc/postgresql/html/pygresql-putline.html
|
||||
share/doc/postgresql/html/pygresql-query.html
|
||||
share/doc/postgresql/html/pygresql-reset.html
|
||||
share/doc/postgresql/html/pygresql-set-defbase.html
|
||||
share/doc/postgresql/html/pygresql-set-defhost.html
|
||||
share/doc/postgresql/html/pygresql-set-defopt.html
|
||||
share/doc/postgresql/html/pygresql-set-defport.html
|
||||
share/doc/postgresql/html/pygresql-set-deftty.html
|
||||
share/doc/postgresql/html/pygresql.html
|
||||
share/doc/postgresql/html/queries-limit.html
|
||||
share/doc/postgresql/html/queries-order.html
|
||||
share/doc/postgresql/html/queries-select-lists.html
|
||||
share/doc/postgresql/html/queries-table-expressions.html
|
||||
share/doc/postgresql/html/queries-union.html
|
||||
share/doc/postgresql/html/queries.html
|
||||
share/doc/postgresql/html/querytree.html
|
||||
share/doc/postgresql/html/recode.html
|
||||
share/doc/postgresql/html/reference-client.html
|
||||
share/doc/postgresql/html/reference-preface.html
|
||||
share/doc/postgresql/html/reference-server.html
|
||||
share/doc/postgresql/html/reference.html
|
||||
share/doc/postgresql/html/regress-evaluation.html
|
||||
share/doc/postgresql/html/regress-platform.html
|
||||
share/doc/postgresql/html/regress-run.html
|
||||
share/doc/postgresql/html/regress.html
|
||||
share/doc/postgresql/html/release-0-01.html
|
||||
share/doc/postgresql/html/release-0-02.html
|
||||
@ -390,58 +387,70 @@ share/doc/postgresql/html/release-7-3-1.html
|
||||
share/doc/postgresql/html/release-7-3-2.html
|
||||
share/doc/postgresql/html/release-7-3-3.html
|
||||
share/doc/postgresql/html/release-7-3-4.html
|
||||
share/doc/postgresql/html/release-7-3-5.html
|
||||
share/doc/postgresql/html/release-7-3-6.html
|
||||
share/doc/postgresql/html/release-7-3.html
|
||||
share/doc/postgresql/html/release-7-4-1.html
|
||||
share/doc/postgresql/html/release-7-4-2.html
|
||||
share/doc/postgresql/html/release-7-4.html
|
||||
share/doc/postgresql/html/release.html
|
||||
share/doc/postgresql/html/resources.html
|
||||
share/doc/postgresql/html/routine-reindex.html
|
||||
share/doc/postgresql/html/routine-vacuuming.html
|
||||
share/doc/postgresql/html/rule-system.html
|
||||
share/doc/postgresql/html/rules-insert.html
|
||||
share/doc/postgresql/html/rules-permissions.html
|
||||
share/doc/postgresql/html/rules-privileges.html
|
||||
share/doc/postgresql/html/rules-status.html
|
||||
share/doc/postgresql/html/rules-triggers.html
|
||||
share/doc/postgresql/html/rules-update.html
|
||||
share/doc/postgresql/html/rules-views.html
|
||||
share/doc/postgresql/html/rules.html
|
||||
share/doc/postgresql/html/runtime-config.html
|
||||
share/doc/postgresql/html/runtime.html
|
||||
share/doc/postgresql/html/setindex.html
|
||||
share/doc/postgresql/html/server-programming.html
|
||||
share/doc/postgresql/html/source.html
|
||||
share/doc/postgresql/html/spi-examples.html
|
||||
share/doc/postgresql/html/spi-interface-support.html
|
||||
share/doc/postgresql/html/spi-memory.html
|
||||
share/doc/postgresql/html/spi-spiconnect.html
|
||||
share/doc/postgresql/html/spi-spicopytuple.html
|
||||
share/doc/postgresql/html/spi-spicopytupledesc.html
|
||||
share/doc/postgresql/html/spi-spicopytupleintoslot.html
|
||||
share/doc/postgresql/html/spi-spicursor-close.html
|
||||
share/doc/postgresql/html/spi-spicursor-fetch.html
|
||||
share/doc/postgresql/html/spi-spicursor-find.html
|
||||
share/doc/postgresql/html/spi-spicursor-move.html
|
||||
share/doc/postgresql/html/spi-spicursor-open.html
|
||||
share/doc/postgresql/html/spi-spiexec.html
|
||||
share/doc/postgresql/html/spi-spiexecp.html
|
||||
share/doc/postgresql/html/spi-spifinish.html
|
||||
share/doc/postgresql/html/spi-spifname.html
|
||||
share/doc/postgresql/html/spi-spifnumber.html
|
||||
share/doc/postgresql/html/spi-spifreeplan.html
|
||||
share/doc/postgresql/html/spi-spifreetuple.html
|
||||
share/doc/postgresql/html/spi-spifreetuptable.html
|
||||
share/doc/postgresql/html/spi-spigetbinval.html
|
||||
share/doc/postgresql/html/spi-spigetrelname.html
|
||||
share/doc/postgresql/html/spi-spigettype.html
|
||||
share/doc/postgresql/html/spi-spigettypeid.html
|
||||
share/doc/postgresql/html/spi-spigetvalue.html
|
||||
share/doc/postgresql/html/spi-spimodifytuple.html
|
||||
share/doc/postgresql/html/spi-spipalloc.html
|
||||
share/doc/postgresql/html/spi-spipfree.html
|
||||
share/doc/postgresql/html/spi-spiprepare.html
|
||||
share/doc/postgresql/html/spi-spirepalloc.html
|
||||
share/doc/postgresql/html/spi-spisaveplan.html
|
||||
share/doc/postgresql/html/spi-realloc.html
|
||||
share/doc/postgresql/html/spi-spi-connect.html
|
||||
share/doc/postgresql/html/spi-spi-copytuple.html
|
||||
share/doc/postgresql/html/spi-spi-copytupledesc.html
|
||||
share/doc/postgresql/html/spi-spi-copytupleintoslot.html
|
||||
share/doc/postgresql/html/spi-spi-cursor-close.html
|
||||
share/doc/postgresql/html/spi-spi-cursor-fetch.html
|
||||
share/doc/postgresql/html/spi-spi-cursor-find.html
|
||||
share/doc/postgresql/html/spi-spi-cursor-move.html
|
||||
share/doc/postgresql/html/spi-spi-cursor-open.html
|
||||
share/doc/postgresql/html/spi-spi-exec.html
|
||||
share/doc/postgresql/html/spi-spi-execp.html
|
||||
share/doc/postgresql/html/spi-spi-finish.html
|
||||
share/doc/postgresql/html/spi-spi-fname.html
|
||||
share/doc/postgresql/html/spi-spi-fnumber.html
|
||||
share/doc/postgresql/html/spi-spi-freeplan.html
|
||||
share/doc/postgresql/html/spi-spi-freetuple.html
|
||||
share/doc/postgresql/html/spi-spi-freetupletable.html
|
||||
share/doc/postgresql/html/spi-spi-getbinval.html
|
||||
share/doc/postgresql/html/spi-spi-getrelname.html
|
||||
share/doc/postgresql/html/spi-spi-gettype.html
|
||||
share/doc/postgresql/html/spi-spi-gettypeid.html
|
||||
share/doc/postgresql/html/spi-spi-getvalue.html
|
||||
share/doc/postgresql/html/spi-spi-modifytuple.html
|
||||
share/doc/postgresql/html/spi-spi-palloc.html
|
||||
share/doc/postgresql/html/spi-spi-pfree.html
|
||||
share/doc/postgresql/html/spi-spi-prepare.html
|
||||
share/doc/postgresql/html/spi-spi-saveplan.html
|
||||
share/doc/postgresql/html/spi-visibility.html
|
||||
share/doc/postgresql/html/spi.html
|
||||
share/doc/postgresql/html/sql-abort.html
|
||||
share/doc/postgresql/html/sql-alteraggregate.html
|
||||
share/doc/postgresql/html/sql-alterconversion.html
|
||||
share/doc/postgresql/html/sql-alterdatabase.html
|
||||
share/doc/postgresql/html/sql-alterdomain.html
|
||||
share/doc/postgresql/html/sql-alterfunction.html
|
||||
share/doc/postgresql/html/sql-altergroup.html
|
||||
share/doc/postgresql/html/sql-alterlanguage.html
|
||||
share/doc/postgresql/html/sql-alteropclass.html
|
||||
share/doc/postgresql/html/sql-alterschema.html
|
||||
share/doc/postgresql/html/sql-altersequence.html
|
||||
share/doc/postgresql/html/sql-altertable.html
|
||||
share/doc/postgresql/html/sql-altertrigger.html
|
||||
share/doc/postgresql/html/sql-alteruser.html
|
||||
@ -528,14 +537,15 @@ share/doc/postgresql/html/sql-truncate.html
|
||||
share/doc/postgresql/html/sql-unlisten.html
|
||||
share/doc/postgresql/html/sql-update.html
|
||||
share/doc/postgresql/html/sql-vacuum.html
|
||||
share/doc/postgresql/html/sql.html
|
||||
share/doc/postgresql/html/ssh-tunnels.html
|
||||
share/doc/postgresql/html/ssl-tcp.html
|
||||
share/doc/postgresql/html/stylesheet.css
|
||||
share/doc/postgresql/html/supported-platforms.html
|
||||
share/doc/postgresql/html/transaction-iso.html
|
||||
share/doc/postgresql/html/trigger-datachanges.html
|
||||
share/doc/postgresql/html/trigger-examples.html
|
||||
share/doc/postgresql/html/trigger-manager.html
|
||||
share/doc/postgresql/html/trigger-example.html
|
||||
share/doc/postgresql/html/trigger-interface.html
|
||||
share/doc/postgresql/html/triggers.html
|
||||
share/doc/postgresql/html/tutorial-accessdb.html
|
||||
share/doc/postgresql/html/tutorial-advanced.html
|
||||
@ -549,7 +559,6 @@ share/doc/postgresql/html/tutorial-fk.html
|
||||
share/doc/postgresql/html/tutorial-inheritance.html
|
||||
share/doc/postgresql/html/tutorial-join.html
|
||||
share/doc/postgresql/html/tutorial-populate.html
|
||||
share/doc/postgresql/html/tutorial-preface.html
|
||||
share/doc/postgresql/html/tutorial-select.html
|
||||
share/doc/postgresql/html/tutorial-sql.html
|
||||
share/doc/postgresql/html/tutorial-start.html
|
||||
@ -558,44 +567,37 @@ share/doc/postgresql/html/tutorial-transactions.html
|
||||
share/doc/postgresql/html/tutorial-update.html
|
||||
share/doc/postgresql/html/tutorial-views.html
|
||||
share/doc/postgresql/html/tutorial.html
|
||||
share/doc/postgresql/html/type-system.html
|
||||
share/doc/postgresql/html/typeconv-func.html
|
||||
share/doc/postgresql/html/typeconv-oper.html
|
||||
share/doc/postgresql/html/typeconv-query.html
|
||||
share/doc/postgresql/html/typeconv-union-case.html
|
||||
share/doc/postgresql/html/typeconv.html
|
||||
share/doc/postgresql/html/units-history.html
|
||||
share/doc/postgresql/html/unsupported-features-sql99.html
|
||||
share/doc/postgresql/html/user-attributes.html
|
||||
share/doc/postgresql/html/user-manag.html
|
||||
share/doc/postgresql/html/user-preface-thisbook.html
|
||||
share/doc/postgresql/html/user-preface.html
|
||||
share/doc/postgresql/html/user.html
|
||||
share/doc/postgresql/html/view-pg-indexes.html
|
||||
share/doc/postgresql/html/view-pg-locks.html
|
||||
share/doc/postgresql/html/view-pg-rules.html
|
||||
share/doc/postgresql/html/view-pg-settings.html
|
||||
share/doc/postgresql/html/view-pg-stats.html
|
||||
share/doc/postgresql/html/view-pg-tables.html
|
||||
share/doc/postgresql/html/view-pg-user.html
|
||||
share/doc/postgresql/html/view-pg-views.html
|
||||
share/doc/postgresql/html/views-overview.html
|
||||
share/doc/postgresql/html/wal-benefits-later.html
|
||||
share/doc/postgresql/html/wal-configuration.html
|
||||
share/doc/postgresql/html/wal-implementation.html
|
||||
share/doc/postgresql/html/wal-internals.html
|
||||
share/doc/postgresql/html/wal.html
|
||||
share/doc/postgresql/html/x11962.html
|
||||
share/doc/postgresql/html/x1779.html
|
||||
share/doc/postgresql/html/xaggr.html
|
||||
share/doc/postgresql/html/xfunc-c.html
|
||||
share/doc/postgresql/html/xfunc-internal.html
|
||||
share/doc/postgresql/html/xfunc-overload.html
|
||||
share/doc/postgresql/html/xfunc-pl.html
|
||||
share/doc/postgresql/html/xfunc-plhandler.html
|
||||
share/doc/postgresql/html/xfunc-sql.html
|
||||
share/doc/postgresql/html/xfunc-tablefunctions.html
|
||||
share/doc/postgresql/html/xfunc.html
|
||||
share/doc/postgresql/html/xindex-am.html
|
||||
share/doc/postgresql/html/xindex-opclass-features.html
|
||||
share/doc/postgresql/html/xindex-opclass.html
|
||||
share/doc/postgresql/html/xindex-operators.html
|
||||
share/doc/postgresql/html/xindex-strategies.html
|
||||
share/doc/postgresql/html/xindex-support.html
|
||||
share/doc/postgresql/html/xindex.html
|
||||
share/doc/postgresql/html/xoper-example.html
|
||||
share/doc/postgresql/html/xoper-optimization.html
|
||||
share/doc/postgresql/html/xoper.html
|
||||
share/doc/postgresql/html/xplang-install.html
|
||||
share/doc/postgresql/html/xplang.html
|
||||
share/doc/postgresql/html/xtypes.html
|
||||
@dirrm share/doc/postgresql/html
|
||||
|
@ -1,35 +1,18 @@
|
||||
@comment $OpenBSD: PLIST-clients,v 1.8 2003/02/12 17:09:03 naddy Exp $
|
||||
@pkgcfl postgresql-[0-9]*
|
||||
@pkgcfl pgsql-[0-9]*
|
||||
@pkgcfl pgsql-clients-[0-9]*
|
||||
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_id
|
||||
bin/pg_restore
|
||||
bin/psql
|
||||
bin/vacuumdb
|
||||
include/postgresql/ecpgerrno.h
|
||||
include/postgresql/ecpglib.h
|
||||
include/postgresql/ecpgtype.h
|
||||
include/postgresql/internal/c.h
|
||||
include/postgresql/internal/lib/dllist.h
|
||||
include/postgresql/internal/libpq-int.h
|
||||
include/postgresql/internal/libpq/pqcomm.h
|
||||
include/postgresql/internal/postgres_fe.h
|
||||
include/postgresql/internal/pqexpbuffer.h
|
||||
include/postgresql/libpq-fe.h
|
||||
include/postgresql/libpq/libpq-fs.h
|
||||
include/postgresql/pg_config.h
|
||||
include/postgresql/pg_config_os.h
|
||||
include/postgresql/postgres_ext.h
|
||||
@pkgcfl postgresql-clients-[0-9]*
|
||||
@pkgcfl postgresql-server-[0-9]*
|
||||
@pkgcfl postgresql-[0-9]*
|
||||
@comment $OpenBSD: PLIST-server,v 1.1 2004/07/26 10:10:46 peter Exp $
|
||||
bin/initdb
|
||||
bin/initlocation
|
||||
bin/ipcclean
|
||||
bin/pg_controldata
|
||||
bin/pg_ctl
|
||||
bin/pg_encoding
|
||||
bin/pg_resetxlog
|
||||
bin/postgres
|
||||
bin/postmaster
|
||||
include/postgresql/server/access/attnum.h
|
||||
include/postgresql/server/access/clog.h
|
||||
include/postgresql/server/access/genam.h
|
||||
@ -51,6 +34,7 @@ include/postgresql/server/access/rtree.h
|
||||
include/postgresql/server/access/rtscan.h
|
||||
include/postgresql/server/access/sdir.h
|
||||
include/postgresql/server/access/skey.h
|
||||
include/postgresql/server/access/slru.h
|
||||
include/postgresql/server/access/strat.h
|
||||
include/postgresql/server/access/transam.h
|
||||
include/postgresql/server/access/tupdesc.h
|
||||
@ -101,6 +85,7 @@ include/postgresql/server/catalog/pg_statistic.h
|
||||
include/postgresql/server/catalog/pg_trigger.h
|
||||
include/postgresql/server/catalog/pg_type.h
|
||||
include/postgresql/server/catalog/pg_version.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
|
||||
@ -117,6 +102,7 @@ include/postgresql/server/commands/schemacmds.h
|
||||
include/postgresql/server/commands/sequence.h
|
||||
include/postgresql/server/commands/tablecmds.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
|
||||
@ -151,9 +137,12 @@ include/postgresql/server/executor/nodeTidscan.h
|
||||
include/postgresql/server/executor/nodeUnique.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/funcapi.h
|
||||
include/postgresql/server/getaddrinfo.h
|
||||
include/postgresql/server/getopt_long.h
|
||||
include/postgresql/server/lib/dllist.h
|
||||
include/postgresql/server/lib/lispsort.h
|
||||
include/postgresql/server/lib/stringinfo.h
|
||||
@ -161,15 +150,16 @@ 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/password.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
|
||||
@ -223,11 +213,14 @@ include/postgresql/server/parser/parser.h
|
||||
include/postgresql/server/parser/parsetree.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/pgstat.h
|
||||
include/postgresql/server/port.h
|
||||
include/postgresql/server/port/aix.h
|
||||
include/postgresql/server/port/beos.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
|
||||
@ -246,16 +239,14 @@ 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/win.h
|
||||
include/postgresql/server/port/win32.h
|
||||
include/postgresql/server/postgres.h
|
||||
include/postgresql/server/postgres_ext.h
|
||||
include/postgresql/server/postgres_fe.h
|
||||
include/postgresql/server/regex/cclass.h
|
||||
include/postgresql/server/regex/cname.h
|
||||
include/postgresql/server/regex/regcustom.h
|
||||
include/postgresql/server/regex/regerrs.h
|
||||
include/postgresql/server/regex/regex.h
|
||||
include/postgresql/server/regex/regex2.h
|
||||
include/postgresql/server/regex/utils.h
|
||||
include/postgresql/server/regex/regguts.h
|
||||
include/postgresql/server/rewrite/prs2lock.h
|
||||
include/postgresql/server/rewrite/rewriteDefine.h
|
||||
include/postgresql/server/rewrite/rewriteHandler.h
|
||||
@ -282,7 +273,6 @@ 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/page.h
|
||||
include/postgresql/server/storage/pg_sema.h
|
||||
include/postgresql/server/storage/pg_shmem.h
|
||||
include/postgresql/server/storage/pmsignal.h
|
||||
@ -305,7 +295,6 @@ include/postgresql/server/tcop/utility.h
|
||||
include/postgresql/server/utils/acl.h
|
||||
include/postgresql/server/utils/array.h
|
||||
include/postgresql/server/utils/ascii.h
|
||||
include/postgresql/server/utils/bit.h
|
||||
include/postgresql/server/utils/builtins.h
|
||||
include/postgresql/server/utils/cash.h
|
||||
include/postgresql/server/utils/catcache.h
|
||||
@ -315,12 +304,14 @@ 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/fcache.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
|
||||
@ -345,124 +336,25 @@ 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/varbit.h
|
||||
include/postgresql/sql3types.h
|
||||
include/postgresql/sqlca.h
|
||||
lib/libecpg.a
|
||||
lib/libpq.a
|
||||
man/man1/createdb.1
|
||||
man/man1/createlang.1
|
||||
man/man1/createuser.1
|
||||
man/man1/dropdb.1
|
||||
man/man1/droplang.1
|
||||
man/man1/dropuser.1
|
||||
man/man1/ecpg.1
|
||||
man/man1/pg_config.1
|
||||
man/man1/initdb.1
|
||||
man/man1/initlocation.1
|
||||
man/man1/ipcclean.1
|
||||
man/man1/pg_controldata.1
|
||||
man/man1/pg_ctl.1
|
||||
man/man1/pg_dump.1
|
||||
man/man1/pg_dumpall.1
|
||||
man/man1/pg_restore.1
|
||||
man/man1/psql.1
|
||||
man/man1/vacuumdb.1
|
||||
man/man7/abort.7
|
||||
man/man7/alter_database.7
|
||||
man/man7/alter_group.7
|
||||
man/man7/alter_table.7
|
||||
man/man7/alter_trigger.7
|
||||
man/man7/alter_user.7
|
||||
man/man7/analyze.7
|
||||
man/man7/begin.7
|
||||
man/man7/checkpoint.7
|
||||
man/man7/close.7
|
||||
man/man7/cluster.7
|
||||
man/man7/comment.7
|
||||
man/man7/commit.7
|
||||
man/man7/copy.7
|
||||
man/man7/create_aggregate.7
|
||||
man/man7/create_cast.7
|
||||
man/man7/create_constraint_trigger.7
|
||||
man/man7/create_conversion.7
|
||||
man/man7/create_database.7
|
||||
man/man7/create_domain.7
|
||||
man/man7/create_function.7
|
||||
man/man7/create_group.7
|
||||
man/man7/create_index.7
|
||||
man/man7/create_language.7
|
||||
man/man7/create_operator.7
|
||||
man/man7/create_operator_class.7
|
||||
man/man7/create_rule.7
|
||||
man/man7/create_schema.7
|
||||
man/man7/create_sequence.7
|
||||
man/man7/create_table.7
|
||||
man/man7/create_table_as.7
|
||||
man/man7/create_trigger.7
|
||||
man/man7/create_type.7
|
||||
man/man7/create_user.7
|
||||
man/man7/create_view.7
|
||||
man/man7/deallocate.7
|
||||
man/man7/declare.7
|
||||
man/man7/delete.7
|
||||
man/man7/drop_aggregate.7
|
||||
man/man7/drop_cast.7
|
||||
man/man7/drop_conversion.7
|
||||
man/man7/drop_database.7
|
||||
man/man7/drop_domain.7
|
||||
man/man7/drop_function.7
|
||||
man/man7/drop_group.7
|
||||
man/man7/drop_index.7
|
||||
man/man7/drop_language.7
|
||||
man/man7/drop_operator.7
|
||||
man/man7/drop_operator_class.7
|
||||
man/man7/drop_rule.7
|
||||
man/man7/drop_schema.7
|
||||
man/man7/drop_sequence.7
|
||||
man/man7/drop_table.7
|
||||
man/man7/drop_trigger.7
|
||||
man/man7/drop_type.7
|
||||
man/man7/drop_user.7
|
||||
man/man7/drop_view.7
|
||||
man/man7/end.7
|
||||
man/man7/execute.7
|
||||
man/man7/explain.7
|
||||
man/man7/fetch.7
|
||||
man/man7/grant.7
|
||||
man/man7/insert.7
|
||||
man/man7/listen.7
|
||||
man/man7/load.7
|
||||
man/man7/lock.7
|
||||
man/man7/move.7
|
||||
man/man7/notify.7
|
||||
man/man7/prepare.7
|
||||
man/man7/reindex.7
|
||||
man/man7/reset.7
|
||||
man/man7/revoke.7
|
||||
man/man7/rollback.7
|
||||
man/man7/select.7
|
||||
man/man7/select_into.7
|
||||
man/man7/set.7
|
||||
man/man7/set_constraints.7
|
||||
man/man7/set_session_authorization.7
|
||||
man/man7/set_transaction.7
|
||||
man/man7/show.7
|
||||
man/man7/start_transaction.7
|
||||
man/man7/truncate.7
|
||||
man/man7/unlisten.7
|
||||
man/man7/update.7
|
||||
man/man7/vacuum.7
|
||||
share/doc/postgresql/COPYRIGHT
|
||||
share/doc/postgresql/FAQ
|
||||
share/doc/postgresql/FAQ_DEV
|
||||
share/doc/postgresql/HISTORY
|
||||
share/doc/postgresql/INSTALL
|
||||
share/doc/postgresql/README
|
||||
man/man1/pg_resetxlog.1
|
||||
@comment man/man1/pgtclsh.1
|
||||
@comment man/man1/pgtksh.1
|
||||
man/man1/postgres.1
|
||||
man/man1/postmaster.1
|
||||
share/doc/postgresql/README.OpenBSD
|
||||
share/doc/postgresql/README.mb.big5
|
||||
share/doc/postgresql/README.mb.jp
|
||||
share/doc/postgresql/TODO
|
||||
share/doc/postgresql/register.txt
|
||||
share/postgresql/pg_hba.conf.sample
|
||||
share/postgresql/pg_ident.conf.sample
|
||||
share/postgresql/pg_service.conf.sample
|
||||
share/postgresql/postgres.bki
|
||||
share/postgresql/postgresql.conf.sample
|
||||
%%SHARED%%
|
||||
@dirrm share/postgresql
|
||||
@dirrm share/doc/postgresql
|
||||
@dirrm lib/postgresql
|
||||
@dirrm include/postgresql/server/utils
|
||||
@dirrm include/postgresql/server/tcop
|
||||
@ -482,8 +374,5 @@ share/doc/postgresql/register.txt
|
||||
@dirrm include/postgresql/server/bootstrap
|
||||
@dirrm include/postgresql/server/access
|
||||
@dirrm include/postgresql/server
|
||||
@dirrm include/postgresql/libpq
|
||||
@dirrm include/postgresql/internal/libpq
|
||||
@dirrm include/postgresql/internal/lib
|
||||
@dirrm include/postgresql/internal
|
||||
@dirrm include/postgresql
|
||||
@extraunexec userdel -r _postgresql
|
||||
@extraunexec groupdel _postgresql
|
@ -1,8 +0,0 @@
|
||||
@comment $OpenBSD: PLIST-tcl,v 1.1 2003/01/02 07:15:34 todd Exp $
|
||||
bin/pgtclsh
|
||||
bin/pgtksh
|
||||
include/postgresql/libpgtcl.h
|
||||
lib/libpgtcl.a
|
||||
man/man1/pgtclsh.1
|
||||
man/man1/pgtksh.1
|
||||
%%SHARED%%
|
Loading…
x
Reference in New Issue
Block a user