]> granicus.if.org Git - postgresql/commitdiff
Add copyright mentions, per Tom Lane.
authorBruce Momjian <bruce@momjian.us>
Sun, 18 Feb 2001 18:34:02 +0000 (18:34 +0000)
committerBruce Momjian <bruce@momjian.us>
Sun, 18 Feb 2001 18:34:02 +0000 (18:34 +0000)
24 files changed:
doc/FAQ_BSDI [deleted file]
src/bin/Makefile
src/bin/initdb/Makefile
src/bin/initdb/initdb.sh
src/bin/initlocation/Makefile
src/bin/initlocation/initlocation.sh
src/bin/ipcclean/Makefile
src/bin/pg_dump/Makefile
src/bin/pg_dump/pg_dump.c
src/bin/pgaccess/Makefile
src/bin/pgaccess/README
src/bin/pgaccess/copyright.html
src/bin/pgaccess/doc/html/copyright.html
src/bin/pgaccess/lib/help/copyrights.hlp
src/bin/pgtclsh/Makefile
src/bin/pgtclsh/pgtclAppInit.c
src/bin/psql/Makefile
src/bin/scripts/Makefile
src/bin/scripts/createlang.sh
src/bin/scripts/createuser
src/bin/scripts/dropdb
src/bin/scripts/droplang
src/bin/scripts/dropuser
src/bin/scripts/vacuumdb

diff --git a/doc/FAQ_BSDI b/doc/FAQ_BSDI
deleted file mode 100644 (file)
index 030beb6..0000000
+++ /dev/null
@@ -1,81 +0,0 @@
-This outlines modifications to BSD/OS for running PostgreSQL:
-
-1)  How to increase resource limits
-2)  How to increase the number of shared memory buffers
-3)  How to increasing the number of semaphores
-
-Bruce Momjian (pgman@candle.pha.pa.us)  2000-07-7
-
----------------------------------------------------------------------------
-
-1)  To increase the amount of malloc'ed memory and files opened by
-PostgreSQL, add this:
-
-          :datasize-cur=256M:\
-          :openfiles-cur=256:
-
-to your /etc/login.conf file.
-
----------------------------------------------------------------------------
-
-2a)  By default, only 4MB of shared memory is supported by BSDI. Keep in
-mind that shared memory is not pageable.  It is locked in RAM.
-
-The shared memory parameters are:
-
-#define SHMMAX         /* max shared memory segment size (bytes) */
-#define SHMMIN         /* min shared memory segment size (bytes) */
-#define SHMMNI         /* max number of shared memory identifiers */
-#define SHMSEG         /* max shared memory segments per process */
-#define SHMALL         /* max amount of shared memory (pages) */
-
-To increase the number of buffers supported by the postmaseter, add the
-following to your kernel config file.  A SHMALL value of 1024 
-represents 4MB of shared memory.  Increase it accordingly:
-
-options "SHMALL=4096"
-options "SHMMAX=\(SHMALL*PAGE_SIZE\)"
-
-For those running 4.1 or later, just recompile the kernel and reboot. 
-For those running earlier releases, see step 2b.
-
----------------------------------------------------------------------------
-
-2b)  For 4.01 and earlier, use bpatch to find the sysptsize value for
-the current kernel.  This is computed dynamically at bootup.
-
-       $ bpatch -r sysptsize
-       0x9 = 9
-
-Next, change SYSPTSIZE to a hard-coded value.  Use the bpatch value,
-plus add 1 for every additional 4MB of shared memory you desire.
-
-options "SYSPTSIZE=13"
-
-sysptsize can not be changed by sysctl on the fly.
-
----------------------------------------------------------------------------
-
-3)  How to increasing the number of semaphores.
-
-You may need to increase the number of sysv semaphores. By default,
-PostgreSQL allocates 32 semaphores, one for each backend connection. 
-This is just over half the default system total of 60.
-
-The defaults are in /sys/sys/sem.h:
-
-#define SEMMNI  10              /* # of semaphore identifiers */
-
-#define SEMMNS  60              /* # of semaphores in system */
-
-#define SEMUME  10              /* max # of undo entries per process */
-
-#define SEMMNU  30              /* # of undo structures in system */
-
-Set the values you want in your kernel config file, e.g.:
-
-options "SEMMNI=40"
-options "SEMMNS=240"
-options "SEMUME=40"
-options "SEMMNU=120"
-
index e88dff2ab6e704c2b69c17b014592897992c885a..a1d4b1e8fc0b66c2b7ede428d1b9a0e813097943 100644 (file)
@@ -2,9 +2,10 @@
 #
 # Makefile for src/bin (client programs)
 #
-# Copyright (c) 1994, Regents of the University of California
+# Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
+# Portions Copyright (c) 1994, Regents of the University of California
 #
-# $Header: /cvsroot/pgsql/src/bin/Makefile,v 1.33 2000/10/10 22:01:52 momjian Exp $
+# $Header: /cvsroot/pgsql/src/bin/Makefile,v 1.34 2001/02/18 18:33:59 momjian Exp $
 #
 #-------------------------------------------------------------------------
 
index 754d98434245b098ffa0b3dc53bdd1abd84f2628..8e1fc19c71fe4e4f252e892c053524487098e815 100644 (file)
@@ -2,9 +2,10 @@
 #
 # Makefile for src/bin/initdb
 #
-# Copyright (c) 1994, Regents of the University of California
+# Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
+# Portions Copyright (c) 1994, Regents of the University of California
 #
-# $Header: /cvsroot/pgsql/src/bin/initdb/Makefile,v 1.24 2000/09/17 13:02:31 petere Exp $
+# $Header: /cvsroot/pgsql/src/bin/initdb/Makefile,v 1.25 2001/02/18 18:33:59 momjian Exp $
 #
 #-------------------------------------------------------------------------
 
index b52e655f7f13059b200b9a50c7f5060beb8aeaec..c526b0b8feafc8daae4f70e8e66c21db07e6af63 100644 (file)
 # made just by copying the completed template1.
 #
 #
-# Copyright (c) 1994, Regents of the University of California
+# Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
+# Portions Copyright (c) 1994, Regents of the University of California
 #
-# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.120 2001/01/20 22:09:24 tgl Exp $
+# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.121 2001/02/18 18:33:59 momjian Exp $
 #
 #-------------------------------------------------------------------------
 
index 7c1f3e4930ef4e49cccf1ae0035d9a4e52ab2d4d..a7e65eed7f8034a2006314e54273077fbedf8cb1 100644 (file)
@@ -2,9 +2,10 @@
 #
 # Makefile for src/bin/initlocation
 #
-# Copyright (c) 1994, Regents of the University of California
+# Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
+# Portions Copyright (c) 1994, Regents of the University of California
 #
-# $Header: /cvsroot/pgsql/src/bin/initlocation/Attic/Makefile,v 1.12 2000/09/17 13:02:32 petere Exp $
+# $Header: /cvsroot/pgsql/src/bin/initlocation/Attic/Makefile,v 1.13 2001/02/18 18:33:59 momjian Exp $
 #
 #-------------------------------------------------------------------------
 
index 10c802c228d232a83adf8e676e6f4d15fce69285..5bd6468c1e1d42cfaa036e9f59bfba0d03dd08a7 100644 (file)
@@ -4,11 +4,12 @@
 # initlocation.sh--
 #     Create a secondary PostgreSQL database storage area.  
 # 
-# Copyright (c) 1994, Regents of the University of California
+# Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
+# Portions Copyright (c) 1994, Regents of the University of California
 #
 #
 # IDENTIFICATION
-#    $Header: /cvsroot/pgsql/src/bin/initlocation/Attic/initlocation.sh,v 1.10 2000/11/25 19:05:43 petere Exp $
+#    $Header: /cvsroot/pgsql/src/bin/initlocation/Attic/initlocation.sh,v 1.11 2001/02/18 18:33:59 momjian Exp $
 #
 #-------------------------------------------------------------------------
 
index 043f9cc8558c9466c4242106b25b9f709c76649a..de7bcfe0ed305c38e8ccd84d79fb78431917d604 100644 (file)
@@ -2,9 +2,10 @@
 #
 # Makefile for src/bin/ipcclean
 #
-# Copyright (c) 1994, Regents of the University of California
+# Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
+# Portions Copyright (c) 1994, Regents of the University of California
 #
-# $Header: /cvsroot/pgsql/src/bin/ipcclean/Attic/Makefile,v 1.14 2000/09/17 13:02:33 petere Exp $
+# $Header: /cvsroot/pgsql/src/bin/ipcclean/Attic/Makefile,v 1.15 2001/02/18 18:33:59 momjian Exp $
 #
 #-------------------------------------------------------------------------
 
index 38a2cf29469f46222bedd84dedf0aa227e85d63c..950617308748489961d4d5b242bde7d3f2b21834 100644 (file)
@@ -2,9 +2,10 @@
 #
 # Makefile for src/bin/pg_dump
 #
-# Copyright (c) 1994, Regents of the University of California
+# Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
+# Portions Copyright (c) 1994, Regents of the University of California
 #
-# $Header: /cvsroot/pgsql/src/bin/pg_dump/Makefile,v 1.27 2000/11/30 20:36:11 petere Exp $
+# $Header: /cvsroot/pgsql/src/bin/pg_dump/Makefile,v 1.28 2001/02/18 18:33:59 momjian Exp $
 #
 #-------------------------------------------------------------------------
 
index c0387983189aed9f5de276b2a28a333d3d2a0fb3..1cc3e0dd3c130cb418996b2ccfc9b6311975fc1e 100644 (file)
@@ -2,7 +2,10 @@
  *
  * pg_dump.c
  *       pg_dump is an utility for dumping out a postgres database
- * into a script file.
+ *    into a script file.
+ *
+ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1994, Regents of the University of California
  *
  *     pg_dump will read the system catalogs in a database and
  *     dump out a script that reproduces
  *
  * the output script is SQL that is understood by PostgreSQL
  *
- * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
- * Portions Copyright (c) 1994, Regents of the University of California
- *
  *
  * IDENTIFICATION
- *       $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.192 2001/02/13 01:31:54 pjw Exp $
+ *       $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.193 2001/02/18 18:33:59 momjian Exp $
  *
  * Modifications - 6/10/96 - dave@bensoft.com - version 1.13.dhb
  *
index 24fdae58025bc4db13bf692f622126b0ec516208..8a38bcc13a475f10193c4fd4d52f1db8350ba067 100644 (file)
@@ -2,9 +2,10 @@
 #
 # Makefile for src/bin/pgaccess
 #
-# Copyright (c) 1994, Regents of the University of California
+# Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
+# Portions Copyright (c) 1994, Regents of the University of California
 #
-# $Header: /cvsroot/pgsql/src/bin/pgaccess/Attic/Makefile,v 1.15 2001/02/07 20:30:20 tgl Exp $
+# $Header: /cvsroot/pgsql/src/bin/pgaccess/Attic/Makefile,v 1.16 2001/02/18 18:34:01 momjian Exp $
 #
 #-------------------------------------------------------------------------
 
index 818116ff44a053d6cb917bce3411e1ed596f217d..aa7e2744b4a64d500d3b92a811b38522816c86f0 100644 (file)
@@ -1,6 +1,7 @@
 ---------------------------------------------------------------------------
 
-Copyright (c) 1994-7 Regents of the University of California
+Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
+Portions Copyright (c) 1994, Regents of the University of California
 
 Permission to use, copy, modify, and distribute this software and its
 documentation for any purpose, without fee, and without a written agreement
index d67654b88e7ee4391fcbdae141f6fba9c787d8cb..6af94bd5b0d39f387ccecfe8ab65f5a4d74cc122 100644 (file)
@@ -9,7 +9,8 @@
 <BR><TT></TT>&nbsp;
 <BR><TT></TT>&nbsp;<TT></TT>
 
-<P><TT>Copyright (c) 1994-7 Regents of the University of California</TT><TT></TT>
+<P><TT>Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group</TT>
+<P><TT>Portions Copyright (c) 1994, Regents of the University of California</TT>
 
 <P><TT>Permission to use, copy, modify, and distribute this software and
 its</TT>
@@ -17,7 +18,7 @@ its</TT>
 agreement</TT>
 <BR><TT>is hereby granted, provided that the above copyright notice and
 this</TT>
-<BR><TT>paragraph and the following two paragraphs appear in all copies.</TT><TT></TT>
+<BR><TT>paragraph and the following two paragraphs appear in all copies.</TT>
 
 <P><TT>IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY
 PARTY FOR</TT>
@@ -26,7 +27,7 @@ INCLUDING</TT>
 <BR><TT>LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS</TT>
 <BR><TT>DOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED
 OF THE</TT>
-<BR><TT>POSSIBILITY OF SUCH DAMAGE.</TT><TT></TT>
+<BR><TT>POSSIBILITY OF SUCH DAMAGE.</TT>
 
 <P><TT>THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,</TT>
 <BR><TT>INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY</TT>
index d67654b88e7ee4391fcbdae141f6fba9c787d8cb..b624786e1a2bc7d5162495ce80d8711ecf8fa32b 100644 (file)
@@ -9,7 +9,8 @@
 <BR><TT></TT>&nbsp;
 <BR><TT></TT>&nbsp;<TT></TT>
 
-<P><TT>Copyright (c) 1994-7 Regents of the University of California</TT><TT></TT>
+<P><TT>Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group</TT>
+<P><TT>Portions Copyright (c) 1994, Regents of the University of California</TT>
 
 <P><TT>Permission to use, copy, modify, and distribute this software and
 its</TT>
index d81fd160a8b2f3b929ff90920f73164bba946a75..ffa49c7b2c20f3a5fe30051a72b672ddd7bfb6f7 100644 (file)
@@ -1,9 +1,11 @@
 .pgaw:Help.f.t insert end \
 "Copyrights\n\n" {title} \
 "
-PostgreSQL is Copyright © 1996-9 by the PostgreSQL Global Development Group, and is distributed under the terms of the Berkeley license. 
+PostgreSQL is Copyright © 1996-2001,  PostgreSQL Global Development Group.
 
-Postgres95 is Copyright © 1994-5 by the Regents of the University of California. Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee, and without a written agreement is hereby granted, provided that the above copyright notice and this paragraph and the following two paragraphs appear in all copies. 
+Postgres95 is Copyright © 1994, Regents of the University of California.
+
+Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee, and without a written agreement is hereby granted, provided that the above copyright notice and this paragraph and the following two paragraphs appear in all copies. 
 
 In no event shall the University of California be liable to any party for direct, indirect, special, incidental, or consequential damages, including lost profits, arising out of the use of this software and its documentation, even if the University of California has been advised of the possibility of such damage. 
 
index 7891eab4f23d95b29fd1105b021691e97d662489..6ac3ebefffcd8bd24365643db7477e9255288528 100644 (file)
@@ -3,9 +3,10 @@
 # Makefile for src/bin/pgtclsh
 # (a tclsh workalike with pgtcl commands installed)
 #
-# Copyright (c) 1994, Regents of the University of California
+# Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
+# Portions Copyright (c) 1994, Regents of the University of California
 #
-# $Header: /cvsroot/pgsql/src/bin/pgtclsh/Attic/Makefile,v 1.35 2000/11/30 20:36:12 petere Exp $
+# $Header: /cvsroot/pgsql/src/bin/pgtclsh/Attic/Makefile,v 1.36 2001/02/18 18:34:01 momjian Exp $
 #
 #-------------------------------------------------------------------------
 
index 8967a4a5c21583456bcdab433a9e3ff898fcd522..487e11eaf5e2ee35801687b012f9891688495253 100644 (file)
@@ -1,6 +1,5 @@
 /*
  * pgtclAppInit.c
- *
  *             a skeletal Tcl_AppInit that provides pgtcl initialization
  *       to create a tclsh that can talk to pglite backends
  *
index 3b54c44da8e35321dd90ae7a8b4a0c90a1ddbe57..82333e5001adc89ccd1661d17114bb4c22ff3acd 100644 (file)
@@ -2,9 +2,10 @@
 #
 # Makefile for src/bin/psql
 #
-# Copyright (c) 1994, Regents of the University of California
+# Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
+# Portions Copyright (c) 1994, Regents of the University of California
 #
-# $Header: /cvsroot/pgsql/src/bin/psql/Makefile,v 1.27 2000/11/30 20:36:12 petere Exp $
+# $Header: /cvsroot/pgsql/src/bin/psql/Makefile,v 1.28 2001/02/18 18:34:01 momjian Exp $
 #
 #-------------------------------------------------------------------------
 
index a891c1bcda622aa6ff5e8b35753438b628b96778..3fdbdd93b1f8164d9d7475aecdc4868781f10ae8 100644 (file)
@@ -2,9 +2,10 @@
 #
 # Makefile for src/bin/scripts
 #
-# Copyright (c) 1994, Regents of the University of California
+# Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
+# Portions Copyright (c) 1994, Regents of the University of California
 #
-# $Header: /cvsroot/pgsql/src/bin/scripts/Makefile,v 1.11 2000/10/20 21:04:03 petere Exp $
+# $Header: /cvsroot/pgsql/src/bin/scripts/Makefile,v 1.12 2001/02/18 18:34:01 momjian Exp $
 #
 #-------------------------------------------------------------------------
 
index 20ec9cd4b3f6a701a19d9cacf8b7b51d5cb23a87..c9b4178fda77450b697f2f62debf096840fb4629 100644 (file)
@@ -4,11 +4,12 @@
 # createlang.sh--
 #    Install a procedural language in a database
 #
-# Copyright (c) 1994, Regents of the University of California
+# Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
+# Portions Copyright (c) 1994, Regents of the University of California
 #
 #
 # IDENTIFICATION
-#    $Header: /cvsroot/pgsql/src/bin/scripts/Attic/createlang.sh,v 1.22 2001/01/21 05:16:45 momjian Exp $
+#    $Header: /cvsroot/pgsql/src/bin/scripts/Attic/createlang.sh,v 1.23 2001/02/18 18:34:01 momjian Exp $
 #
 #-------------------------------------------------------------------------
 
index 8705c53340f178308989b889546e36752795ef3c..359e18df2aeae627fc1e55a835983c098c50468d 100644 (file)
@@ -4,11 +4,12 @@
 # createuser--
 #    Utility for creating a user in the PostgreSQL database
 #
-# Copyright (c) 1994, Regents of the University of California
+# Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
+# Portions Copyright (c) 1994, Regents of the University of California
 #
 #
 # IDENTIFICATION
-#    $Header: /cvsroot/pgsql/src/bin/scripts/Attic/createuser,v 1.16 2001/01/21 05:16:45 momjian Exp $
+#    $Header: /cvsroot/pgsql/src/bin/scripts/Attic/createuser,v 1.17 2001/02/18 18:34:01 momjian Exp $
 #
 # Note - this should NOT be setuid.
 #
index a3db4babe32d2f989715a7109f95545ce4228d01..60e1647abda748e195be6946dd16b04a8715e94e 100644 (file)
@@ -6,11 +6,12 @@
 #
 #    this program runs psql to drop the requested database.
 #
-# Copyright (c) 1994, Regents of the University of California
+# Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
+# Portions Copyright (c) 1994, Regents of the University of California
 #
 #
 # IDENTIFICATION
-#    $Header: /cvsroot/pgsql/src/bin/scripts/Attic/dropdb,v 1.10 2000/11/25 19:05:44 petere Exp $
+#    $Header: /cvsroot/pgsql/src/bin/scripts/Attic/dropdb,v 1.11 2001/02/18 18:34:01 momjian Exp $
 #
 #-------------------------------------------------------------------------
 
index ea4a00f9f6b3d405e92ec29e3dbef55e0f072b28..e06051d5d0ad1d71259d9374fec64b8269997250 100644 (file)
@@ -4,11 +4,12 @@
 # createlang--
 #    Remove a procedural language from a database
 #
-# Copyright (c) 1994, Regents of the University of California
+# Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
+# Portions Copyright (c) 1994, Regents of the University of California
 #
 #
 # IDENTIFICATION
-#    $Header: /cvsroot/pgsql/src/bin/scripts/Attic/droplang,v 1.12 2001/01/21 05:16:45 momjian Exp $
+#    $Header: /cvsroot/pgsql/src/bin/scripts/Attic/droplang,v 1.13 2001/02/18 18:34:01 momjian Exp $
 #
 #-------------------------------------------------------------------------
 
index fc7f66af433ca5d284c7ef5b35cf38cf992b02c8..814c7221b923aef5e91189fcc13a362f7eeb0fa8 100644 (file)
@@ -4,11 +4,12 @@
 # dropuser--
 #    Utility for removing a user from the PostgreSQL database.
 #
-# Copyright (c) 1994, Regents of the University of California
+# Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
+# Portions Copyright (c) 1994, Regents of the University of California
 #
 #
 # IDENTIFICATION
-#    $Header: /cvsroot/pgsql/src/bin/scripts/Attic/dropuser,v 1.11 2001/01/21 05:16:45 momjian Exp $
+#    $Header: /cvsroot/pgsql/src/bin/scripts/Attic/dropuser,v 1.12 2001/02/18 18:34:02 momjian Exp $
 #
 # Note - this should NOT be setuid.
 #
index 78d310edd87c6bb808f98c12481cf43acc2f8217..214c995ee25e73339d7fa76d512c3ba35591a6d1 100644 (file)
@@ -7,11 +7,12 @@
 #    This script runs psql with the "-c" option to vacuum
 #    the requested database.
 #
-# Copyright (c) 1994, Regents of the University of California
+# Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
+# Portions Copyright (c) 1994, Regents of the University of California
 #
 #
 # IDENTIFICATION
-#    $Header: /cvsroot/pgsql/src/bin/scripts/Attic/vacuumdb,v 1.15 2001/01/08 23:02:36 tgl Exp $
+#    $Header: /cvsroot/pgsql/src/bin/scripts/Attic/vacuumdb,v 1.16 2001/02/18 18:34:02 momjian Exp $
 #
 #-------------------------------------------------------------------------