File tree Expand file tree Collapse file tree 24 files changed +68
-128
lines changed Expand file tree Collapse file tree 24 files changed +68
-128
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2
2
#
3
3
# Makefile for src/bin (client programs)
4
4
#
5
- # Copyright (c) 1994, Regents of the University of California
5
+ # Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
6
+ # Portions Copyright (c) 1994, Regents of the University of California
6
7
#
7
- # $Header: /cvsroot/pgsql/src/bin/Makefile,v 1.33 2000/10/10 22:01:52 momjian Exp $
8
+ # $Header: /cvsroot/pgsql/src/bin/Makefile,v 1.34 2001/02/18 18:33:59 momjian Exp $
8
9
#
9
10
# -------------------------------------------------------------------------
10
11
Original file line number Diff line number Diff line change 2
2
#
3
3
# Makefile for src/bin/initdb
4
4
#
5
- # Copyright (c) 1994, Regents of the University of California
5
+ # Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
6
+ # Portions Copyright (c) 1994, Regents of the University of California
6
7
#
7
- # $Header: /cvsroot/pgsql/src/bin/initdb/Makefile,v 1.24 2000/09/17 13:02:31 petere Exp $
8
+ # $Header: /cvsroot/pgsql/src/bin/initdb/Makefile,v 1.25 2001/02/18 18:33:59 momjian Exp $
8
9
#
9
10
# -------------------------------------------------------------------------
10
11
Original file line number Diff line number Diff line change 20
20
# made just by copying the completed template1.
21
21
#
22
22
#
23
- # Copyright (c) 1994, Regents of the University of California
23
+ # Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
24
+ # Portions Copyright (c) 1994, Regents of the University of California
24
25
#
25
- # $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.120 2001/01/20 22:09:24 tgl Exp $
26
+ # $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.121 2001/02/18 18:33:59 momjian Exp $
26
27
#
27
28
# -------------------------------------------------------------------------
28
29
Original file line number Diff line number Diff line change 2
2
#
3
3
# Makefile for src/bin/initlocation
4
4
#
5
- # Copyright (c) 1994, Regents of the University of California
5
+ # Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
6
+ # Portions Copyright (c) 1994, Regents of the University of California
6
7
#
7
- # $Header: /cvsroot/pgsql/src/bin/initlocation/Attic/Makefile,v 1.12 2000/09/17 13:02:32 petere Exp $
8
+ # $Header: /cvsroot/pgsql/src/bin/initlocation/Attic/Makefile,v 1.13 2001/02/18 18:33:59 momjian Exp $
8
9
#
9
10
# -------------------------------------------------------------------------
10
11
Original file line number Diff line number Diff line change 4
4
# initlocation.sh--
5
5
# Create a secondary PostgreSQL database storage area.
6
6
#
7
- # Copyright (c) 1994, Regents of the University of California
7
+ # Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
8
+ # Portions Copyright (c) 1994, Regents of the University of California
8
9
#
9
10
#
10
11
# IDENTIFICATION
11
- # $Header: /cvsroot/pgsql/src/bin/initlocation/Attic/initlocation.sh,v 1.10 2000/11/25 19:05:43 petere Exp $
12
+ # $Header: /cvsroot/pgsql/src/bin/initlocation/Attic/initlocation.sh,v 1.11 2001/02/18 18:33:59 momjian Exp $
12
13
#
13
14
# -------------------------------------------------------------------------
14
15
Original file line number Diff line number Diff line change 2
2
#
3
3
# Makefile for src/bin/ipcclean
4
4
#
5
- # Copyright (c) 1994, Regents of the University of California
5
+ # Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
6
+ # Portions Copyright (c) 1994, Regents of the University of California
6
7
#
7
- # $Header: /cvsroot/pgsql/src/bin/ipcclean/Attic/Makefile,v 1.14 2000/09/17 13:02:33 petere Exp $
8
+ # $Header: /cvsroot/pgsql/src/bin/ipcclean/Attic/Makefile,v 1.15 2001/02/18 18:33:59 momjian Exp $
8
9
#
9
10
# -------------------------------------------------------------------------
10
11
Original file line number Diff line number Diff line change 2
2
#
3
3
# Makefile for src/bin/pg_dump
4
4
#
5
- # Copyright (c) 1994, Regents of the University of California
5
+ # Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
6
+ # Portions Copyright (c) 1994, Regents of the University of California
6
7
#
7
- # $Header: /cvsroot/pgsql/src/bin/pg_dump/Makefile,v 1.27 2000/11/30 20:36:11 petere Exp $
8
+ # $Header: /cvsroot/pgsql/src/bin/pg_dump/Makefile,v 1.28 2001/02/18 18:33:59 momjian Exp $
8
9
#
9
10
# -------------------------------------------------------------------------
10
11
Original file line number Diff line number Diff line change 2
2
*
3
3
* pg_dump.c
4
4
* pg_dump is an utility for dumping out a postgres database
5
- * into a script file.
5
+ * into a script file.
6
+ *
7
+ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
8
+ * Portions Copyright (c) 1994, Regents of the University of California
6
9
*
7
10
* pg_dump will read the system catalogs in a database and
8
11
* dump out a script that reproduces
17
20
*
18
21
* the output script is SQL that is understood by PostgreSQL
19
22
*
20
- * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
21
- * Portions Copyright (c) 1994, Regents of the University of California
22
- *
23
23
*
24
24
* IDENTIFICATION
25
- * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.192 2001/02/13 01:31:54 pjw Exp $
25
+ * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.193 2001/02/18 18:33:59 momjian Exp $
26
26
*
27
27
* Modifications - 6/10/96 - dave@bensoft.com - version 1.13.dhb
28
28
*
Original file line number Diff line number Diff line change 2
2
#
3
3
# Makefile for src/bin/pgaccess
4
4
#
5
- # Copyright (c) 1994, Regents of the University of California
5
+ # Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
6
+ # Portions Copyright (c) 1994, Regents of the University of California
6
7
#
7
- # $Header: /cvsroot/pgsql/src/bin/pgaccess/Attic/Makefile,v 1.15 2001/02/07 20:30:20 tgl Exp $
8
+ # $Header: /cvsroot/pgsql/src/bin/pgaccess/Attic/Makefile,v 1.16 2001/02/18 18:34:01 momjian Exp $
8
9
#
9
10
# -------------------------------------------------------------------------
10
11
You can’t perform that action at this time.
0 commit comments