summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian2001-02-18 18:34:02 +0000
committerBruce Momjian2001-02-18 18:34:02 +0000
commit9b127a4ef969459a2265c595fa5fb42ff8d79049 (patch)
tree8c88bfb1284bb654c65010c18a9af532d31791f7
parent13d539de57e4e71de733b23522e3278d39421688 (diff)
Add copyright mentions, per Tom Lane.
-rw-r--r--doc/FAQ_BSDI81
-rw-r--r--src/bin/Makefile3
-rw-r--r--src/bin/initdb/Makefile3
-rw-r--r--src/bin/initdb/initdb.sh3
-rw-r--r--src/bin/initlocation/Makefile3
-rw-r--r--src/bin/initlocation/initlocation.sh3
-rw-r--r--src/bin/ipcclean/Makefile3
-rw-r--r--src/bin/pg_dump/Makefile3
-rw-r--r--src/bin/pg_dump/pg_dump.c8
-rw-r--r--src/bin/pgaccess/Makefile3
-rw-r--r--src/bin/pgaccess/README3
-rw-r--r--src/bin/pgaccess/copyright.html7
-rw-r--r--src/bin/pgaccess/doc/html/copyright.html3
-rw-r--r--src/bin/pgaccess/lib/help/copyrights.hlp6
-rw-r--r--src/bin/pgtclsh/Makefile3
-rw-r--r--src/bin/pgtclsh/pgtclAppInit.c1
-rw-r--r--src/bin/psql/Makefile3
-rw-r--r--src/bin/scripts/Makefile3
-rw-r--r--src/bin/scripts/createlang.sh3
-rw-r--r--src/bin/scripts/createuser3
-rw-r--r--src/bin/scripts/dropdb3
-rw-r--r--src/bin/scripts/droplang3
-rw-r--r--src/bin/scripts/dropuser3
-rw-r--r--src/bin/scripts/vacuumdb3
24 files changed, 50 insertions, 110 deletions
diff --git a/doc/FAQ_BSDI b/doc/FAQ_BSDI
deleted file mode 100644
index 030beb6fe8..0000000000
--- a/doc/FAQ_BSDI
+++ /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 ([email protected]) 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"
-
diff --git a/src/bin/Makefile b/src/bin/Makefile
index fcd980b771..15e464ac96 100644
--- a/src/bin/Makefile
+++ b/src/bin/Makefile
@@ -2,7 +2,8 @@
#
# 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$
#
diff --git a/src/bin/initdb/Makefile b/src/bin/initdb/Makefile
index 61cb3850ab..6772cba091 100644
--- a/src/bin/initdb/Makefile
+++ b/src/bin/initdb/Makefile
@@ -2,7 +2,8 @@
#
# 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$
#
diff --git a/src/bin/initdb/initdb.sh b/src/bin/initdb/initdb.sh
index 72d9bbc560..4c4efb08da 100644
--- a/src/bin/initdb/initdb.sh
+++ b/src/bin/initdb/initdb.sh
@@ -20,7 +20,8 @@
# 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$
#
diff --git a/src/bin/initlocation/Makefile b/src/bin/initlocation/Makefile
index c41ac6becc..95e6645776 100644
--- a/src/bin/initlocation/Makefile
+++ b/src/bin/initlocation/Makefile
@@ -2,7 +2,8 @@
#
# 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$
#
diff --git a/src/bin/initlocation/initlocation.sh b/src/bin/initlocation/initlocation.sh
index 5fdfb7edae..81b3a90742 100644
--- a/src/bin/initlocation/initlocation.sh
+++ b/src/bin/initlocation/initlocation.sh
@@ -4,7 +4,8 @@
# 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
diff --git a/src/bin/ipcclean/Makefile b/src/bin/ipcclean/Makefile
index 57a652a3c2..69dd6f03ca 100644
--- a/src/bin/ipcclean/Makefile
+++ b/src/bin/ipcclean/Makefile
@@ -2,7 +2,8 @@
#
# 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$
#
diff --git a/src/bin/pg_dump/Makefile b/src/bin/pg_dump/Makefile
index 1a348d39a8..fdb3b8aeac 100644
--- a/src/bin/pg_dump/Makefile
+++ b/src/bin/pg_dump/Makefile
@@ -2,7 +2,8 @@
#
# 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$
#
diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c
index 4808c2906a..5d45cbe845 100644
--- a/src/bin/pg_dump/pg_dump.c
+++ b/src/bin/pg_dump/pg_dump.c
@@ -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
@@ -17,9 +20,6 @@
*
* 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$
diff --git a/src/bin/pgaccess/Makefile b/src/bin/pgaccess/Makefile
index c1c4e5de76..6648ec1cc2 100644
--- a/src/bin/pgaccess/Makefile
+++ b/src/bin/pgaccess/Makefile
@@ -2,7 +2,8 @@
#
# 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$
#
diff --git a/src/bin/pgaccess/README b/src/bin/pgaccess/README
index 818116ff44..aa7e2744b4 100644
--- a/src/bin/pgaccess/README
+++ b/src/bin/pgaccess/README
@@ -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
diff --git a/src/bin/pgaccess/copyright.html b/src/bin/pgaccess/copyright.html
index d67654b88e..6af94bd5b0 100644
--- a/src/bin/pgaccess/copyright.html
+++ b/src/bin/pgaccess/copyright.html
@@ -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>
diff --git a/src/bin/pgaccess/doc/html/copyright.html b/src/bin/pgaccess/doc/html/copyright.html
index d67654b88e..b624786e1a 100644
--- a/src/bin/pgaccess/doc/html/copyright.html
+++ b/src/bin/pgaccess/doc/html/copyright.html
@@ -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>
diff --git a/src/bin/pgaccess/lib/help/copyrights.hlp b/src/bin/pgaccess/lib/help/copyrights.hlp
index d81fd160a8..ffa49c7b2c 100644
--- a/src/bin/pgaccess/lib/help/copyrights.hlp
+++ b/src/bin/pgaccess/lib/help/copyrights.hlp
@@ -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.
diff --git a/src/bin/pgtclsh/Makefile b/src/bin/pgtclsh/Makefile
index 9776b750c6..cdc7f91392 100644
--- a/src/bin/pgtclsh/Makefile
+++ b/src/bin/pgtclsh/Makefile
@@ -3,7 +3,8 @@
# 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$
#
diff --git a/src/bin/pgtclsh/pgtclAppInit.c b/src/bin/pgtclsh/pgtclAppInit.c
index 8967a4a5c2..487e11eaf5 100644
--- a/src/bin/pgtclsh/pgtclAppInit.c
+++ b/src/bin/pgtclsh/pgtclAppInit.c
@@ -1,6 +1,5 @@
/*
* pgtclAppInit.c
- *
* a skeletal Tcl_AppInit that provides pgtcl initialization
* to create a tclsh that can talk to pglite backends
*
diff --git a/src/bin/psql/Makefile b/src/bin/psql/Makefile
index 9acb30423c..f434c70af8 100644
--- a/src/bin/psql/Makefile
+++ b/src/bin/psql/Makefile
@@ -2,7 +2,8 @@
#
# 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$
#
diff --git a/src/bin/scripts/Makefile b/src/bin/scripts/Makefile
index 8c50ed8ca5..e826c386ec 100644
--- a/src/bin/scripts/Makefile
+++ b/src/bin/scripts/Makefile
@@ -2,7 +2,8 @@
#
# 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$
#
diff --git a/src/bin/scripts/createlang.sh b/src/bin/scripts/createlang.sh
index 113bb09247..7e9249c223 100644
--- a/src/bin/scripts/createlang.sh
+++ b/src/bin/scripts/createlang.sh
@@ -4,7 +4,8 @@
# 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
diff --git a/src/bin/scripts/createuser b/src/bin/scripts/createuser
index e3b9d4384f..bcacb59523 100644
--- a/src/bin/scripts/createuser
+++ b/src/bin/scripts/createuser
@@ -4,7 +4,8 @@
# 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
diff --git a/src/bin/scripts/dropdb b/src/bin/scripts/dropdb
index b9179b1d84..5f24e9a74e 100644
--- a/src/bin/scripts/dropdb
+++ b/src/bin/scripts/dropdb
@@ -6,7 +6,8 @@
#
# 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
diff --git a/src/bin/scripts/droplang b/src/bin/scripts/droplang
index e986f0af5e..c6196b8ae0 100644
--- a/src/bin/scripts/droplang
+++ b/src/bin/scripts/droplang
@@ -4,7 +4,8 @@
# 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
diff --git a/src/bin/scripts/dropuser b/src/bin/scripts/dropuser
index 96d3565def..ef392888ee 100644
--- a/src/bin/scripts/dropuser
+++ b/src/bin/scripts/dropuser
@@ -4,7 +4,8 @@
# 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
diff --git a/src/bin/scripts/vacuumdb b/src/bin/scripts/vacuumdb
index 46ab61d404..f6de59b381 100644
--- a/src/bin/scripts/vacuumdb
+++ b/src/bin/scripts/vacuumdb
@@ -7,7 +7,8 @@
# 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