Skip to content

Commit f2f5b05

Browse files
committed
Update copyright for 2006. Update scripts.
1 parent e096406 commit f2f5b05

File tree

855 files changed

+1680
-1680
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

855 files changed

+1680
-1680
lines changed

COPYRIGHT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PostgreSQL Database Management System
22
(formerly known as Postgres, then as Postgres95)
33

4-
Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
4+
Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
55

66
Portions Copyright (c) 1994, The Regents of the University of California
77

configure

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# This configure script is free software; the Free Software Foundation
99
# gives unlimited permission to copy, distribute and modify it.
1010
#
11-
# Copyright (c) 1996-2005, PostgreSQL Global Development Group
11+
# Copyright (c) 1996-2006, PostgreSQL Global Development Group
1212
## --------------------- ##
1313
## M4sh Initialization. ##
1414
## --------------------- ##
@@ -1013,7 +1013,7 @@ Copyright (C) 2003 Free Software Foundation, Inc.
10131013
This configure script is free software; the Free Software Foundation
10141014
gives unlimited permission to copy, distribute and modify it.
10151015

1016-
Copyright (c) 1996-2005, PostgreSQL Global Development Group
1016+
Copyright (c) 1996-2006, PostgreSQL Global Development Group
10171017
_ACEOF
10181018
exit 0
10191019
fi

configure.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
dnl Process this file with autoconf to produce a configure script.
2-
dnl $PostgreSQL: pgsql/configure.in,v 1.453 2006/02/28 22:34:24 momjian Exp $
2+
dnl $PostgreSQL: pgsql/configure.in,v 1.454 2006/03/05 15:58:18 momjian Exp $
33
dnl
44
dnl Developers, please strive to achieve this order:
55
dnl
@@ -20,7 +20,7 @@ m4_pattern_forbid(^PGAC_)dnl to catch undefined macros
2020
AC_INIT([PostgreSQL], [8.2devel], [pgsql-bugs@postgresql.org])
2121

2222
AC_PREREQ(2.59)
23-
AC_COPYRIGHT([Copyright (c) 1996-2005, PostgreSQL Global Development Group])
23+
AC_COPYRIGHT([Copyright (c) 1996-2006, PostgreSQL Global Development Group])
2424
AC_CONFIG_SRCDIR([src/backend/access/common/heaptuple.c])
2525
AC_CONFIG_AUX_DIR(config)
2626
AC_PREFIX_DEFAULT(/usr/local/pgsql)

contrib/fuzzystrmatch/README.fuzzystrmatch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*
66
* Joe Conway <mail@joeconway.com>
77
*
8-
* Copyright (c) 2001-2005, PostgreSQL Global Development Group
8+
* Copyright (c) 2001-2006, PostgreSQL Global Development Group
99
* ALL RIGHTS RESERVED;
1010
*
1111
* levenshtein()

contrib/fuzzystrmatch/fuzzystrmatch.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*
66
* Joe Conway <mail@joeconway.com>
77
*
8-
* Copyright (c) 2001-2005, PostgreSQL Global Development Group
8+
* Copyright (c) 2001-2006, PostgreSQL Global Development Group
99
* ALL RIGHTS RESERVED;
1010
*
1111
* levenshtein()

contrib/fuzzystrmatch/fuzzystrmatch.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*
66
* Joe Conway <mail@joeconway.com>
77
*
8-
* Copyright (c) 2001-2005, PostgreSQL Global Development Group
8+
* Copyright (c) 2001-2006, PostgreSQL Global Development Group
99
* ALL RIGHTS RESERVED;
1010
*
1111
* levenshtein()

contrib/tablefunc/README.tablefunc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* And contributors:
88
* Nabil Sayegh <postgresql@e-trolley.de>
99
*
10-
* Copyright (c) 2002-2005, PostgreSQL Global Development Group
10+
* Copyright (c) 2002-2006, PostgreSQL Global Development Group
1111
*
1212
* Permission to use, copy, modify, and distribute this software and its
1313
* documentation for any purpose, without fee, and without a written agreement

contrib/tablefunc/tablefunc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* And contributors:
88
* Nabil Sayegh <postgresql@e-trolley.de>
99
*
10-
* Copyright (c) 2002-2005, PostgreSQL Global Development Group
10+
* Copyright (c) 2002-2006, PostgreSQL Global Development Group
1111
*
1212
* Permission to use, copy, modify, and distribute this software and its
1313
* documentation for any purpose, without fee, and without a written agreement

contrib/tablefunc/tablefunc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* And contributors:
88
* Nabil Sayegh <postgresql@e-trolley.de>
99
*
10-
* Copyright (c) 2002-2005, PostgreSQL Global Development Group
10+
* Copyright (c) 2002-2006, PostgreSQL Global Development Group
1111
*
1212
* Permission to use, copy, modify, and distribute this software and its
1313
* documentation for any purpose, without fee, and without a written agreement

contrib/vacuumlo/vacuumlo.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
* vacuumlo.c
44
* This removes orphaned large objects from a database.
55
*
6-
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
6+
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
77
* Portions Copyright (c) 1994, Regents of the University of California
88
*
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/contrib/vacuumlo/vacuumlo.c,v 1.31 2006/02/23 22:33:59 tgl Exp $
11+
* $PostgreSQL: pgsql/contrib/vacuumlo/vacuumlo.c,v 1.32 2006/03/05 15:58:19 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/

0 commit comments

Comments
 (0)