From owner-freebsd-ports Sun Jun 27 20:40:11 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BC62D14DAB for ; Sun, 27 Jun 1999 20:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA72715; Sun, 27 Jun 1999 20:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.HiWAAY.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (Postfix) with ESMTP id DD01F15417 for ; Sun, 27 Jun 1999 20:34:09 -0700 (PDT) (envelope-from dkelly@nospam.hiwaay.net) Received: from nospam.hiwaay.net (tnt8-216-180-14-143.dialup.HiWAAY.net [216.180.14.143]) by mail.HiWAAY.net (8.9.1a/8.9.0) with ESMTP id WAA04935; Sun, 27 Jun 1999 22:34:04 -0500 (CDT) Received: (from dkelly@localhost) by nospam.hiwaay.net (8.9.3/8.9.3) id WAA77718; Sun, 27 Jun 1999 22:33:15 -0500 (CDT) (envelope-from dkelly) Message-Id: <199906280333.WAA77718@nospam.hiwaay.net> Date: Sun, 27 Jun 1999 22:33:15 -0500 (CDT) From: dkelly@hiwaay.net Reply-To: dkelly@hiwaay.net To: FreeBSD-gnats-submit@freebsd.org Cc: dkelly@hiwaay.net X-Send-Pr-Version: 3.2 Subject: ports/12427: postgresql-6.5 port update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12427 >Category: ports >Synopsis: diffs for PostgreSQL 6.4.2 to 6.5 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Jun 27 20:40:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: David Kelly >Release: FreeBSD 3.2-STABLE i386 >Organization: >Environment: % uname -a FreeBSD nospam.hiwaay.net 3.2-STABLE FreeBSD 3.2-STABLE #0: Sun Jun 13 08:28:04 CDT 1999 dkelly@nospam.hiwaay.net:/usr/src/sys/compile/REEBOK i386 >Description: This is the diffs for the postgresql port that allowed me to install 6.5. Generated like this: % cd /usr/ports/databases % diff -rc postgresql postgresql.orig > diffs Actually had this stuff for a while but pkg_delete had an awful time wtih the PLIST. Rather than edit the old PLIST into shape I simply cut out the old section and pasted totally new. I don't understand why pkg_delete complains about pgsql/man* files. So I removed them from PLIST. Somebody ought to completly check my work as there appear to be a number of include files and libraries added and missing between versions. Also I'm not a big postgresql user, so just because it seems to work for me, doesn't mean a lot. OTOH, I did run the regression tests. float8 and geometry failed. The float8 failures need some attention as there is some extra output: ERROR: floating point exception! The last floating point operation either exceeded legal ranges or was a divide by zero >How-To-Repeat: >Fix: diff -rc postgresql/Makefile postgresql.orig/Makefile *** postgresql/Makefile Sun Jun 27 21:19:22 1999 --- postgresql.orig/Makefile Sat Jun 26 19:21:59 1999 *************** *** 6,12 **** # $Id: Makefile,v 1.42 1999/06/26 20:59:57 obrien Exp $ # ! DISTNAME= postgresql-6.5 CATEGORIES= databases MASTER_SITES= ftp://ftp.postgresql.org/pub/ \ ftp://ftp.iodynamics.com/pub/mirror/postgresql/ \ --- 6,12 ---- # $Id: Makefile,v 1.42 1999/06/26 20:59:57 obrien Exp $ # ! DISTNAME= postgresql-6.4.2 CATEGORIES= databases MASTER_SITES= ftp://ftp.postgresql.org/pub/ \ ftp://ftp.iodynamics.com/pub/mirror/postgresql/ \ *************** *** 16,21 **** --- 16,23 ---- ftp://ftp.sunet.se/pub/unix/databases/relational/postgresql/ MAINTAINER= andreas@FreeBSD.ORG + + BROKEN='unfetchable, version 6.5 is the latest' .if ${MACHINE_ARCH} == "alpha" BROKEN= doesn\'t build on the alpha yet diff -rc postgresql/files/md5 postgresql.orig/files/md5 *** postgresql/files/md5 Sat Jun 19 20:41:25 1999 --- postgresql.orig/files/md5 Wed Jan 20 18:13:45 1999 *************** *** 1 **** ! MD5 (postgresql-6.5.tar.gz) = 920378e7b3d08aa940393f6c1dcb6792 --- 1 ---- ! MD5 (postgresql-6.4.2.tar.gz) = 4f5e0409921892ca08fff2d8c099b3d7 diff -rc postgresql/patches/patch-aj postgresql.orig/patches/patch-aj *** postgresql/patches/patch-aj Sat Jun 19 22:10:36 1999 --- postgresql.orig/patches/patch-aj Sat Jan 31 12:26:49 1998 *************** *** 1,23 **** ! --- bin/pg_passwd/pg_passwd.c.orig Thu May 27 02:00:40 1999 ! +++ bin/pg_passwd/pg_passwd.c Sat Jun 19 20:54:08 1999 ! @@ -26,11 +26,15 @@ #endif +#ifndef _POSIX_SOURCE ! +#define _PASSWORD_LEN 128 /* max length, not containing NULL */ +#endif + char *comname; ! static void usage(FILE *stream); ! static void read_pwd_file(char *filename); ! static void write_pwd_file(char *filename, char *bkname); ! -static void encrypt_pwd(char key[9], char salt[3], char passwd[14]); ! +static void encrypt_pwd(char key[9], char salt[3], char passwd[_PASSWORD_LEN+1]); ! static void prompt_for_username(char *username); ! static void prompt_for_password(char *prompt, char *password); ! @@ -158,7 +162,7 @@ if (q != NULL) *(q++) = '\0'; --- 1,25 ---- ! --- bin/pg_passwd/pg_passwd.c.orig Sat Jan 31 19:09:26 1998 ! +++ bin/pg_passwd/pg_passwd.c Sat Jan 31 19:15:43 1998 ! @@ -23,12 +23,16 @@ #endif +#ifndef _POSIX_SOURCE ! +# define _PASSWORD_LEN 128 /* max length, not containing NULL */ +#endif + char *comname; ! void usage(FILE *stream); ! void read_pwd_file(char *filename); ! void write_pwd_file(char *filename, char *bkname); ! -void encrypt_pwd(char key[9], char salt[3], char passwd[14]); ! -int check_pwd(char key[9], char passwd[14]); ! +void encrypt_pwd(char key[9], char salt[3], char passwd[_PASSWORD_LEN+1]); ! +int check_pwd(char key[9], char passwd[_PASSWORD_LEN+1]); ! void prompt_for_username(char *username); ! void prompt_for_password(char *prompt, char *password); ! @@ -148,7 +152,7 @@ if (q != NULL) *(q++) = '\0'; *************** *** 26,44 **** { fprintf(stderr, "WARNING: %s: line %d: illegal password length.\n", filename, npwds + 1); ! @@ -222,7 +226,7 @@ } ! static void -encrypt_pwd(char key[9], char salt[3], char passwd[14]) +encrypt_pwd(char key[9], char salt[3], char passwd[_PASSWORD_LEN+1]) { int n; ! @@ -254,9 +258,9 @@ ! #ifdef NOT_USED ! static int -check_pwd(char key[9], char passwd[14]) +check_pwd(char key[9], char passwd[_PASSWORD_LEN+1]) { --- 28,46 ---- { fprintf(stderr, "WARNING: %s: line %d: illegal password length.\n", filename, npwds + 1); ! @@ -208,7 +212,7 @@ } ! void -encrypt_pwd(char key[9], char salt[3], char passwd[14]) +encrypt_pwd(char key[9], char salt[3], char passwd[_PASSWORD_LEN+1]) { int n; ! @@ -242,9 +246,9 @@ ! } ! int -check_pwd(char key[9], char passwd[14]) +check_pwd(char key[9], char passwd[_PASSWORD_LEN+1]) { *************** *** 47,62 **** char salt[3]; salt[0] = passwd[0]; ! @@ -264,7 +268,7 @@ salt[2] = '\0'; encrypt_pwd(key, salt, shouldbe); - return strncmp(shouldbe, passwd, 13) == 0 ? 1 : 0; + return strncmp(shouldbe, passwd, _PASSWORD_LEN) == 0 ? 1 : 0; } - #endif ! @@ -339,7 +343,7 @@ char salt[3]; char key[9], key2[9]; --- 49,64 ---- char salt[3]; salt[0] = passwd[0]; ! @@ -252,7 +256,7 @@ salt[2] = '\0'; encrypt_pwd(key, salt, shouldbe); - return strncmp(shouldbe, passwd, 13) == 0 ? 1 : 0; + return strncmp(shouldbe, passwd, _PASSWORD_LEN) == 0 ? 1 : 0; } ! void ! @@ -326,7 +330,7 @@ char salt[3]; char key[9], key2[9]; Only in postgresql.orig/patches: patch-ak Only in postgresql.orig/patches: patch-ao Only in postgresql.orig/patches: patch-ap Only in postgresql.orig/patches: patch-aq Only in postgresql.orig/patches: patch-ar diff -rc postgresql/pkg/PLIST postgresql.orig/pkg/PLIST *** postgresql/pkg/PLIST Sun Jun 27 21:58:10 1999 --- postgresql.orig/pkg/PLIST Thu Feb 4 22:04:49 1999 *************** *** 1,131 **** etc/rc.d/pgsql.sh ! pgsql/lib/global1.bki.source ! pgsql/lib/global1.description ! pgsql/lib/local1_template1.bki.source ! pgsql/lib/local1_template1.description ! pgsql/lib/pg_hba.conf.sample ! pgsql/lib/pg_geqo.sample ! pgsql/lib/libpq.a ! pgsql/lib/libpq.so.2 ! pgsql/lib/libpq.so ! pgsql/lib/libecpg.a ! pgsql/lib/libecpg.so.3 ! pgsql/lib/libecpg.so ! pgsql/lib/libpq++.a ! pgsql/lib/libpq++.so.3 ! pgsql/lib/libpq++.so ! pgsql/lib/libpgtcl.a ! pgsql/lib/libpgtcl.so.2 ! pgsql/lib/libpgtcl.so ! pgsql/lib/plpgsql.so ! pgsql/lib/pltcl.so ! pgsql/bin/postgres ! pgsql/bin/postmaster ! pgsql/bin/ecpg ! pgsql/bin/pg_id ! pgsql/bin/pg_version ! pgsql/bin/psql ! pgsql/bin/pg_dump ! pgsql/bin/pg_dumpall ! pgsql/bin/pg_upgrade ! pgsql/bin/pg_passwd pgsql/bin/cleardbdir pgsql/bin/createdb - pgsql/bin/createlang pgsql/bin/createuser pgsql/bin/destroydb - pgsql/bin/destroylang pgsql/bin/destroyuser pgsql/bin/initdb - pgsql/bin/vacuumdb pgsql/bin/initlocation pgsql/bin/ipcclean ! pgsql/bin/pgaccess ! pgsql/bin/pgtclsh ! pgsql/bin/pgtksh ! pgsql/include/lib/dllist.h ! pgsql/include/libpq/pqcomm.h ! pgsql/include/libpq/libpq-fs.h ! pgsql/include/utils/geo_decls.h ! pgsql/include/utils/elog.h ! pgsql/include/utils/palloc.h ! pgsql/include/utils/mcxt.h ! pgsql/include/access/attnum.h ! pgsql/include/executor/spi.h ! pgsql/include/commands/trigger.h ! pgsql/include/fmgr.h ! pgsql/include/os.h ! pgsql/include/config.h ! pgsql/include/c.h ! pgsql/include/postgres.h ! pgsql/include/postgres_ext.h ! pgsql/include/libpq-fe.h ! pgsql/include/libpq-int.h ! pgsql/include/ecpgerrno.h ! pgsql/include/ecpglib.h ! pgsql/include/ecpgtype.h ! pgsql/include/sqlca.h ! pgsql/include/libpq++/pgconnection.h ! pgsql/include/libpq++/pgdatabase.h ! pgsql/include/libpq++/pgtransdb.h ! pgsql/include/libpq++/pgcursordb.h ! pgsql/include/libpq++/pglobject.h ! pgsql/include/libpq++.H ! pgsql/include/libpgtcl.h ! pgsql/.profile ! pgsql/data/base/template1/pg_proc ! pgsql/data/base/template1/pg_type ! pgsql/data/base/template1/pg_attribute ! pgsql/data/base/template1/pg_class ! pgsql/data/base/template1/pg_inherits ! pgsql/data/base/template1/pg_index ! pgsql/data/base/template1/pg_statistic ! pgsql/data/base/template1/pg_operator ! pgsql/data/base/template1/pg_opclass pgsql/data/base/template1/pg_am pgsql/data/base/template1/pg_amop pgsql/data/base/template1/pg_amproc ! pgsql/data/base/template1/pg_language ! pgsql/data/base/template1/pg_aggregate ! pgsql/data/base/template1/pg_ipl ! pgsql/data/base/template1/pg_inheritproc ! pgsql/data/base/template1/pg_rewrite ! pgsql/data/base/template1/pg_listener ! pgsql/data/base/template1/pg_description pgsql/data/base/template1/pg_attribute_relid_attnam_index pgsql/data/base/template1/pg_attribute_relid_attnum_index pgsql/data/base/template1/pg_proc_oid_index - pgsql/data/base/template1/pg_attribute_attrelid_index pgsql/data/base/template1/pg_proc_proname_narg_type_index pgsql/data/base/template1/pg_proc_prosrc_index - pgsql/data/base/template1/pg_type_oid_index - pgsql/data/base/template1/pg_type_typname_index - pgsql/data/base/template1/pg_class_oid_index - pgsql/data/base/template1/pg_class_relname_index - pgsql/data/base/template1/pg_attrdef - pgsql/data/base/template1/pg_attrdef_adrelid_index pgsql/data/base/template1/pg_relcheck pgsql/data/base/template1/pg_relcheck_rcrelid_index pgsql/data/base/template1/pg_trigger pgsql/data/base/template1/pg_trigger_tgrelid_index ! pgsql/data/base/template1/pg_description_objoid_index ! pgsql/data/base/template1/PG_VERSION pgsql/data/base/template1/pg_user - pgsql/data/base/template1/pg_rules pgsql/data/base/template1/pg_views - pgsql/data/base/template1/pg_tables - pgsql/data/base/template1/pg_indexes - pgsql/data/pg_variable pgsql/data/pg_database ! pgsql/data/pg_shadow pgsql/data/pg_group - pgsql/data/pg_log - pgsql/data/PG_VERSION pgsql/data/pg_hba.conf ! pgsql/data/pg_geqo.sample pgsql/data/pg_pwd pgsql/post-install-notes ! share/doc/pgsql/src/graphics/catalogs.ag share/doc/pgsql/src/graphics/catalogs.ps share/doc/pgsql/src/graphics/clientserver.ag share/doc/pgsql/src/graphics/clientserver.gif --- 1,157 ---- etc/rc.d/pgsql.sh ! pgsql/.profile pgsql/bin/cleardbdir pgsql/bin/createdb pgsql/bin/createuser pgsql/bin/destroydb pgsql/bin/destroyuser + pgsql/bin/ecpg pgsql/bin/initdb pgsql/bin/initlocation pgsql/bin/ipcclean ! pgsql/bin/pg_dump ! pgsql/bin/pg_dumpall ! pgsql/bin/pg_id ! pgsql/bin/pg_passwd ! pgsql/bin/pg_upgrade ! pgsql/bin/pg_version ! pgsql/bin/postgres ! pgsql/bin/postmaster ! pgsql/bin/psql ! pgsql/data/PG_VERSION ! pgsql/data/base/template1/PG_VERSION ! pgsql/data/base/template1/pg_aggregate pgsql/data/base/template1/pg_am pgsql/data/base/template1/pg_amop pgsql/data/base/template1/pg_amproc ! pgsql/data/base/template1/pg_attrdef ! pgsql/data/base/template1/pg_attrdef_adrelid_index ! pgsql/data/base/template1/pg_attribute ! pgsql/data/base/template1/pg_attribute_attrelid_index pgsql/data/base/template1/pg_attribute_relid_attnam_index pgsql/data/base/template1/pg_attribute_relid_attnum_index + pgsql/data/base/template1/pg_class + pgsql/data/base/template1/pg_class_oid_index + pgsql/data/base/template1/pg_class_relname_index + pgsql/data/base/template1/pg_description + pgsql/data/base/template1/pg_description_objoid_index + pgsql/data/base/template1/pg_index + pgsql/data/base/template1/pg_indexes + pgsql/data/base/template1/pg_inheritproc + pgsql/data/base/template1/pg_inherits + pgsql/data/base/template1/pg_internal.init + pgsql/data/base/template1/pg_ipl + pgsql/data/base/template1/pg_language + pgsql/data/base/template1/pg_listener + pgsql/data/base/template1/pg_opclass + pgsql/data/base/template1/pg_operator + pgsql/data/base/template1/pg_parg + pgsql/data/base/template1/pg_proc pgsql/data/base/template1/pg_proc_oid_index pgsql/data/base/template1/pg_proc_proname_narg_type_index pgsql/data/base/template1/pg_proc_prosrc_index pgsql/data/base/template1/pg_relcheck pgsql/data/base/template1/pg_relcheck_rcrelid_index + pgsql/data/base/template1/pg_rewrite + pgsql/data/base/template1/pg_rules + pgsql/data/base/template1/pg_statistic + pgsql/data/base/template1/pg_tables pgsql/data/base/template1/pg_trigger pgsql/data/base/template1/pg_trigger_tgrelid_index ! pgsql/data/base/template1/pg_type ! pgsql/data/base/template1/pg_type_oid_index ! pgsql/data/base/template1/pg_type_typname_index pgsql/data/base/template1/pg_user pgsql/data/base/template1/pg_views pgsql/data/pg_database ! pgsql/data/pg_geqo.sample pgsql/data/pg_group pgsql/data/pg_hba.conf ! pgsql/data/pg_log pgsql/data/pg_pwd + pgsql/data/pg_shadow + pgsql/data/pg_variable + pgsql/include/access/attnum.h + pgsql/include/c.h + pgsql/include/commands/trigger.h + pgsql/include/config.h + pgsql/include/ecpgerrno.h + pgsql/include/ecpglib.h + pgsql/include/ecpgtype.h + pgsql/include/executor/spi.h + pgsql/include/fmgr.h + pgsql/include/lib/dllist.h + pgsql/include/libpq++.h + pgsql/include/libpq++/pgconnection.h + pgsql/include/libpq++/pgcursordb.h + pgsql/include/libpq++/pgdatabase.h + pgsql/include/libpq++/pgenv.h + pgsql/include/libpq++/pglobject.h + pgsql/include/libpq++/pgtransdb.h + pgsql/include/libpq-fe.h + pgsql/include/libpq-int.h + pgsql/include/libpq/libpq-fs.h + pgsql/include/libpq/pqcomm.h + pgsql/include/os.h + pgsql/include/postgres.h + pgsql/include/postgres_ext.h + pgsql/include/sqlca.h + pgsql/include/utils/elog.h + pgsql/include/utils/geo_decls.h + pgsql/include/utils/palloc.h + pgsql/lib/global1.bki.source + pgsql/lib/global1.description + pgsql/lib/libecpg.a + pgsql/lib/libecpg.so + pgsql/lib/libecpg.so.2 + pgsql/lib/libpq++.a + pgsql/lib/libpq++.so + pgsql/lib/libpq++.so.2 + pgsql/lib/libpq.a + pgsql/lib/libpq.so + pgsql/lib/libpq.so.2 + pgsql/lib/local1_template1.bki.source + pgsql/lib/local1_template1.description + pgsql/lib/pg_geqo.sample + pgsql/lib/pg_hba.conf.sample + pgsql/lib/plpgsql.so + @exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B + @unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R pgsql/post-install-notes ! share/doc/pgsql/CVS/Entries ! share/doc/pgsql/CVS/Repository ! share/doc/pgsql/CVS/Root ! share/doc/pgsql/CVS/Tag ! share/doc/pgsql/FAQ ! share/doc/pgsql/FAQ_CVS ! share/doc/pgsql/FAQ_DEV ! share/doc/pgsql/FAQ_FreeBSD ! share/doc/pgsql/FAQ_HPUX ! share/doc/pgsql/FAQ_Irix ! share/doc/pgsql/FAQ_Linux ! share/doc/pgsql/Makefile ! share/doc/pgsql/README.fsync ! share/doc/pgsql/README.inet ! share/doc/pgsql/README.locale ! share/doc/pgsql/README.mb ! share/doc/pgsql/README.mb.jp ! share/doc/pgsql/TODO ! share/doc/pgsql/admin.ps.gz ! share/doc/pgsql/admin.tar.gz ! share/doc/pgsql/bug.template ! share/doc/pgsql/postgres.tar.gz ! share/doc/pgsql/programmer.ps.gz ! share/doc/pgsql/programmer.tar.gz ! share/doc/pgsql/src/CVS/Entries ! share/doc/pgsql/src/CVS/Repository ! share/doc/pgsql/src/CVS/Root ! share/doc/pgsql/src/CVS/Tag ! share/doc/pgsql/src/Makefile ! share/doc/pgsql/src/graphics/CVS/Entries ! share/doc/pgsql/src/graphics/CVS/Repository ! share/doc/pgsql/src/graphics/CVS/Root ! share/doc/pgsql/src/graphics/CVS/Tag ! share/doc/pgsql/src/graphics/catalogs.gif share/doc/pgsql/src/graphics/catalogs.ps share/doc/pgsql/src/graphics/clientserver.ag share/doc/pgsql/src/graphics/clientserver.gif *************** *** 133,141 **** share/doc/pgsql/src/graphics/connections.gif share/doc/pgsql/src/graphics/layout.ag share/doc/pgsql/src/graphics/layout.gif ! share/doc/pgsql/src/graphics/catalogs.cgm ! share/doc/pgsql/src/graphics/catalogs.gif ! share/doc/pgsql/src/sgml/ref/select_into.sgml share/doc/pgsql/src/sgml/ref/allfiles.sgml share/doc/pgsql/src/sgml/ref/alter_table.sgml share/doc/pgsql/src/sgml/ref/alter_user.sgml --- 159,228 ---- share/doc/pgsql/src/graphics/connections.gif share/doc/pgsql/src/graphics/layout.ag share/doc/pgsql/src/graphics/layout.gif ! share/doc/pgsql/src/sgml/CVS/Entries ! share/doc/pgsql/src/sgml/CVS/Repository ! share/doc/pgsql/src/sgml/CVS/Root ! share/doc/pgsql/src/sgml/CVS/Tag ! share/doc/pgsql/src/sgml/Makefile ! share/doc/pgsql/src/sgml/about.sgml ! share/doc/pgsql/src/sgml/admin.sgml ! share/doc/pgsql/src/sgml/advanced.sgml ! share/doc/pgsql/src/sgml/arch-dev.sgml ! share/doc/pgsql/src/sgml/arch-pg.sgml ! share/doc/pgsql/src/sgml/arch.sgml ! share/doc/pgsql/src/sgml/array.sgml ! share/doc/pgsql/src/sgml/biblio.sgml ! share/doc/pgsql/src/sgml/bki.sgml ! share/doc/pgsql/src/sgml/compiler.sgml ! share/doc/pgsql/src/sgml/config.sgml ! share/doc/pgsql/src/sgml/contacts.sgml ! share/doc/pgsql/src/sgml/current.sgml ! share/doc/pgsql/src/sgml/datatype.sgml ! share/doc/pgsql/src/sgml/dfunc.sgml ! share/doc/pgsql/src/sgml/docguide.sgml ! share/doc/pgsql/src/sgml/ecpg.sgml ! share/doc/pgsql/src/sgml/environ.sgml ! share/doc/pgsql/src/sgml/extend.sgml ! share/doc/pgsql/src/sgml/func-ref.sgml ! share/doc/pgsql/src/sgml/func.sgml ! share/doc/pgsql/src/sgml/geqo.sgml ! share/doc/pgsql/src/sgml/gist.sgml ! share/doc/pgsql/src/sgml/history.sgml ! share/doc/pgsql/src/sgml/indices.sgml ! share/doc/pgsql/src/sgml/info.sgml ! share/doc/pgsql/src/sgml/inherit.sgml ! share/doc/pgsql/src/sgml/install.sgml ! share/doc/pgsql/src/sgml/installation.sgml ! share/doc/pgsql/src/sgml/intro-ag.sgml ! share/doc/pgsql/src/sgml/intro-pg.sgml ! share/doc/pgsql/src/sgml/intro.sgml ! share/doc/pgsql/src/sgml/jdbc.sgml ! share/doc/pgsql/src/sgml/keys.sgml ! share/doc/pgsql/src/sgml/legal.sgml ! share/doc/pgsql/src/sgml/libpgtcl.sgml ! share/doc/pgsql/src/sgml/libpq++.sgml ! share/doc/pgsql/src/sgml/libpq.sgml ! share/doc/pgsql/src/sgml/lobj.sgml ! share/doc/pgsql/src/sgml/manage.sgml ! share/doc/pgsql/src/sgml/notation.sgml ! share/doc/pgsql/src/sgml/odbc.sgml ! share/doc/pgsql/src/sgml/oper.sgml ! share/doc/pgsql/src/sgml/page.sgml ! share/doc/pgsql/src/sgml/pg_options.sgml ! share/doc/pgsql/src/sgml/pgaccess.sgml ! share/doc/pgsql/src/sgml/ports.sgml ! share/doc/pgsql/src/sgml/postgres.sgml ! share/doc/pgsql/src/sgml/programmer.sgml ! share/doc/pgsql/src/sgml/protocol.sgml ! share/doc/pgsql/src/sgml/psql.sgml ! share/doc/pgsql/src/sgml/query-ug.sgml ! share/doc/pgsql/src/sgml/query.sgml ! share/doc/pgsql/src/sgml/recovery.sgml ! share/doc/pgsql/src/sgml/ref/CVS/Entries ! share/doc/pgsql/src/sgml/ref/CVS/Repository ! share/doc/pgsql/src/sgml/ref/CVS/Root ! share/doc/pgsql/src/sgml/ref/CVS/Tag ! share/doc/pgsql/src/sgml/ref/abort.sgml share/doc/pgsql/src/sgml/ref/allfiles.sgml share/doc/pgsql/src/sgml/ref/alter_table.sgml share/doc/pgsql/src/sgml/ref/alter_user.sgml *************** *** 170,177 **** share/doc/pgsql/src/sgml/ref/destroyuser.sgml share/doc/pgsql/src/sgml/ref/drop_aggregate.sgml share/doc/pgsql/src/sgml/ref/drop_database.sgml - share/doc/pgsql/src/sgml/ref/drop_index.sgml share/doc/pgsql/src/sgml/ref/drop_function.sgml share/doc/pgsql/src/sgml/ref/drop_language.sgml share/doc/pgsql/src/sgml/ref/drop_operator.sgml share/doc/pgsql/src/sgml/ref/drop_rule.sgml --- 257,264 ---- share/doc/pgsql/src/sgml/ref/destroyuser.sgml share/doc/pgsql/src/sgml/ref/drop_aggregate.sgml share/doc/pgsql/src/sgml/ref/drop_database.sgml share/doc/pgsql/src/sgml/ref/drop_function.sgml + share/doc/pgsql/src/sgml/ref/drop_index.sgml share/doc/pgsql/src/sgml/ref/drop_language.sgml share/doc/pgsql/src/sgml/ref/drop_operator.sgml share/doc/pgsql/src/sgml/ref/drop_rule.sgml *************** *** 192,202 **** share/doc/pgsql/src/sgml/ref/lock.sgml share/doc/pgsql/src/sgml/ref/move.sgml share/doc/pgsql/src/sgml/ref/notify.sgml - share/doc/pgsql/src/sgml/ref/reset.sgml share/doc/pgsql/src/sgml/ref/pg_dump.sgml share/doc/pgsql/src/sgml/ref/pg_dumpall.sgml share/doc/pgsql/src/sgml/ref/pg_upgrade.sgml share/doc/pgsql/src/sgml/ref/psql-ref.sgml share/doc/pgsql/src/sgml/ref/revoke.sgml share/doc/pgsql/src/sgml/ref/rollback.sgml share/doc/pgsql/src/sgml/ref/select.sgml --- 279,289 ---- share/doc/pgsql/src/sgml/ref/lock.sgml share/doc/pgsql/src/sgml/ref/move.sgml share/doc/pgsql/src/sgml/ref/notify.sgml share/doc/pgsql/src/sgml/ref/pg_dump.sgml share/doc/pgsql/src/sgml/ref/pg_dumpall.sgml share/doc/pgsql/src/sgml/ref/pg_upgrade.sgml share/doc/pgsql/src/sgml/ref/psql-ref.sgml + share/doc/pgsql/src/sgml/ref/reset.sgml share/doc/pgsql/src/sgml/ref/revoke.sgml share/doc/pgsql/src/sgml/ref/rollback.sgml share/doc/pgsql/src/sgml/ref/select.sgml *************** *** 205,282 **** share/doc/pgsql/src/sgml/ref/unlisten.sgml share/doc/pgsql/src/sgml/ref/update.sgml share/doc/pgsql/src/sgml/ref/vacuum.sgml - share/doc/pgsql/src/sgml/ref/vacuumdb.sgml - share/doc/pgsql/src/sgml/ref/#cvs.cvsup-5969.7 - share/doc/pgsql/src/sgml/ref/pgaccess-ref.sgml - share/doc/pgsql/src/sgml/ref/pgadmin-ref.sgml - share/doc/pgsql/src/sgml/ref/postgres-ref.sgml - share/doc/pgsql/src/sgml/ref/postmaster.sgml - share/doc/pgsql/src/sgml/ref/create_table_as.sgml - share/doc/pgsql/src/sgml/ref/abort.sgml - share/doc/pgsql/src/sgml/rules.sgml - share/doc/pgsql/src/sgml/Makefile - share/doc/pgsql/src/sgml/about.sgml - share/doc/pgsql/src/sgml/admin.sgml - share/doc/pgsql/src/sgml/advanced.sgml - share/doc/pgsql/src/sgml/arch-dev.sgml - share/doc/pgsql/src/sgml/arch-pg.sgml - share/doc/pgsql/src/sgml/arch.sgml - share/doc/pgsql/src/sgml/array.sgml - share/doc/pgsql/src/sgml/biblio.sgml - share/doc/pgsql/src/sgml/bki.sgml - share/doc/pgsql/src/sgml/compiler.sgml - share/doc/pgsql/src/sgml/config.sgml - share/doc/pgsql/src/sgml/contacts.sgml - share/doc/pgsql/src/sgml/cvs.sgml - share/doc/pgsql/src/sgml/datatype.sgml - share/doc/pgsql/src/sgml/dfunc.sgml - share/doc/pgsql/src/sgml/docguide.sgml - share/doc/pgsql/src/sgml/ecpg.sgml - share/doc/pgsql/src/sgml/environ.sgml - share/doc/pgsql/src/sgml/extend.sgml - share/doc/pgsql/src/sgml/func-ref.sgml - share/doc/pgsql/src/sgml/func.sgml - share/doc/pgsql/src/sgml/geqo.sgml - share/doc/pgsql/src/sgml/gist.sgml - share/doc/pgsql/src/sgml/history.sgml - share/doc/pgsql/src/sgml/indices.sgml - share/doc/pgsql/src/sgml/info.sgml - share/doc/pgsql/src/sgml/inherit.sgml - share/doc/pgsql/src/sgml/install-win32.sgml - share/doc/pgsql/src/sgml/install.sgml - share/doc/pgsql/src/sgml/installation.sgml - share/doc/pgsql/src/sgml/intro-ag.sgml - share/doc/pgsql/src/sgml/intro-pg.sgml - share/doc/pgsql/src/sgml/intro.sgml - share/doc/pgsql/src/sgml/jdbc.sgml - share/doc/pgsql/src/sgml/keys.sgml - share/doc/pgsql/src/sgml/legal.sgml - share/doc/pgsql/src/sgml/libpgtcl.sgml - share/doc/pgsql/src/sgml/libpq++.sgml - share/doc/pgsql/src/sgml/libpq.sgml - share/doc/pgsql/src/sgml/lobj.sgml - share/doc/pgsql/src/sgml/manage.sgml - share/doc/pgsql/src/sgml/notation.sgml - share/doc/pgsql/src/sgml/odbc.sgml - share/doc/pgsql/src/sgml/oper.sgml - share/doc/pgsql/src/sgml/page.sgml - share/doc/pgsql/src/sgml/pg_options.sgml - share/doc/pgsql/src/sgml/trouble.sgml - share/doc/pgsql/src/sgml/ports.sgml - share/doc/pgsql/src/sgml/postgres.sgml - share/doc/pgsql/src/sgml/programmer.sgml - share/doc/pgsql/src/sgml/protocol.sgml - share/doc/pgsql/src/sgml/query.sgml - share/doc/pgsql/src/sgml/recovery.sgml - share/doc/pgsql/src/sgml/reference.ced share/doc/pgsql/src/sgml/reference.sgml share/doc/pgsql/src/sgml/regress.sgml share/doc/pgsql/src/sgml/release.sgml share/doc/pgsql/src/sgml/runtime.sgml share/doc/pgsql/src/sgml/security.sgml share/doc/pgsql/src/sgml/signals.sgml share/doc/pgsql/src/sgml/spi.sgml - share/doc/pgsql/src/sgml/sql.sgml share/doc/pgsql/src/sgml/start-ag.sgml share/doc/pgsql/src/sgml/start.sgml share/doc/pgsql/src/sgml/storage.sgml --- 292,305 ---- share/doc/pgsql/src/sgml/ref/unlisten.sgml share/doc/pgsql/src/sgml/ref/update.sgml share/doc/pgsql/src/sgml/ref/vacuum.sgml share/doc/pgsql/src/sgml/reference.sgml share/doc/pgsql/src/sgml/regress.sgml share/doc/pgsql/src/sgml/release.sgml + share/doc/pgsql/src/sgml/rules.sgml share/doc/pgsql/src/sgml/runtime.sgml share/doc/pgsql/src/sgml/security.sgml share/doc/pgsql/src/sgml/signals.sgml share/doc/pgsql/src/sgml/spi.sgml share/doc/pgsql/src/sgml/start-ag.sgml share/doc/pgsql/src/sgml/start.sgml share/doc/pgsql/src/sgml/storage.sgml *************** *** 292,332 **** share/doc/pgsql/src/sgml/xplang.sgml share/doc/pgsql/src/sgml/xtypes.sgml share/doc/pgsql/src/sgml/y2k.sgml - share/doc/pgsql/src/sgml/mvcc.sgml - share/doc/pgsql/src/sgml/datetime.sgml - share/doc/pgsql/src/sgml/layout.sgml - share/doc/pgsql/src/Makefile - share/doc/pgsql/user.ps.gz - share/doc/pgsql/tutorial.tar.gz share/doc/pgsql/tutorial.ps.gz ! share/doc/pgsql/programmer.tar.gz ! share/doc/pgsql/programmer.ps.gz ! share/doc/pgsql/postgres.tar.gz ! share/doc/pgsql/internals.ps ! share/doc/pgsql/bug.template ! share/doc/pgsql/admin.tar.gz ! share/doc/pgsql/admin.ps.gz ! share/doc/pgsql/TODO ! share/doc/pgsql/README.mb.jp ! share/doc/pgsql/README.mb ! share/doc/pgsql/README.locale ! share/doc/pgsql/README.inet ! share/doc/pgsql/README.fsync ! share/doc/pgsql/Makefile ! share/doc/pgsql/FAQ_SCO ! share/doc/pgsql/FAQ_Linux ! share/doc/pgsql/FAQ_Irix ! share/doc/pgsql/FAQ_HPUX ! share/doc/pgsql/FAQ ! share/doc/pgsql/FAQ_FreeBSD ! share/doc/pgsql/FAQ_DigitalUnix ! share/doc/pgsql/FAQ_DEV ! share/doc/pgsql/FAQ_AIX share/doc/pgsql/user.tar.gz @dirrm share/doc/pgsql/src/sgml/ref @dirrm share/doc/pgsql/src/sgml @dirrm share/doc/pgsql/src/graphics @dirrm share/doc/pgsql/src @dirrm share/doc/pgsql @dirrm pgsql/man/manl @dirrm pgsql/man/man5 --- 315,333 ---- share/doc/pgsql/src/sgml/xplang.sgml share/doc/pgsql/src/sgml/xtypes.sgml share/doc/pgsql/src/sgml/y2k.sgml share/doc/pgsql/tutorial.ps.gz ! share/doc/pgsql/tutorial.tar.gz ! share/doc/pgsql/user.ps.gz share/doc/pgsql/user.tar.gz + @dirrm share/doc/pgsql/src/sgml/ref/CVS @dirrm share/doc/pgsql/src/sgml/ref + @dirrm share/doc/pgsql/src/sgml/CVS @dirrm share/doc/pgsql/src/sgml + @dirrm share/doc/pgsql/src/graphics/CVS @dirrm share/doc/pgsql/src/graphics + @dirrm share/doc/pgsql/src/CVS @dirrm share/doc/pgsql/src + @dirrm share/doc/pgsql/CVS @dirrm share/doc/pgsql @dirrm pgsql/man/manl @dirrm pgsql/man/man5 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message