diff --git a/config/install-sh b/config/install-sh
index 1a8353401c4223bf93e7d7dd76164de5400be672..9ad17050e6c65d9b24687d5416fc76a92ca68ffd 100755
--- a/config/install-sh
+++ b/config/install-sh
@@ -1,6 +1,8 @@
 #!/bin/sh
 # install - install a program, script, or datafile
 
+# $PostgreSQL: pgsql/config/install-sh,v 1.4 2006/03/11 04:38:28 momjian Exp $
+
 scriptversion=2005-02-02.21
 
 # This originates from X11R5 (mit/util/scripts/install.sh), which was
diff --git a/config/missing b/config/missing
index 29865631d58e25aa6fe8a5d3f6d98822f29d2a50..2d47501bb537df4c024bd537ac13fea502dafebe 100755
--- a/config/missing
+++ b/config/missing
@@ -1,5 +1,7 @@
 #! /bin/sh
 
+# $PostgreSQL: pgsql/config/missing,v 1.4 2006/03/11 04:38:28 momjian Exp $
+
 # This is *not* the GNU `missing' script, although it is similar in
 # concept. You can call it from the makefiles to get consistent
 # behavior when certain utility programs are missing.
diff --git a/config/mkinstalldirs b/config/mkinstalldirs
index 5d26a485f11223c19546f3e02ce59d201a5afe48..070b418022b7b4d5323b008964845cf3de1ba502 100755
--- a/config/mkinstalldirs
+++ b/config/mkinstalldirs
@@ -1,6 +1,8 @@
 #! /bin/sh
 # mkinstalldirs --- make directory hierarchy
 
+# $PostgreSQL: pgsql/config/mkinstalldirs,v 1.5 2006/03/11 04:38:28 momjian Exp $
+
 scriptversion=2005-02-02.21
 
 # Original author: Noah Friedman <friedman@prep.ai.mit.edu>
diff --git a/contrib/cube/cube.c b/contrib/cube/cube.c
index 0bc88ef6f1433268910897785721bf7b7c63987f..c6df246d259e4e0e77001f96ef57ee67867bbdc1 100644
--- a/contrib/cube/cube.c
+++ b/contrib/cube/cube.c
@@ -1,4 +1,6 @@
 /******************************************************************************
+  $PostgreSQL: pgsql/contrib/cube/cube.c,v 1.24 2006/03/11 04:38:28 momjian Exp $
+
   This file contains routines that can be bound to a Postgres backend and
   called by the backend in the process of processing queries.  The calling
   format for these routines is dictated by Postgres architecture.
diff --git a/contrib/cube/cubedata.h b/contrib/cube/cubedata.h
index 8eaea960f7bcfd662fc12395943ee3abe0690df1..f4f2238aac74fa2b9ceaefc4212378d05f0ad500 100644
--- a/contrib/cube/cubedata.h
+++ b/contrib/cube/cubedata.h
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/cube/cubedata.h,v 1.7 2006/03/11 04:38:28 momjian Exp $ */
+
 #define CUBE_MAX_DIM (100)
 typedef struct NDBOX
 {
diff --git a/contrib/cube/cubeparse.y b/contrib/cube/cubeparse.y
index 9756b508aa5c6b32b690fa155a360999df32073f..1211f131eed6c09bc9e6d7a8d565bd9765c5e81d 100644
--- a/contrib/cube/cubeparse.y
+++ b/contrib/cube/cubeparse.y
@@ -2,6 +2,8 @@
 /* NdBox = [(lowerleft),(upperright)] */
 /* [(xLL(1)...xLL(N)),(xUR(1)...xUR(n))] */
 
+/* $PostgreSQL: pgsql/contrib/cube/cubeparse.y,v 1.16 2006/03/11 04:38:28 momjian Exp $ */
+
 #define YYPARSE_PARAM result  /* need this to pass a pointer (void *) to yyparse */
 #define YYSTYPE char *
 #define YYDEBUG 1
diff --git a/contrib/cube/cubescan.l b/contrib/cube/cubescan.l
index 9d2b4ae18cb2b4e917cdb3f3d305c752af1f7d55..a96b9c541d29c1907a02174f78ebb95b051b02a4 100644
--- a/contrib/cube/cubescan.l
+++ b/contrib/cube/cubescan.l
@@ -1,6 +1,7 @@
 %{
 /* 
 ** A scanner for EMP-style numeric ranges 
+ * $PostgreSQL: pgsql/contrib/cube/cubescan.l,v 1.11 2006/03/11 04:38:28 momjian Exp $
 */
 
 #include "postgres.h"
diff --git a/contrib/dbase/dbf.c b/contrib/dbase/dbf.c
index 4c79a07d60395af4269f85326f16093ae5428f2a..ba1c99bc4b4c1e54b26e95a1021e039b72dd7f91 100644
--- a/contrib/dbase/dbf.c
+++ b/contrib/dbase/dbf.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/dbase/dbf.c,v 1.10 2006/03/11 04:38:28 momjian Exp $ */
+
 /* Routines to read and write xBase-files (.dbf)
 
    By Maarten Boekhold, 29th of oktober 1995
diff --git a/contrib/dbase/dbf.h b/contrib/dbase/dbf.h
index d9c88ed35bcbaf11da0d5ce1041cbaab909e8b2a..2e734b7107d886bdf508961a1666747b05dbad4d 100644
--- a/contrib/dbase/dbf.h
+++ b/contrib/dbase/dbf.h
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/dbase/dbf.h,v 1.9 2006/03/11 04:38:28 momjian Exp $ */
+
 /* header-file for dbf.c
    declares routines for reading and writing xBase-files (.dbf), and
    associated structures
diff --git a/contrib/dbase/dbf2pg.1 b/contrib/dbase/dbf2pg.1
index e62d3323b59cefe525e68ce861097c0bb50d8a05..34b37b402a5eafa8a114317070a71770622a01b5 100644
--- a/contrib/dbase/dbf2pg.1
+++ b/contrib/dbase/dbf2pg.1
@@ -1,3 +1,5 @@
+.\" $PostgreSQL: pgsql/contrib/dbase/dbf2pg.1,v 1.3 2006/03/11 04:38:28 momjian Exp $
+
 .TH dbf2sql 1L \" -*- nroff -*-
 .SH NAME
 dbf2sql \- Insert xBase\-style .dbf\-files into a PostgreSQL\-table
diff --git a/contrib/dbase/dbf2pg.c b/contrib/dbase/dbf2pg.c
index 50948a6bf2847c9b010daae08386dc7eea735343..0fc0aedd8f968a66e481262079b72faf95fb7e39 100644
--- a/contrib/dbase/dbf2pg.c
+++ b/contrib/dbase/dbf2pg.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/dbase/dbf2pg.c,v 1.27 2006/03/11 04:38:28 momjian Exp $ */
+
 /* This program reads in an xbase-dbf file and sends 'inserts' to an
    PostgreSQL-server with the records in the xbase-file
 
diff --git a/contrib/dbase/endian.c b/contrib/dbase/endian.c
index f45d958e40385b5359f770bcfc0ae6b6ed5eeca9..9f32f2ca2a2a1624f8e874350951c869af2bbb88 100644
--- a/contrib/dbase/endian.c
+++ b/contrib/dbase/endian.c
@@ -1,3 +1,4 @@
+/* $PostgreSQL: pgsql/contrib/dbase/endian.c,v 1.4 2006/03/11 04:38:28 momjian Exp $ */
 /* Maarten Boekhold (maarten.boekhold@reuters.com) oktober 1995 */
 
 #include <sys/types.h>
diff --git a/contrib/dblink/dblink.c b/contrib/dblink/dblink.c
index 22a3425ee7e003ce8461e7c40c702648cbf2584b..42ffd6f3b61ff9dcccb0b6579c76fa8d1b433547 100644
--- a/contrib/dblink/dblink.c
+++ b/contrib/dblink/dblink.c
@@ -8,6 +8,7 @@
  * Darko Prenosil <Darko.Prenosil@finteh.hr>
  * Shridhar Daithankar <shridhar_daithankar@persistent.co.in>
  *
+ * $PostgreSQL: pgsql/contrib/dblink/dblink.c,v 1.54 2006/03/11 04:38:29 momjian Exp $
  * Copyright (c) 2001-2006, PostgreSQL Global Development Group
  * ALL RIGHTS RESERVED;
  *
diff --git a/contrib/dblink/dblink.h b/contrib/dblink/dblink.h
index 8f2c9ff4c1f1714554cf0d84f247df4929002416..b0ab4f0245a8155e347606ecd2dc0e26211cc01b 100644
--- a/contrib/dblink/dblink.h
+++ b/contrib/dblink/dblink.h
@@ -8,6 +8,7 @@
  * Darko Prenosil <Darko.Prenosil@finteh.hr>
  * Shridhar Daithankar <shridhar_daithankar@persistent.co.in>
  *
+ * $PostgreSQL: pgsql/contrib/dblink/dblink.h,v 1.15 2006/03/11 04:38:29 momjian Exp $
  * Copyright (c) 2001-2006, PostgreSQL Global Development Group
  * ALL RIGHTS RESERVED;
  *
diff --git a/contrib/dblink/doc/connection b/contrib/dblink/doc/connection
index c3ce776fbcc18fe9af6e586b78443dde5c54c6ca..28a93a9038bc1d7eecf0dd84a0f78370e2085d4e 100644
--- a/contrib/dblink/doc/connection
+++ b/contrib/dblink/doc/connection
@@ -1,3 +1,4 @@
+$PostgreSQL: pgsql/contrib/dblink/doc/connection,v 1.4 2006/03/11 04:38:29 momjian Exp $
 ==================================================================
 Name
 
diff --git a/contrib/dblink/doc/cursor b/contrib/dblink/doc/cursor
index 321c823e211353e3d3be900fa02ca014196c7a73..874599582885e371d7a55ec38f6e8afbfdd12c1a 100644
--- a/contrib/dblink/doc/cursor
+++ b/contrib/dblink/doc/cursor
@@ -1,3 +1,4 @@
+$PostgreSQL: pgsql/contrib/dblink/doc/cursor,v 1.6 2006/03/11 04:38:29 momjian Exp $
 ==================================================================
 Name
 
diff --git a/contrib/dblink/doc/execute b/contrib/dblink/doc/execute
index d4c09b22de2e0417fa3809add17cc5e72cc86188..021e01ef85a1d4ff2105697a7270cfc7d99c6999 100644
--- a/contrib/dblink/doc/execute
+++ b/contrib/dblink/doc/execute
@@ -1,3 +1,4 @@
+$PostgreSQL: pgsql/contrib/dblink/doc/execute,v 1.4 2006/03/11 04:38:29 momjian Exp $
 ==================================================================
 Name
 
diff --git a/contrib/dblink/doc/misc b/contrib/dblink/doc/misc
index 596c9ecdcff941567cb10700cabe7c2944542992..ae79cf88ba4b40328d47001bfc3037c87a88167c 100644
--- a/contrib/dblink/doc/misc
+++ b/contrib/dblink/doc/misc
@@ -1,3 +1,4 @@
+$PostgreSQL: pgsql/contrib/dblink/doc/misc,v 1.3 2006/03/11 04:38:29 momjian Exp $
 ==================================================================
 Name
 
diff --git a/contrib/earthdistance/earthdistance.c b/contrib/earthdistance/earthdistance.c
index f91eeb539216802223b4755b608cc47a2a71fa8b..d3032bde8879fd6f3838976473748a17bf5ce8a2 100644
--- a/contrib/earthdistance/earthdistance.c
+++ b/contrib/earthdistance/earthdistance.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/earthdistance/earthdistance.c,v 1.10 2006/03/11 04:38:29 momjian Exp $ */
+
 #include "postgres.h"
 
 #include <math.h>
diff --git a/contrib/fulltextindex/fti.c b/contrib/fulltextindex/fti.c
index 9e120dc892026c6abc6b5e34ad7ade236eb96290..938e7748c54b49078b9522c1e9d2fcba31c19655 100644
--- a/contrib/fulltextindex/fti.c
+++ b/contrib/fulltextindex/fti.c
@@ -8,6 +8,8 @@
 /*
  *	Trigger function accepts variable number of arguments:
  *
+ * $PostgreSQL: pgsql/contrib/fulltextindex/fti.c,v 1.26 2006/03/11 04:38:29 momjian Exp $
+ *
  *		1. relation in which to store the substrings
  *		2. fields to extract substrings from
  *
diff --git a/contrib/fulltextindex/fti.pl b/contrib/fulltextindex/fti.pl
index 4feb51964f7dec31f1c8ec76a9696bbb85e7da86..958e3a32733c07cdf2afce8831beefd1873d6108 100644
--- a/contrib/fulltextindex/fti.pl
+++ b/contrib/fulltextindex/fti.pl
@@ -1,5 +1,7 @@
 #!/usr/bin/perl
 #
+# $PostgreSQL: pgsql/contrib/fulltextindex/fti.pl,v 1.9 2006/03/11 04:38:29 momjian Exp $
+#
 # This script substracts all suffixes of all words in a specific column in a table
 # and generates output that can be loaded into a new table with the
 # psql '\copy' command. The new table should have the following structure:
diff --git a/contrib/fuzzystrmatch/dmetaphone.c b/contrib/fuzzystrmatch/dmetaphone.c
index 216f39b7a747a9bb4d9017c3696bd8ee4cf5ad07..3fe247e9221407811728a63bc2c79330a40163e5 100644
--- a/contrib/fuzzystrmatch/dmetaphone.c
+++ b/contrib/fuzzystrmatch/dmetaphone.c
@@ -1,6 +1,8 @@
 /*
  * This is a port of the Double Metaphone algorithm for use in PostgreSQL.
  *
+ * $PostgreSQL: pgsql/contrib/fuzzystrmatch/dmetaphone.c,v 1.7 2006/03/11 04:38:29 momjian Exp $
+ *
  * Double Metaphone computes 2 "sounds like" strings - a primary and an
  * alternate. In most cases they are the same, but for foreign names
  * especially they can be a bit different, depending on pronunciation.
@@ -48,8 +50,8 @@
 
 
 /*
- * $Revision: 1.6 $
- * $Id: dmetaphone.c,v 1.6 2005/10/15 02:49:05 momjian Exp $
+ * $Revision: 1.7 $
+ * $Id: dmetaphone.c,v 1.7 2006/03/11 04:38:29 momjian Exp $
  */
 
 
diff --git a/contrib/fuzzystrmatch/fuzzystrmatch.c b/contrib/fuzzystrmatch/fuzzystrmatch.c
index 140e52fa5f1bb00cd9415a0288e415bdf5addf5c..64b6c41b4252ad52b4e5aa134589d1bd97170aa5 100644
--- a/contrib/fuzzystrmatch/fuzzystrmatch.c
+++ b/contrib/fuzzystrmatch/fuzzystrmatch.c
@@ -5,6 +5,7 @@
  *
  * Joe Conway <mail@joeconway.com>
  *
+ * $PostgreSQL: pgsql/contrib/fuzzystrmatch/fuzzystrmatch.c,v 1.19 2006/03/11 04:38:29 momjian Exp $
  * Copyright (c) 2001-2006, PostgreSQL Global Development Group
  * ALL RIGHTS RESERVED;
  *
diff --git a/contrib/fuzzystrmatch/fuzzystrmatch.h b/contrib/fuzzystrmatch/fuzzystrmatch.h
index 40552ba871897647a77c3def365352a8db65bdcc..42f7f1fa30c02f7351db9357f1ac7de9b83907d5 100644
--- a/contrib/fuzzystrmatch/fuzzystrmatch.h
+++ b/contrib/fuzzystrmatch/fuzzystrmatch.h
@@ -5,6 +5,7 @@
  *
  * Joe Conway <mail@joeconway.com>
  *
+ * $PostgreSQL: pgsql/contrib/fuzzystrmatch/fuzzystrmatch.h,v 1.13 2006/03/11 04:38:29 momjian Exp $
  * Copyright (c) 2001-2006, PostgreSQL Global Development Group
  * ALL RIGHTS RESERVED;
  *
diff --git a/contrib/intagg/int_aggregate.c b/contrib/intagg/int_aggregate.c
index afe5dd526fe6e3615cf610cdaac1ae2fa3d27d42..d081278634b3833408d55b2d2f34ed6a3713af93 100644
--- a/contrib/intagg/int_aggregate.c
+++ b/contrib/intagg/int_aggregate.c
@@ -5,6 +5,8 @@
  * DMN Digital Music Network.
  * www.dmn.com
  *
+ * $PostgreSQL: pgsql/contrib/intagg/int_aggregate.c,v 1.23 2006/03/11 04:38:29 momjian Exp $
+ *
  * Copyright (C) Digital Music Network
  * December 20, 2001
  *
diff --git a/contrib/intarray/bench/create_test.pl b/contrib/intarray/bench/create_test.pl
index b39d1fb473c5c7d50fe09b919609a072bffa5cae..01671bf5a2a853331daa9636fca77527fc5f52a5 100755
--- a/contrib/intarray/bench/create_test.pl
+++ b/contrib/intarray/bench/create_test.pl
@@ -1,5 +1,7 @@
 #!/usr/bin/perl
 
+# $PostgreSQL: pgsql/contrib/intarray/bench/create_test.pl,v 1.4 2006/03/11 04:38:29 momjian Exp $
+
 use strict;
 print <<EOT;
 create table message (
diff --git a/contrib/ltree/crc32.c b/contrib/ltree/crc32.c
index c82b3a644c8b2e523a11d0db2d5dc84e31d1a04d..c114540181a4aff4a8265536dd93726d21ddfb78 100644
--- a/contrib/ltree/crc32.c
+++ b/contrib/ltree/crc32.c
@@ -1,5 +1,7 @@
 /* Both POSIX and CRC32 checksums */
 
+/* $PostgreSQL: pgsql/contrib/ltree/crc32.c,v 1.6 2006/03/11 04:38:29 momjian Exp $ */
+
 #include <sys/types.h>
 #include <stdio.h>
 #include <sys/types.h>
diff --git a/contrib/ltree/crc32.h b/contrib/ltree/crc32.h
index f70722c1c5d63db63a628c4b49a7a428ecba8b2c..69d9eee3e1287899a75080e84f8333e9c4c6da64 100644
--- a/contrib/ltree/crc32.h
+++ b/contrib/ltree/crc32.h
@@ -1,6 +1,8 @@
 #ifndef _CRC32_H
 #define _CRC32_H
 
+/* $PostgreSQL: pgsql/contrib/ltree/crc32.h,v 1.3 2006/03/11 04:38:29 momjian Exp $ */
+
 /* Returns crc32 of data block */
 extern unsigned int ltree_crc32_sz(char *buf, int size);
 
diff --git a/contrib/ltree/lquery_op.c b/contrib/ltree/lquery_op.c
index 9d43b6444d452378ea2693e0bbe1fd9a16df137c..07269ceaee6f3baf46e696f48abac07e8907ee46 100644
--- a/contrib/ltree/lquery_op.c
+++ b/contrib/ltree/lquery_op.c
@@ -1,6 +1,7 @@
 /*
  * op function for ltree and lquery
  * Teodor Sigaev <teodor@stack.net>
+ * $PostgreSQL: pgsql/contrib/ltree/lquery_op.c,v 1.10 2006/03/11 04:38:29 momjian Exp $
  */
 
 #include "ltree.h"
diff --git a/contrib/ltree/ltree.h b/contrib/ltree/ltree.h
index 3281afefa16faf05990f0cb92a6b8516a0b41aca..3cd67794b9bd70c988878a3b352fa0fbc1dccca3 100644
--- a/contrib/ltree/ltree.h
+++ b/contrib/ltree/ltree.h
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/ltree/ltree.h,v 1.15 2006/03/11 04:38:29 momjian Exp $ */
+
 #ifndef __LTREE_H__
 #define __LTREE_H__
 
diff --git a/contrib/ltree/ltree_gist.c b/contrib/ltree/ltree_gist.c
index 5447677e02c062ad178d5a65469bb9b16ebac539..e210117cbc713b6f55583449b28c530f2059d2f6 100644
--- a/contrib/ltree/ltree_gist.c
+++ b/contrib/ltree/ltree_gist.c
@@ -1,6 +1,7 @@
 /*
  * GiST support for ltree
  * Teodor Sigaev <teodor@stack.net>
+ * $PostgreSQL: pgsql/contrib/ltree/ltree_gist.c,v 1.14 2006/03/11 04:38:29 momjian Exp $
  */
 
 #include "ltree.h"
diff --git a/contrib/ltree/ltree_io.c b/contrib/ltree/ltree_io.c
index a44a5a71ddb42253b65f50ae085acfc6512f7871..c147887703e2d38b77c5155b53bf191a7a575867 100644
--- a/contrib/ltree/ltree_io.c
+++ b/contrib/ltree/ltree_io.c
@@ -1,6 +1,7 @@
 /*
  * in/out function for ltree and lquery
  * Teodor Sigaev <teodor@stack.net>
+ * $PostgreSQL: pgsql/contrib/ltree/ltree_io.c,v 1.12 2006/03/11 04:38:29 momjian Exp $
  */
 
 #include "ltree.h"
diff --git a/contrib/ltree/ltree_op.c b/contrib/ltree/ltree_op.c
index f10f7df41274fb1c867c84916dd1ab4aa8329f3c..ec2d0fbf5de55b860a0b9163937d0392c331ebc4 100644
--- a/contrib/ltree/ltree_op.c
+++ b/contrib/ltree/ltree_op.c
@@ -1,6 +1,7 @@
 /*
  * op function for ltree
  * Teodor Sigaev <teodor@stack.net>
+ * $PostgreSQL: pgsql/contrib/ltree/ltree_op.c,v 1.9 2006/03/11 04:38:29 momjian Exp $
  */
 
 #include "ltree.h"
diff --git a/contrib/ltree/ltxtquery_io.c b/contrib/ltree/ltxtquery_io.c
index 1a7117c15ff562d55596d270a1b36007452580e2..1142bb3fe3d19c5a2671bcffcca0c89a50d22ca8 100644
--- a/contrib/ltree/ltxtquery_io.c
+++ b/contrib/ltree/ltxtquery_io.c
@@ -1,6 +1,7 @@
 /*
  * txtquery io
  * Teodor Sigaev <teodor@stack.net>
+ * $PostgreSQL: pgsql/contrib/ltree/ltxtquery_io.c,v 1.11 2006/03/11 04:38:29 momjian Exp $
  */
 
 #include "ltree.h"
diff --git a/contrib/ltree/ltxtquery_op.c b/contrib/ltree/ltxtquery_op.c
index 34e711eacad1cfb80d3674187ca9a94dc4f83112..07ebc201c7a999cd9c88b0a7ce76dad214173115 100644
--- a/contrib/ltree/ltxtquery_op.c
+++ b/contrib/ltree/ltxtquery_op.c
@@ -1,6 +1,7 @@
 /*
  * txtquery operations with ltree
  * Teodor Sigaev <teodor@stack.net>
+ * $PostgreSQL: pgsql/contrib/ltree/ltxtquery_op.c,v 1.6 2006/03/11 04:38:29 momjian Exp $
  */
 
 #include "ltree.h"
diff --git a/contrib/mSQL-interface/mpgsql.c b/contrib/mSQL-interface/mpgsql.c
index 1f43f61ea1bb0e6152e24e20bb0c49c62c60b292..b93089c9db23496bae152c2a75146785b6ef9cd1 100644
--- a/contrib/mSQL-interface/mpgsql.c
+++ b/contrib/mSQL-interface/mpgsql.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/mSQL-interface/mpgsql.c,v 1.8 2006/03/11 04:38:29 momjian Exp $ */
+
 #include <time.h>
 #include <string.h>
 #include <stdlib.h>
diff --git a/contrib/mac/createoui b/contrib/mac/createoui
index ec1edcfa175983712ec9e6f286adae0c2077bf68..eaf4dbfac0eb0a808d9b2c4864e94d474bc033a3 100755
--- a/contrib/mac/createoui
+++ b/contrib/mac/createoui
@@ -1,4 +1,7 @@
 #! /bin/sh
+
+# $PostgreSQL: pgsql/contrib/mac/createoui,v 1.3 2006/03/11 04:38:30 momjian Exp $
+
 # Utility to create manufacturer's oui table
 # OUI is "Organizationally Unique Identifier" assigned by IEEE.
 # There are currently three duplicate listings, so we can not enforce
diff --git a/contrib/mac/dropoui b/contrib/mac/dropoui
index 6fffdc92d66630824b5ed7d893383ed33a56411d..b06d9cc4e6f9efe774fae9ff036be38d919e3065 100755
--- a/contrib/mac/dropoui
+++ b/contrib/mac/dropoui
@@ -1,5 +1,7 @@
 #! /bin/sh
 # Utility to remove manufacturer's oui table
+# $PostgreSQL: pgsql/contrib/mac/dropoui,v 1.2 2006/03/11 04:38:30 momjian Exp $
+
 
 args=
 
diff --git a/contrib/oid2name/oid2name.c b/contrib/oid2name/oid2name.c
index 069c1708d63c9376ad78db44a5649a38c85f1670..98d106701e30e8ac2ab86bac8a960deb50ba4fb7 100644
--- a/contrib/oid2name/oid2name.c
+++ b/contrib/oid2name/oid2name.c
@@ -4,6 +4,7 @@
  *
  * Originally by
  * B. Palmer, bpalmer@crimelabs.net 1-17-2001
+ * $PostgreSQL: pgsql/contrib/oid2name/oid2name.c,v 1.29 2006/03/11 04:38:30 momjian Exp $
  */
 #include "postgres_fe.h"
 
diff --git a/contrib/pgcrypto/crypt-blowfish.c b/contrib/pgcrypto/crypt-blowfish.c
index 42a694b62f91a1d3b9b0d4743faa755149d56296..f8bd00e2da7eac48e5e2933446af1441d4accbe5 100644
--- a/contrib/pgcrypto/crypt-blowfish.c
+++ b/contrib/pgcrypto/crypt-blowfish.c
@@ -1,4 +1,6 @@
 /*
+ * $PostgreSQL: pgsql/contrib/pgcrypto/crypt-blowfish.c,v 1.11 2006/03/11 04:38:30 momjian Exp $
+ *
  * This code comes from John the Ripper password cracker, with reentrant
  * and crypt(3) interfaces added, but optimizations specific to password
  * cracking removed.
diff --git a/contrib/pgcrypto/crypt-des.c b/contrib/pgcrypto/crypt-des.c
index 6ed7188f4a087dec4f4fd8430ebecf6ba0211885..e5cdc370e95312aa998aa0906c8641a36cf3e3b8 100644
--- a/contrib/pgcrypto/crypt-des.c
+++ b/contrib/pgcrypto/crypt-des.c
@@ -1,6 +1,8 @@
 /*
  * FreeSec: libcrypt for NetBSD
  *
+ * $PostgreSQL: pgsql/contrib/pgcrypto/crypt-des.c,v 1.14 2006/03/11 04:38:30 momjian Exp $
+ *
  * Copyright (c) 1994 David Burren
  * All rights reserved.
  *
diff --git a/contrib/pgcrypto/crypt-gensalt.c b/contrib/pgcrypto/crypt-gensalt.c
index 01775ee7b751a7baaef21ac714ff372580005448..c7d85110618e6428bb757bb25c744ab72740d8c4 100644
--- a/contrib/pgcrypto/crypt-gensalt.c
+++ b/contrib/pgcrypto/crypt-gensalt.c
@@ -2,6 +2,8 @@
  * Written by Solar Designer and placed in the public domain.
  * See crypt_blowfish.c for more information.
  *
+ * $PostgreSQL: pgsql/contrib/pgcrypto/crypt-gensalt.c,v 1.8 2006/03/11 04:38:30 momjian Exp $
+ *
  * This file contains salt generation functions for the traditional and
  * other common crypt(3) algorithms, except for bcrypt which is defined
  * entirely in crypt_blowfish.c.
diff --git a/contrib/pgcrypto/misc.c b/contrib/pgcrypto/misc.c
index 5c803c0d5b9a9079c3cd18b3e98ec72b6eaab1fe..b53a70a5095c863dd66b748669241f727fb38a03 100644
--- a/contrib/pgcrypto/misc.c
+++ b/contrib/pgcrypto/misc.c
@@ -2,6 +2,8 @@
  * Copyright (c) 1999
  *		University of California.  All rights reserved.
  *
+ * $PostgreSQL: pgsql/contrib/pgcrypto/misc.c,v 1.3 2006/03/11 04:38:30 momjian Exp $
+ *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
  * are met:
diff --git a/contrib/spi/insert_username.c b/contrib/spi/insert_username.c
index ce8c21f9bebda4f4a1f821262ac7517a319426c0..06de9632bd7733efacc6161c912c5c2120f564c5 100644
--- a/contrib/spi/insert_username.c
+++ b/contrib/spi/insert_username.c
@@ -1,6 +1,7 @@
 /*
  * insert_username.c
  * $Modified: Thu Oct 16 08:13:42 1997 by brook $
+ * $PostgreSQL: pgsql/contrib/spi/insert_username.c,v 1.13 2006/03/11 04:38:30 momjian Exp $
  *
  * insert user name in response to a trigger
  * usage:  insert_username (column_name)
diff --git a/contrib/spi/moddatetime.c b/contrib/spi/moddatetime.c
index 14556a85141ee4db90a63eea01004b16527724b0..43ad810793a1a2bd422187014d9c1ced5df623e6 100644
--- a/contrib/spi/moddatetime.c
+++ b/contrib/spi/moddatetime.c
@@ -1,6 +1,8 @@
 /*
 moddatetime.c
 
+$PostgreSQL: pgsql/contrib/spi/moddatetime.c,v 1.12 2006/03/11 04:38:30 momjian Exp $
+
 What is this?
 It is a function to be called from a trigger for the purpose of updating
 a modification datetime stamp in a record when that record is UPDATEd.
diff --git a/contrib/tsearch2/crc32.c b/contrib/tsearch2/crc32.c
index c314019b7f0d794efbef1933a3661cdf1e808662..2bccacc104a75dcb497c36388184f8dbf52094fc 100644
--- a/contrib/tsearch2/crc32.c
+++ b/contrib/tsearch2/crc32.c
@@ -1,5 +1,7 @@
 /* Both POSIX and CRC32 checksums */
 
+/* $PostgreSQL: pgsql/contrib/tsearch2/crc32.c,v 1.3 2006/03/11 04:38:30 momjian Exp $ */
+
 #include <sys/types.h>
 #include <stdio.h>
 #include <sys/types.h>
diff --git a/contrib/tsearch2/crc32.h b/contrib/tsearch2/crc32.h
index 97254a4a9094dd0bd5fc8f744305bd41207be97d..420c9594ac20a9054c067738714a6aec87d20fb9 100644
--- a/contrib/tsearch2/crc32.h
+++ b/contrib/tsearch2/crc32.h
@@ -1,6 +1,8 @@
 #ifndef _CRC32_H
 #define _CRC32_H
 
+/* $PostgreSQL: pgsql/contrib/tsearch2/crc32.h,v 1.2 2006/03/11 04:38:30 momjian Exp $ */
+
 /* Returns crc32 of data block */
 extern unsigned int crc32_sz(char *buf, int size);
 
diff --git a/contrib/tsearch2/dict.c b/contrib/tsearch2/dict.c
index f221d174efa74c77e4feba60c4880400e0ce29f2..9d912353e948a7772d28a433771c20664c4675fd 100644
--- a/contrib/tsearch2/dict.c
+++ b/contrib/tsearch2/dict.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/tsearch2/dict.c,v 1.11 2006/03/11 04:38:30 momjian Exp $ */
+
 /*
  * interface functions to dictionary
  * Teodor Sigaev <teodor@sigaev.ru>
diff --git a/contrib/tsearch2/dict.h b/contrib/tsearch2/dict.h
index 8aef0b0cb70dd0d919ef1ffd360a8ee4887ed84c..7a6153c4531dc947a7fe771392e2870d5fa02770 100644
--- a/contrib/tsearch2/dict.h
+++ b/contrib/tsearch2/dict.h
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/tsearch2/dict.h,v 1.6 2006/03/11 04:38:30 momjian Exp $ */
+
 #ifndef __DICT_H__
 #define __DICT_H__
 #include "postgres.h"
diff --git a/contrib/tsearch2/dict_ex.c b/contrib/tsearch2/dict_ex.c
index 334bb5248d8a7ac56cf759670c682090585ca981..ccb7f3fcbe30be70003b274d66b65e1ae04e9643 100644
--- a/contrib/tsearch2/dict_ex.c
+++ b/contrib/tsearch2/dict_ex.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/tsearch2/dict_ex.c,v 1.8 2006/03/11 04:38:30 momjian Exp $ */
+
 /*
  * example of dictionary
  * Teodor Sigaev <teodor@sigaev.ru>
diff --git a/contrib/tsearch2/dict_ispell.c b/contrib/tsearch2/dict_ispell.c
index 0e887da584a81cfc199538213f259b4ab1c8ee82..301b19d592872dc98fc44ca5f00df9e305f84b6e 100644
--- a/contrib/tsearch2/dict_ispell.c
+++ b/contrib/tsearch2/dict_ispell.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/tsearch2/dict_ispell.c,v 1.10 2006/03/11 04:38:30 momjian Exp $ */
+
 /*
  * ISpell interface
  * Teodor Sigaev <teodor@sigaev.ru>
diff --git a/contrib/tsearch2/dict_snowball.c b/contrib/tsearch2/dict_snowball.c
index 92e25b6e2e5089493eac68ea8e9c7147422b6e94..bab941598f694720e564aced2a50e3f902c23114 100644
--- a/contrib/tsearch2/dict_snowball.c
+++ b/contrib/tsearch2/dict_snowball.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/tsearch2/dict_snowball.c,v 1.11 2006/03/11 04:38:30 momjian Exp $ */
+
 /*
  * example of Snowball dictionary
  * http://snowball.tartarus.org/
diff --git a/contrib/tsearch2/dict_syn.c b/contrib/tsearch2/dict_syn.c
index b0c50334eac9a8b72b6e74df8c2dd542d1a2cd59..d19686d63e0a2305505729d6178403dd635fbdd0 100644
--- a/contrib/tsearch2/dict_syn.c
+++ b/contrib/tsearch2/dict_syn.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/tsearch2/dict_syn.c,v 1.9 2006/03/11 04:38:30 momjian Exp $ */
+
 /*
  * ISpell interface
  * Teodor Sigaev <teodor@sigaev.ru>
diff --git a/contrib/tsearch2/gendict/dict_snowball.c.IN b/contrib/tsearch2/gendict/dict_snowball.c.IN
index 818fd6b15770c07622115b9622c61a452a0db159..6a0fce9a3e697c9ce9db12ddf32deffdcc904195 100644
--- a/contrib/tsearch2/gendict/dict_snowball.c.IN
+++ b/contrib/tsearch2/gendict/dict_snowball.c.IN
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/tsearch2/gendict/dict_snowball.c.IN,v 1.4 2006/03/11 04:38:30 momjian Exp $ */
+
 /* 
  * example of Snowball dictionary
  * http://snowball.tartarus.org/ 
diff --git a/contrib/tsearch2/gendict/dict_tmpl.c.IN b/contrib/tsearch2/gendict/dict_tmpl.c.IN
index 9d90df712bf3796cc2adaf8aded27c3423d92380..694b7363e08492ce769c2d6c97d5b724bc6f13b7 100644
--- a/contrib/tsearch2/gendict/dict_tmpl.c.IN
+++ b/contrib/tsearch2/gendict/dict_tmpl.c.IN
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/tsearch2/gendict/dict_tmpl.c.IN,v 1.5 2006/03/11 04:38:30 momjian Exp $ */
+
 /* 
  * example of dictionary 
  * Teodor Sigaev <teodor@sigaev.ru>
diff --git a/contrib/tsearch2/gistidx.c b/contrib/tsearch2/gistidx.c
index 6aabae277723185d07bc6e6eb3cdd16ec0aa5577..7cc370bf84f97d203a380b36815c3c6078e1c0f7 100644
--- a/contrib/tsearch2/gistidx.c
+++ b/contrib/tsearch2/gistidx.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/tsearch2/gistidx.c,v 1.13 2006/03/11 04:38:30 momjian Exp $ */
+
 #include "postgres.h"
 
 #include <float.h>
diff --git a/contrib/tsearch2/gistidx.h b/contrib/tsearch2/gistidx.h
index 142318b8c8f011ea9593544e55258bd7a90d27c8..9545946e31568536848701c28452063eae6c9f8a 100644
--- a/contrib/tsearch2/gistidx.h
+++ b/contrib/tsearch2/gistidx.h
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/tsearch2/gistidx.h,v 1.7 2006/03/11 04:38:30 momjian Exp $ */
+
 #ifndef __GISTIDX_H__
 #define __GISTIDX_H__
 
diff --git a/contrib/tsearch2/snowball/english_stem.c b/contrib/tsearch2/snowball/english_stem.c
index ccb3d1298845f35ecdd2cbb34a5dd7fec0e460a7..9f6f65491c77f5e0f6bcd6e3d3e9ec0f3972a334 100644
--- a/contrib/tsearch2/snowball/english_stem.c
+++ b/contrib/tsearch2/snowball/english_stem.c
@@ -1,3 +1,4 @@
+/* $PostgreSQL: pgsql/contrib/tsearch2/snowball/english_stem.c,v 1.8 2006/03/11 04:38:30 momjian Exp $ */
 
 /* This file was generated automatically by the Snowball to ANSI C compiler */
 
diff --git a/contrib/tsearch2/snowball/english_stem.h b/contrib/tsearch2/snowball/english_stem.h
index c889c7bfa96c8d044158c4f45d6da832d981d9f2..6918a73dd73bd970d253c5307a7a6bdb4b6c3333 100644
--- a/contrib/tsearch2/snowball/english_stem.h
+++ b/contrib/tsearch2/snowball/english_stem.h
@@ -1,3 +1,4 @@
+/* $PostgreSQL: pgsql/contrib/tsearch2/snowball/english_stem.h,v 1.6 2006/03/11 04:38:30 momjian Exp $ */
 
 /* This file was generated automatically by the Snowball to ANSI C compiler */
 
diff --git a/contrib/tsearch2/snowball/header.h b/contrib/tsearch2/snowball/header.h
index 3889ede53e6ba01ddf9c0ff2e9f103fcd4a379ae..7939fbb8faddd703845d95b008ad6d33c38f93ec 100644
--- a/contrib/tsearch2/snowball/header.h
+++ b/contrib/tsearch2/snowball/header.h
@@ -1,3 +1,4 @@
+/* $PostgreSQL: pgsql/contrib/tsearch2/snowball/header.h,v 1.7 2006/03/11 04:38:30 momjian Exp $ */
 
 #include <limits.h>
 
diff --git a/contrib/tsearch2/wordparser/deflex.c b/contrib/tsearch2/wordparser/deflex.c
index 8f93d277a1e21a0942a2068d8ffaeff3362f4c85..004069f48e87cecb3e8c7b21b54d5de0bc7bce8c 100644
--- a/contrib/tsearch2/wordparser/deflex.c
+++ b/contrib/tsearch2/wordparser/deflex.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/tsearch2/wordparser/deflex.c,v 1.4 2006/03/11 04:38:30 momjian Exp $ */
+
 #include "deflex.h"
 
 const char *lex_descr[] = {
diff --git a/contrib/tsearch2/wordparser/deflex.h b/contrib/tsearch2/wordparser/deflex.h
index 893f8430515ea4990f41e466e3c91cfea55e6a88..72852e44856679c3824d442dd993eed4bbfa098b 100644
--- a/contrib/tsearch2/wordparser/deflex.h
+++ b/contrib/tsearch2/wordparser/deflex.h
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/tsearch2/wordparser/deflex.h,v 1.3 2006/03/11 04:38:30 momjian Exp $ */
+
 #ifndef __DEFLEX_H__
 #define __DEFLEX_H__
 
diff --git a/contrib/tsearch2/wordparser/parser.c b/contrib/tsearch2/wordparser/parser.c
index 8a5fcdabe66aae9eee5ab9ef6ca51767ec474fa7..2efb49375249cb01e2cc20836127443207785df6 100644
--- a/contrib/tsearch2/wordparser/parser.c
+++ b/contrib/tsearch2/wordparser/parser.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/tsearch2/wordparser/parser.c,v 1.10 2006/03/11 04:38:30 momjian Exp $ */
+
 #include "postgres.h"
 
 #include "utils/builtins.h"
diff --git a/contrib/tsearch2/wordparser/parser.h b/contrib/tsearch2/wordparser/parser.h
index baeabf72cd7d2e16b51bd14bf50ea0d423deb063..c40717a80f82de1f723e8b1a3d0dc9bc676dd6c3 100644
--- a/contrib/tsearch2/wordparser/parser.h
+++ b/contrib/tsearch2/wordparser/parser.h
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/tsearch2/wordparser/parser.h,v 1.11 2006/03/11 04:38:30 momjian Exp $ */
+
 #ifndef __PARSER_H__
 #define __PARSER_H__
 
diff --git a/doc/src/sgml/fixrtf b/doc/src/sgml/fixrtf
index 2c1172408c82dbd293e8aeca61cb1dd02f7d3c53..d5beeea4e6c0144b492ada5c060afe02343d8397 100755
--- a/doc/src/sgml/fixrtf
+++ b/doc/src/sgml/fixrtf
@@ -1,5 +1,8 @@
 #!/bin/sh
 # fixrtf
+
+# $PostgreSQL: pgsql/doc/src/sgml/fixrtf,v 2.3 2006/03/11 04:38:30 momjian Exp $
+
 # Repair (slightly) damaged RTF generated by jade
 # Applixware wants the s0 stylesheet defined, whereas
 #  M$Word does not care about it.
diff --git a/doc/src/sgml/mk_feature_tables.pl b/doc/src/sgml/mk_feature_tables.pl
index 445acdb2e99ca6d15c4fdc65b64d7e42012ad5e0..7b4f45f3de196b5f0ff8bf5fa49049dbd0cfea1d 100644
--- a/doc/src/sgml/mk_feature_tables.pl
+++ b/doc/src/sgml/mk_feature_tables.pl
@@ -1,5 +1,7 @@
 # /usr/bin/perl -w
 
+# $PostgreSQL: pgsql/doc/src/sgml/mk_feature_tables.pl,v 2.2 2006/03/11 04:38:30 momjian Exp $
+
 my $yesno = $ARGV[0];
 
 open PACK, $ARGV[1] or die;
diff --git a/src/backend/port/aix/mkldexport.sh b/src/backend/port/aix/mkldexport.sh
index 5eca61be605d051d2ee27943ed9ad8c9e3539cee..01986a0c401b30df0128739f430e4ec37fe9e9ae 100755
--- a/src/backend/port/aix/mkldexport.sh
+++ b/src/backend/port/aix/mkldexport.sh
@@ -3,6 +3,8 @@
 # mkldexport
 #	create an AIX exports file from an object file
 #
+# $PostgreSQL: pgsql/src/backend/port/aix/mkldexport.sh,v 1.9 2006/03/11 04:38:31 momjian Exp $
+#
 # Usage:
 #	mkldexport objectfile [location]
 # where
diff --git a/src/backend/port/dynloader/cygwin.c b/src/backend/port/dynloader/cygwin.c
index 9a1436fa4a39b292246297ae36178c0ae2a483ea..ba014928b6578e2f165d5ae794ab33899f205169 100644
--- a/src/backend/port/dynloader/cygwin.c
+++ b/src/backend/port/dynloader/cygwin.c
@@ -1 +1,3 @@
+/* $PostgreSQL: pgsql/src/backend/port/dynloader/cygwin.c,v 1.2 2006/03/11 04:38:31 momjian Exp $ */
+
 /* Dummy file used for nothing at this point; see cygwin.h */
diff --git a/src/backend/port/dynloader/freebsd.c b/src/backend/port/dynloader/freebsd.c
index 9341ef24446fe0e858bbd8094521f9c358496c34..71e11906e52d14f78c3c05fd413dd44620fde9fd 100644
--- a/src/backend/port/dynloader/freebsd.c
+++ b/src/backend/port/dynloader/freebsd.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/backend/port/dynloader/freebsd.c,v 1.25 2006/03/11 04:38:31 momjian Exp $ */
+
 /*
  * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
  * Portions Copyright (c) 1990 The Regents of the University of California.
diff --git a/src/backend/port/dynloader/irix.c b/src/backend/port/dynloader/irix.c
index d5a654b0cfeecb5ca3fedfca202b7bf7ae0a0982..ba71f8ebe576918ccc79dc8d3408330a356e338b 100644
--- a/src/backend/port/dynloader/irix.c
+++ b/src/backend/port/dynloader/irix.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/backend/port/dynloader/irix.c,v 1.2 2006/03/11 04:38:31 momjian Exp $ */
+
 /* Dummy file used for nothing at this point
  *
  * see irix.h
diff --git a/src/backend/port/dynloader/netbsd.c b/src/backend/port/dynloader/netbsd.c
index f5b837d179597cc29bf1f751ac9c5c2b01e61e5c..ff09c65538c1b6533cb18ed670c20bbc51d6cb16 100644
--- a/src/backend/port/dynloader/netbsd.c
+++ b/src/backend/port/dynloader/netbsd.c
@@ -3,6 +3,8 @@
  * Portions Copyright (c) 1990 The Regents of the University of California.
  * All rights reserved.
  *
+ * $PostgreSQL: pgsql/src/backend/port/dynloader/netbsd.c,v 1.19 2006/03/11 04:38:31 momjian Exp $
+ *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
  * are met:
diff --git a/src/backend/port/dynloader/nextstep.c b/src/backend/port/dynloader/nextstep.c
index 09b317daf97ea07df2b29d184fcb6df1045d938a..850b3a1166f3d60259d6c41292de0875b4e79c01 100644
--- a/src/backend/port/dynloader/nextstep.c
+++ b/src/backend/port/dynloader/nextstep.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/backend/port/dynloader/nextstep.c,v 1.6 2006/03/11 04:38:31 momjian Exp $ */
+
 #include "postgres.h"
 
 #include "mach-o/rld.h"
diff --git a/src/backend/port/dynloader/nextstep.h b/src/backend/port/dynloader/nextstep.h
index f1345d078839b622330d82ac35563d6d1dbb9ca3..287c42df6fa3ea253f51bc73294d79eb373662fe 100644
--- a/src/backend/port/dynloader/nextstep.h
+++ b/src/backend/port/dynloader/nextstep.h
@@ -3,9 +3,9 @@
  * port_protos.h
  *	  port-specific prototypes for NeXT
  *
-
--------------------------------------------------------------------------
+ * $PostgreSQL: pgsql/src/backend/port/dynloader/nextstep.h,v 1.9 2006/03/11 04:38:31 momjian Exp $
  */
+
 #ifndef PORT_PROTOS_H
 #define PORT_PROTOS_H
 
diff --git a/src/backend/port/dynloader/openbsd.c b/src/backend/port/dynloader/openbsd.c
index f5b837d179597cc29bf1f751ac9c5c2b01e61e5c..196245b30892dbbc7853a5799d7ebafc7c6cbdce 100644
--- a/src/backend/port/dynloader/openbsd.c
+++ b/src/backend/port/dynloader/openbsd.c
@@ -3,6 +3,8 @@
  * Portions Copyright (c) 1990 The Regents of the University of California.
  * All rights reserved.
  *
+ * $PostgreSQL: pgsql/src/backend/port/dynloader/openbsd.c,v 1.19 2006/03/11 04:38:31 momjian Exp $
+ *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
  * are met:
diff --git a/src/backend/port/dynloader/osf.c b/src/backend/port/dynloader/osf.c
index 92007c6af1ef96a9004217c876941035ceacd8f0..ef4c5dfca95d438a3f2bc4088fd73bd073a8c0b6 100644
--- a/src/backend/port/dynloader/osf.c
+++ b/src/backend/port/dynloader/osf.c
@@ -1,4 +1,5 @@
 /* Dummy file used for nothing at this point
  *
  * see alpha.h
+ * $PostgreSQL: pgsql/src/backend/port/dynloader/osf.c,v 1.2 2006/03/11 04:38:31 momjian Exp $
  */
diff --git a/src/backend/utils/mb/Unicode/euc_cn_to_utf8.map b/src/backend/utils/mb/Unicode/euc_cn_to_utf8.map
index fcbf486c742a221db69215329619ec56a9c9b60e..05df71a5cc7bfc64ef57c9ea2c6c3f0cc581d329 100644
--- a/src/backend/utils/mb/Unicode/euc_cn_to_utf8.map
+++ b/src/backend/utils/mb/Unicode/euc_cn_to_utf8.map
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/euc_cn_to_utf8.map,v 1.3 2006/03/11 04:38:31 momjian Exp $ */
+
 static pg_local_to_utf LUmapEUC_CN[ 7445 ] = {
   {0xa1a1, 0xe38080},
   {0xa1a2, 0xe38081},
diff --git a/src/backend/utils/mb/Unicode/euc_jp_to_utf8.map b/src/backend/utils/mb/Unicode/euc_jp_to_utf8.map
index 9aee2c7fd910acc89d43157ec2e13542e1e2eec8..73762eea1b0dd13714d5c549e1d4cfbf9e4c48f7 100644
--- a/src/backend/utils/mb/Unicode/euc_jp_to_utf8.map
+++ b/src/backend/utils/mb/Unicode/euc_jp_to_utf8.map
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/euc_jp_to_utf8.map,v 1.5 2006/03/11 04:38:31 momjian Exp $ */
+
 static pg_local_to_utf LUmapEUC_JP[] = {
   {0x8ea1, 0xefbda1},
   {0x8ea2, 0xefbda2},
diff --git a/src/backend/utils/mb/Unicode/euc_kr_to_utf8.map b/src/backend/utils/mb/Unicode/euc_kr_to_utf8.map
index 32b31cc1dfdd767439cbe3c163df3df7ab132681..e1d36243fed357a8a08c9e20b1769f03b8461a08 100644
--- a/src/backend/utils/mb/Unicode/euc_kr_to_utf8.map
+++ b/src/backend/utils/mb/Unicode/euc_kr_to_utf8.map
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/euc_kr_to_utf8.map,v 1.4 2006/03/11 04:38:31 momjian Exp $ */
+
 static pg_local_to_utf LUmapEUC_KR[ 8224 ] = {
   {0xa1a1, 0xe38080},
   {0xa1a2, 0xe38081},
diff --git a/src/backend/utils/mb/Unicode/euc_tw_to_utf8.map b/src/backend/utils/mb/Unicode/euc_tw_to_utf8.map
index a2959b26b191360e057f02363bfcb59cc850355e..468058151803565837c820191108b8346eef4b1f 100644
--- a/src/backend/utils/mb/Unicode/euc_tw_to_utf8.map
+++ b/src/backend/utils/mb/Unicode/euc_tw_to_utf8.map
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/euc_tw_to_utf8.map,v 1.3 2006/03/11 04:38:31 momjian Exp $ */
+
 static pg_local_to_utf LUmapEUC_TW[ 23575 ] = {
   {0xa1a1, 0xe38080},
   {0xa1a2, 0xefbc8c},
diff --git a/src/backend/utils/mb/Unicode/gb18030_to_utf8.map b/src/backend/utils/mb/Unicode/gb18030_to_utf8.map
index 3aea9f4ec858d553429837a25ff03e212572fc68..8b9dab0bd212d3cb2197361947341aea85c574ab 100644
--- a/src/backend/utils/mb/Unicode/gb18030_to_utf8.map
+++ b/src/backend/utils/mb/Unicode/gb18030_to_utf8.map
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/gb18030_to_utf8.map,v 1.5 2006/03/11 04:38:31 momjian Exp $ */
+
 static pg_local_to_utf LUmapGB18030[ 63360 ] = {
   {0x8140, 0xe4b882},
   {0x8141, 0xe4b884},
diff --git a/src/backend/utils/mb/Unicode/gbk_to_utf8.map b/src/backend/utils/mb/Unicode/gbk_to_utf8.map
index f2c16cbce76e042cdc196c3c1fbcd8c3a919fa5c..0aece2cb6db696f23eb14df5e91200f7f34892a3 100644
--- a/src/backend/utils/mb/Unicode/gbk_to_utf8.map
+++ b/src/backend/utils/mb/Unicode/gbk_to_utf8.map
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/gbk_to_utf8.map,v 1.2 2006/03/11 04:38:37 momjian Exp $ */
+
 static pg_local_to_utf LUmapGBK[ 21792 ] = {
   {0x0080, 0xe282ac},
   {0x8140, 0xe4b882},
diff --git a/src/backend/utils/mb/Unicode/iso8859_10_to_utf8.map b/src/backend/utils/mb/Unicode/iso8859_10_to_utf8.map
index fd0a0a3676957c8020f613492da30c523f5e9262..2dddf187321a06e220058a73d0d5c0d0e921ef24 100644
--- a/src/backend/utils/mb/Unicode/iso8859_10_to_utf8.map
+++ b/src/backend/utils/mb/Unicode/iso8859_10_to_utf8.map
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/iso8859_10_to_utf8.map,v 1.2 2006/03/11 04:38:37 momjian Exp $ */
+
 static pg_local_to_utf LUmapISO8859_10[ 128 ] = {
   {0x0080, 0xc280},
   {0x0081, 0xc281},
diff --git a/src/backend/utils/mb/Unicode/iso8859_13_to_utf8.map b/src/backend/utils/mb/Unicode/iso8859_13_to_utf8.map
index 77bc5aeac5d0371c3e81bc5b43dd6b162db6183a..cadc974eb4d2234c3d7855c622092558382a2d39 100644
--- a/src/backend/utils/mb/Unicode/iso8859_13_to_utf8.map
+++ b/src/backend/utils/mb/Unicode/iso8859_13_to_utf8.map
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/iso8859_13_to_utf8.map,v 1.2 2006/03/11 04:38:37 momjian Exp $ */
+
 static pg_local_to_utf LUmapISO8859_13[ 128 ] = {
   {0x0080, 0xc280},
   {0x0081, 0xc281},
diff --git a/src/backend/utils/mb/Unicode/iso8859_14_to_utf8.map b/src/backend/utils/mb/Unicode/iso8859_14_to_utf8.map
index d3f2054bbb74ab2d6aa61e843858bd5757a47c1a..5637c221f6eb71dc5dbddbdbd5e38208c00c8175 100644
--- a/src/backend/utils/mb/Unicode/iso8859_14_to_utf8.map
+++ b/src/backend/utils/mb/Unicode/iso8859_14_to_utf8.map
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/iso8859_14_to_utf8.map,v 1.2 2006/03/11 04:38:37 momjian Exp $ */
+
 static pg_local_to_utf LUmapISO8859_14[ 128 ] = {
   {0x0080, 0xc280},
   {0x0081, 0xc281},
diff --git a/src/backend/utils/mb/Unicode/iso8859_15_to_utf8.map b/src/backend/utils/mb/Unicode/iso8859_15_to_utf8.map
index 594e22338f63452959a12c4338330eb0a4036baf..a6acd5a0deac342a8f2df6200c4c5d1d4eb4b987 100644
--- a/src/backend/utils/mb/Unicode/iso8859_15_to_utf8.map
+++ b/src/backend/utils/mb/Unicode/iso8859_15_to_utf8.map
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/iso8859_15_to_utf8.map,v 1.2 2006/03/11 04:38:37 momjian Exp $ */
+
 static pg_local_to_utf LUmapISO8859_15[ 128 ] = {
   {0x0080, 0xc280},
   {0x0081, 0xc281},
diff --git a/src/backend/utils/mb/Unicode/iso8859_16_to_utf8.map b/src/backend/utils/mb/Unicode/iso8859_16_to_utf8.map
index ac3d8d1b8a6559cde4ea1334ef9741ba5c2bf4cd..a438aabf7f8a8e30da44632fc64367bca285be37 100644
--- a/src/backend/utils/mb/Unicode/iso8859_16_to_utf8.map
+++ b/src/backend/utils/mb/Unicode/iso8859_16_to_utf8.map
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/iso8859_16_to_utf8.map,v 1.2 2006/03/11 04:38:37 momjian Exp $ */
+
 static pg_local_to_utf LUmapISO8859_16[ 128 ] = {
   {0x0080, 0xc280},
   {0x0081, 0xc281},
diff --git a/src/backend/utils/mb/Unicode/iso8859_2_to_utf8.map b/src/backend/utils/mb/Unicode/iso8859_2_to_utf8.map
index 3cbf164cbb9569647c9ccef5dbe0d72f0351fe4e..9e0bb4b27d0719f8aa12ccfde57a3c256f5c037b 100644
--- a/src/backend/utils/mb/Unicode/iso8859_2_to_utf8.map
+++ b/src/backend/utils/mb/Unicode/iso8859_2_to_utf8.map
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/iso8859_2_to_utf8.map,v 1.3 2006/03/11 04:38:37 momjian Exp $ */
+
 static pg_local_to_utf LUmapISO8859_2[ 128 ] = {
   {0x0080, 0xc280},
   {0x0081, 0xc281},
diff --git a/src/backend/utils/mb/Unicode/iso8859_3_to_utf8.map b/src/backend/utils/mb/Unicode/iso8859_3_to_utf8.map
index 2e8cceb8492db576ffe15363b7d8ba71d9d8187b..92bf410229900a53544d21e7576153d816e8b778 100644
--- a/src/backend/utils/mb/Unicode/iso8859_3_to_utf8.map
+++ b/src/backend/utils/mb/Unicode/iso8859_3_to_utf8.map
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/iso8859_3_to_utf8.map,v 1.3 2006/03/11 04:38:38 momjian Exp $ */
+
 static pg_local_to_utf LUmapISO8859_3[ 121 ] = {
   {0x0080, 0xc280},
   {0x0081, 0xc281},
diff --git a/src/backend/utils/mb/Unicode/iso8859_4_to_utf8.map b/src/backend/utils/mb/Unicode/iso8859_4_to_utf8.map
index 59341ef720cde2193d246f8f04b128ec5e194f09..a45496557d5a09a35bb750bab1cd139c1124a961 100644
--- a/src/backend/utils/mb/Unicode/iso8859_4_to_utf8.map
+++ b/src/backend/utils/mb/Unicode/iso8859_4_to_utf8.map
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/iso8859_4_to_utf8.map,v 1.3 2006/03/11 04:38:38 momjian Exp $ */
+
 static pg_local_to_utf LUmapISO8859_4[ 128 ] = {
   {0x0080, 0xc280},
   {0x0081, 0xc281},
diff --git a/src/backend/utils/mb/Unicode/iso8859_5_to_utf8.map b/src/backend/utils/mb/Unicode/iso8859_5_to_utf8.map
index 6518287a2a49d7e552e1a4c3bc1ac099ffea6f8e..ff6357e421f6a2cd5a66c514a070a8810f30a1c3 100644
--- a/src/backend/utils/mb/Unicode/iso8859_5_to_utf8.map
+++ b/src/backend/utils/mb/Unicode/iso8859_5_to_utf8.map
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/iso8859_5_to_utf8.map,v 1.3 2006/03/11 04:38:38 momjian Exp $ */
+
 static pg_local_to_utf LUmapISO8859_5[ 128 ] = {
   {0x0080, 0xc280},
   {0x0081, 0xc281},
diff --git a/src/backend/utils/mb/Unicode/iso8859_6_to_utf8.map b/src/backend/utils/mb/Unicode/iso8859_6_to_utf8.map
index f847f7f2088543f211ed959359c7c6feaff66e3e..9d44a4f871a023fd3a27e1b94a9f2237df0078ea 100644
--- a/src/backend/utils/mb/Unicode/iso8859_6_to_utf8.map
+++ b/src/backend/utils/mb/Unicode/iso8859_6_to_utf8.map
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/iso8859_6_to_utf8.map,v 1.2 2006/03/11 04:38:38 momjian Exp $ */
+
 static pg_local_to_utf LUmapISO8859_6[ 83 ] = {
   {0x0080, 0xc280},
   {0x0081, 0xc281},
diff --git a/src/backend/utils/mb/Unicode/iso8859_7_to_utf8.map b/src/backend/utils/mb/Unicode/iso8859_7_to_utf8.map
index 9f2db13fb2c6ae1d49a267ba08cc7ed283f2d72a..dd7afb97f175edfaaccda5bb214db28a26b53631 100644
--- a/src/backend/utils/mb/Unicode/iso8859_7_to_utf8.map
+++ b/src/backend/utils/mb/Unicode/iso8859_7_to_utf8.map
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/iso8859_7_to_utf8.map,v 1.3 2006/03/11 04:38:38 momjian Exp $ */
+
 static pg_local_to_utf LUmapISO8859_7[ 125 ] = {
   {0x0080, 0xc280},
   {0x0081, 0xc281},
diff --git a/src/backend/utils/mb/Unicode/iso8859_8_to_utf8.map b/src/backend/utils/mb/Unicode/iso8859_8_to_utf8.map
index a47af89514009bd290e925b8d43d741f95871925..af9745f2da20010f68efb2a4dd29d733b01ad928 100644
--- a/src/backend/utils/mb/Unicode/iso8859_8_to_utf8.map
+++ b/src/backend/utils/mb/Unicode/iso8859_8_to_utf8.map
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/iso8859_8_to_utf8.map,v 1.2 2006/03/11 04:38:38 momjian Exp $ */
+
 static pg_local_to_utf LUmapISO8859_8[ 92 ] = {
   {0x0080, 0xc280},
   {0x0081, 0xc281},
diff --git a/src/backend/utils/mb/Unicode/iso8859_9_to_utf8.map b/src/backend/utils/mb/Unicode/iso8859_9_to_utf8.map
index 9e002adb84509d532f6a66bafa3be2557bd1975c..28304cfcdb14f9d18c17c0730b6e477002563e10 100644
--- a/src/backend/utils/mb/Unicode/iso8859_9_to_utf8.map
+++ b/src/backend/utils/mb/Unicode/iso8859_9_to_utf8.map
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/iso8859_9_to_utf8.map,v 1.2 2006/03/11 04:38:38 momjian Exp $ */
+
 static pg_local_to_utf LUmapISO8859_9[ 128 ] = {
   {0x0080, 0xc280},
   {0x0081, 0xc281},
diff --git a/src/backend/utils/mb/Unicode/johab_to_utf8.map b/src/backend/utils/mb/Unicode/johab_to_utf8.map
index 915633d9ed636f0d6d392b28fd25a4e796e97fbb..b9d07cf0302f308b1d1b8a56e67e01e0d0ab5a9e 100644
--- a/src/backend/utils/mb/Unicode/johab_to_utf8.map
+++ b/src/backend/utils/mb/Unicode/johab_to_utf8.map
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/johab_to_utf8.map,v 1.2 2006/03/11 04:38:38 momjian Exp $ */
+
 static pg_local_to_utf LUmapJOHAB[ 17046 ] = {
   {0x8444, 0xe384b3},
   {0x8446, 0xe384b5},
diff --git a/src/backend/utils/mb/Unicode/koi8r_to_utf8.map b/src/backend/utils/mb/Unicode/koi8r_to_utf8.map
index c02aec45fcb784134fca020ff0e37cccd50fd417..af442210e7991af56d577545dd25ca911b1d7f94 100644
--- a/src/backend/utils/mb/Unicode/koi8r_to_utf8.map
+++ b/src/backend/utils/mb/Unicode/koi8r_to_utf8.map
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/koi8r_to_utf8.map,v 1.3 2006/03/11 04:38:38 momjian Exp $ */
+
 static pg_local_to_utf LUmapKOI8R[ 128 ] = {
   {0x0080, 0xe29480},
   {0x0081, 0xe29482},
diff --git a/src/bin/pgevent/pgmsgevent.h b/src/bin/pgevent/pgmsgevent.h
index 94e0bcf7e5b017f408c662b0601f248001bfe2a6..e7290cad1351b6d62a28972ac764f8e14f8e897e 100644
--- a/src/bin/pgevent/pgmsgevent.h
+++ b/src/bin/pgevent/pgmsgevent.h
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/bin/pgevent/pgmsgevent.h,v 1.4 2006/03/11 04:38:38 momjian Exp $ */
+
 /*	*/
 /*	 Values are 32 bit values layed out as follows: */
 /*	*/
diff --git a/src/include/catalog/pg_trigger.h b/src/include/catalog/pg_trigger.h
index 8aaaf4c0922201dd183c11e9916b6092b8848f07..1126546aef6de9c05506619e983682bdca36c5ad 100644
--- a/src/include/catalog/pg_trigger.h
+++ b/src/include/catalog/pg_trigger.h
@@ -5,6 +5,7 @@
  *
  * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
+ * $PostgreSQL: pgsql/src/include/catalog/pg_trigger.h,v 1.25 2006/03/11 04:38:38 momjian Exp $
  *
  * NOTES
  *	  the genbki.sh script reads this file and generates .bki
diff --git a/src/include/pg_config.h.win32 b/src/include/pg_config.h.win32
index 9d35643663663ea320f2cf3883a6e56ca4ce1040..c79624e8fa44137fad983fc9b03e658d4c04a624 100644
--- a/src/include/pg_config.h.win32
+++ b/src/include/pg_config.h.win32
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/include/pg_config.h.win32,v 1.28 2006/03/11 04:38:38 momjian Exp $ */
+
 #ifndef	pg_config_h_win32__
 #define	pg_config_h_win32__
 /*
diff --git a/src/include/port/darwin.h b/src/include/port/darwin.h
index af4ce9b3856374578aab1fe72b4ed19d1717cb77..e52a8726817ed17cbf21ab7a40903c567e394d35 100644
--- a/src/include/port/darwin.h
+++ b/src/include/port/darwin.h
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/include/port/darwin.h,v 1.10 2006/03/11 04:38:38 momjian Exp $ */
+
 #define __darwin__	1
 
 #if HAVE_DECL_F_FULLFSYNC		/* not present before OS X 10.3 */
diff --git a/src/include/port/dgux.h b/src/include/port/dgux.h
index e0e0c74de1839d157ed0bbed6f7593d369fc0c1e..73096530f28062ef869208096945cbdca6014864 100644
--- a/src/include/port/dgux.h
+++ b/src/include/port/dgux.h
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/include/port/dgux.h,v 1.10 2006/03/11 04:38:38 momjian Exp $ */
+
 #ifndef			BIG_ENDIAN
 #define			BIG_ENDIAN		4321
 #endif
diff --git a/src/include/port/freebsd.h b/src/include/port/freebsd.h
index 8b137891791fe96927ad78e64b0aad7bded08bdc..a70df321cc69e9a745326ee188cfe8f4566e8e7f 100644
--- a/src/include/port/freebsd.h
+++ b/src/include/port/freebsd.h
@@ -1 +1 @@
-
+/* $PostgreSQL: pgsql/src/include/port/freebsd.h,v 1.16 2006/03/11 04:38:38 momjian Exp $ */
diff --git a/src/include/port/hpux.h b/src/include/port/hpux.h
index e96c5324a314a74c5baf254eb484cfd0d7a22c63..6c8cdeb2fb7c9feefc137d8b4db7aab2afd14bab 100644
--- a/src/include/port/hpux.h
+++ b/src/include/port/hpux.h
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/include/port/hpux.h,v 1.23 2006/03/11 04:38:38 momjian Exp $ */
+
 #ifndef			BIG_ENDIAN
 #define			BIG_ENDIAN		4321
 #endif
diff --git a/src/include/port/irix.h b/src/include/port/irix.h
index 8b137891791fe96927ad78e64b0aad7bded08bdc..9f1a4123455ed8a019020c7f33042e9dba83f55c 100644
--- a/src/include/port/irix.h
+++ b/src/include/port/irix.h
@@ -1 +1 @@
-
+/* $PostgreSQL: pgsql/src/include/port/irix.h,v 1.3 2006/03/11 04:38:38 momjian Exp $ */
diff --git a/src/include/port/linux.h b/src/include/port/linux.h
index 8b137891791fe96927ad78e64b0aad7bded08bdc..a4d8f247bc28f0c961e8ae6e6c96c5a7ca95c326 100644
--- a/src/include/port/linux.h
+++ b/src/include/port/linux.h
@@ -1 +1,2 @@
+/* $PostgreSQL: pgsql/src/include/port/linux.h,v 1.41 2006/03/11 04:38:38 momjian Exp $ */
 
diff --git a/src/include/port/netbsd.h b/src/include/port/netbsd.h
index 8b137891791fe96927ad78e64b0aad7bded08bdc..59b78cccd3c2575e79697d141191425fbb0c96aa 100644
--- a/src/include/port/netbsd.h
+++ b/src/include/port/netbsd.h
@@ -1 +1,2 @@
+/* $PostgreSQL: pgsql/src/include/port/netbsd.h,v 1.15 2006/03/11 04:38:38 momjian Exp $ */
 
diff --git a/src/include/port/nextstep.h b/src/include/port/nextstep.h
index 12ce89123791b0c14a7e642832faec6c5650af5c..47a3c8856f6cdad85df585918d979c1cac50b6ab 100644
--- a/src/include/port/nextstep.h
+++ b/src/include/port/nextstep.h
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/include/port/nextstep.h,v 1.8 2006/03/11 04:38:38 momjian Exp $ */
+
 #include "libc.h"
 #include <sys/ioctl.h>
 #if defined(__STRICT_ANSI__)
diff --git a/src/include/port/openbsd.h b/src/include/port/openbsd.h
index 8b137891791fe96927ad78e64b0aad7bded08bdc..412f5615a6e12180c4baa8381c8150464cdbfde7 100644
--- a/src/include/port/openbsd.h
+++ b/src/include/port/openbsd.h
@@ -1 +1 @@
-
+/* $PostgreSQL: pgsql/src/include/port/openbsd.h,v 1.14 2006/03/11 04:38:38 momjian Exp $ */
diff --git a/src/include/port/osf.h b/src/include/port/osf.h
index 2368f3b5930c7287fcab8426fb9dec712d30e83c..4b45d1a8f6a3318c810e47176cb7edcfeb326798 100644
--- a/src/include/port/osf.h
+++ b/src/include/port/osf.h
@@ -1,2 +1,4 @@
+/* $PostgreSQL: pgsql/src/include/port/osf.h,v 1.9 2006/03/11 04:38:38 momjian Exp $ */
+
 #define NOFIXADE
 #define DISABLE_XOPEN_NLS
diff --git a/src/include/port/win32/arpa/inet.h b/src/include/port/win32/arpa/inet.h
index dc979c05372642d4e23342150bc35bb254becb7f..b61c4ebffd3aadf8ef9a1b2084c5482661e29f26 100644
--- a/src/include/port/win32/arpa/inet.h
+++ b/src/include/port/win32/arpa/inet.h
@@ -1 +1,3 @@
+/* $PostgreSQL: pgsql/src/include/port/win32/arpa/inet.h,v 1.2 2006/03/11 04:38:39 momjian Exp $ */
+
 #include <sys/socket.h>
diff --git a/src/include/port/win32/dlfcn.h b/src/include/port/win32/dlfcn.h
index 8b137891791fe96927ad78e64b0aad7bded08bdc..55a59c202bd093079bbe00bc92cc0654295355bf 100644
--- a/src/include/port/win32/dlfcn.h
+++ b/src/include/port/win32/dlfcn.h
@@ -1 +1,3 @@
+/* $PostgreSQL: pgsql/src/include/port/win32/dlfcn.h,v 1.3 2006/03/11 04:38:38 momjian Exp $ */
+
 
diff --git a/src/include/port/win32/grp.h b/src/include/port/win32/grp.h
index 8b137891791fe96927ad78e64b0aad7bded08bdc..162734f4408d3955d70b2afbc746105f07d888e1 100644
--- a/src/include/port/win32/grp.h
+++ b/src/include/port/win32/grp.h
@@ -1 +1,3 @@
+/* $PostgreSQL: pgsql/src/include/port/win32/grp.h,v 1.3 2006/03/11 04:38:38 momjian Exp $ */
+
 
diff --git a/src/include/port/win32/netdb.h b/src/include/port/win32/netdb.h
index 8b137891791fe96927ad78e64b0aad7bded08bdc..0243e3eefbf8bdfcad480ab9a7e955753bbee9b5 100644
--- a/src/include/port/win32/netdb.h
+++ b/src/include/port/win32/netdb.h
@@ -1 +1,2 @@
+/* $PostgreSQL: pgsql/src/include/port/win32/netdb.h,v 1.3 2006/03/11 04:38:38 momjian Exp $ */
 
diff --git a/src/include/port/win32/netinet/in.h b/src/include/port/win32/netinet/in.h
index dc979c05372642d4e23342150bc35bb254becb7f..19a8a650e1cce68e594468411ab4c5d241ddc1fb 100644
--- a/src/include/port/win32/netinet/in.h
+++ b/src/include/port/win32/netinet/in.h
@@ -1 +1,3 @@
+/* $PostgreSQL: pgsql/src/include/port/win32/netinet/in.h,v 1.3 2006/03/11 04:38:39 momjian Exp $ */
+
 #include <sys/socket.h>
diff --git a/src/interfaces/ecpg/compatlib/informix.c b/src/interfaces/ecpg/compatlib/informix.c
index 0cb45100429a8510bf117402f57ad765a795a2e2..4604c6e797d089563f6ca441d71e813fc9600a23 100644
--- a/src/interfaces/ecpg/compatlib/informix.c
+++ b/src/interfaces/ecpg/compatlib/informix.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/compatlib/informix.c,v 1.41 2006/03/11 04:38:39 momjian Exp $ */
+
 #include <stdlib.h>
 #include <string.h>
 #include <errno.h>
diff --git a/src/interfaces/ecpg/ecpglib/extern.h b/src/interfaces/ecpg/ecpglib/extern.h
index cde99c9f3e2df7e69769b41671ff5f62a58a6ef0..48c956cca0f0661a6ae8af214066fddbf4cac35f 100644
--- a/src/interfaces/ecpg/ecpglib/extern.h
+++ b/src/interfaces/ecpg/ecpglib/extern.h
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/extern.h,v 1.16 2006/03/11 04:38:39 momjian Exp $ */
+
 #ifndef _ECPG_LIB_EXTERN_H
 #define _ECPG_LIB_EXTERN_H
 
diff --git a/src/interfaces/ecpg/include/datetime.h b/src/interfaces/ecpg/include/datetime.h
index b4108c5d2b829eb2080ab7bb2fe51402d72f5d3c..c3a706267555914f1729c31e20f400691cafe6a9 100644
--- a/src/interfaces/ecpg/include/datetime.h
+++ b/src/interfaces/ecpg/include/datetime.h
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/include/datetime.h,v 1.12 2006/03/11 04:38:39 momjian Exp $ */
+
 #ifndef _ECPG_DATETIME_H
 #define _ECPG_DATETIME_H
 
diff --git a/src/interfaces/ecpg/include/decimal.h b/src/interfaces/ecpg/include/decimal.h
index 80cef55d1e133ff3a105450f8d3331504a4122ab..9944f052e33cbcd6fefea8a8449e2c5ae2bf8394 100644
--- a/src/interfaces/ecpg/include/decimal.h
+++ b/src/interfaces/ecpg/include/decimal.h
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/include/decimal.h,v 1.14 2006/03/11 04:38:39 momjian Exp $ */
+
 #ifndef _ECPG_DECIMAL_H
 #define _ECPG_DECIMAL_H
 
diff --git a/src/interfaces/ecpg/include/ecpg_informix.h b/src/interfaces/ecpg/include/ecpg_informix.h
index 6b0b4926423391cd7a1293a2f06f400ebf8a2ac3..4441c56b335c566f4c77bb13e1a4bdc57b035292 100644
--- a/src/interfaces/ecpg/include/ecpg_informix.h
+++ b/src/interfaces/ecpg/include/ecpg_informix.h
@@ -1,5 +1,6 @@
 /*
  * This file contains stuff needed to be as compatible to Informix as possible.
+ * $PostgreSQL: pgsql/src/interfaces/ecpg/include/ecpg_informix.h,v 1.18 2006/03/11 04:38:39 momjian Exp $
  */
 #ifndef _ECPG_INFORMIX_H
 #define _ECPG_INFORMIX_H
diff --git a/src/interfaces/ecpg/include/ecpgerrno.h b/src/interfaces/ecpg/include/ecpgerrno.h
index 87a30ef6ca78b3e3e11ee12a150df7f67a27c4eb..9b5adb9981ef4cdde46062bb23109a6d67f1fa4e 100644
--- a/src/interfaces/ecpg/include/ecpgerrno.h
+++ b/src/interfaces/ecpg/include/ecpgerrno.h
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/include/ecpgerrno.h,v 1.27 2006/03/11 04:38:39 momjian Exp $ */
+
 #ifndef _ECPG_ERRNO_H
 #define _ECPG_ERRNO_H
 
diff --git a/src/interfaces/ecpg/include/ecpglib.h b/src/interfaces/ecpg/include/ecpglib.h
index 326c2051592bb3247446bbc6dcaf8f79b5970712..981aabefa73a38250c3af4adee5fab1f4c01b2c6 100644
--- a/src/interfaces/ecpg/include/ecpglib.h
+++ b/src/interfaces/ecpg/include/ecpglib.h
@@ -1,6 +1,7 @@
 /*
  * this is a small part of c.h since we don't want to leak all postgres
  * definitions into ecpg programs
+ * $PostgreSQL: pgsql/src/interfaces/ecpg/include/ecpglib.h,v 1.66 2006/03/11 04:38:39 momjian Exp $
  */
 
 #ifndef _ECPGLIB_H
diff --git a/src/interfaces/ecpg/include/ecpgtype.h b/src/interfaces/ecpg/include/ecpgtype.h
index 6f521718a3acdc509899823f3728eecf2f4df8a3..d7b8cce89a1432c46f3238e1b5f4e40abfa57bbe 100644
--- a/src/interfaces/ecpg/include/ecpgtype.h
+++ b/src/interfaces/ecpg/include/ecpgtype.h
@@ -4,6 +4,8 @@
  *
  * All types that can be handled for host variable declarations has to
  * be handled eventually.
+ *
+ * $PostgreSQL: pgsql/src/interfaces/ecpg/include/ecpgtype.h,v 1.36 2006/03/11 04:38:39 momjian Exp $
  */
 
 /*
diff --git a/src/interfaces/ecpg/include/pgtypes_date.h b/src/interfaces/ecpg/include/pgtypes_date.h
index 8a98c710d92a8fed7be46c2bc2f2c7b5c17f1250..10fe53c8c8c4055fee996cd1b776ca54ca65100c 100644
--- a/src/interfaces/ecpg/include/pgtypes_date.h
+++ b/src/interfaces/ecpg/include/pgtypes_date.h
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/include/pgtypes_date.h,v 1.9 2006/03/11 04:38:39 momjian Exp $ */
+
 #ifndef PGTYPES_DATETIME
 #define PGTYPES_DATETIME
 
diff --git a/src/interfaces/ecpg/include/pgtypes_error.h b/src/interfaces/ecpg/include/pgtypes_error.h
index 4a1008adc333aaa23a37f038431cc7dfd97e788b..ad0824f0fd14ec63d9cb0ae743f34c6c005412de 100644
--- a/src/interfaces/ecpg/include/pgtypes_error.h
+++ b/src/interfaces/ecpg/include/pgtypes_error.h
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/include/pgtypes_error.h,v 1.7 2006/03/11 04:38:39 momjian Exp $ */
+
 #define PGTYPES_NUM_OVERFLOW		301
 #define PGTYPES_NUM_BAD_NUMERIC		302
 #define PGTYPES_NUM_DIVIDE_ZERO		303
diff --git a/src/interfaces/ecpg/include/pgtypes_interval.h b/src/interfaces/ecpg/include/pgtypes_interval.h
index 2abaf60b1dbd1f487ed5a700e348611cf48406ff..222f160fc3fc4bc1f4ce7b836a1b28f6483c77b9 100644
--- a/src/interfaces/ecpg/include/pgtypes_interval.h
+++ b/src/interfaces/ecpg/include/pgtypes_interval.h
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/include/pgtypes_interval.h,v 1.9 2006/03/11 04:38:39 momjian Exp $ */
+
 #ifndef PGTYPES_INTERVAL
 #define PGTYPES_INTERVAL
 
diff --git a/src/interfaces/ecpg/include/pgtypes_numeric.h b/src/interfaces/ecpg/include/pgtypes_numeric.h
index 51b70a529bf381a36227d0ffa24cff40cfe3589a..ac069232f1030b82713dc1f5cc965bc2c53baad6 100644
--- a/src/interfaces/ecpg/include/pgtypes_numeric.h
+++ b/src/interfaces/ecpg/include/pgtypes_numeric.h
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/include/pgtypes_numeric.h,v 1.15 2006/03/11 04:38:39 momjian Exp $ */
+
 #ifndef PGTYPES_NUMERIC
 #define PGTYPES_NUMERIC
 
diff --git a/src/interfaces/ecpg/include/pgtypes_timestamp.h b/src/interfaces/ecpg/include/pgtypes_timestamp.h
index 3965fa48bd03c51c60d4f945b7429d23d2ada736..5644b9eae70fe02f22668e930f6cd34152ca3010 100644
--- a/src/interfaces/ecpg/include/pgtypes_timestamp.h
+++ b/src/interfaces/ecpg/include/pgtypes_timestamp.h
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/include/pgtypes_timestamp.h,v 1.10 2006/03/11 04:38:39 momjian Exp $ */
+
 #ifndef PGTYPES_TIMESTAMP
 #define PGTYPES_TIMESTAMP
 
diff --git a/src/interfaces/ecpg/pgtypeslib/datetime.c b/src/interfaces/ecpg/pgtypeslib/datetime.c
index bf636ba2405a17f17af2ff6c29f2e82fa355b371..2f933297c2f19ad7de7219dc310d2ee4278388e6 100644
--- a/src/interfaces/ecpg/pgtypeslib/datetime.c
+++ b/src/interfaces/ecpg/pgtypeslib/datetime.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/datetime.c,v 1.27 2006/03/11 04:38:39 momjian Exp $ */
+
 #include "postgres_fe.h"
 
 #include <time.h>
diff --git a/src/interfaces/ecpg/pgtypeslib/dt.h b/src/interfaces/ecpg/pgtypeslib/dt.h
index f8eefa93f4570e82f146e01c5ae7341bad3db330..95793aabc304e914fd6130a16079ed845f6743a1 100644
--- a/src/interfaces/ecpg/pgtypeslib/dt.h
+++ b/src/interfaces/ecpg/pgtypeslib/dt.h
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/dt.h,v 1.34 2006/03/11 04:38:39 momjian Exp $ */
+
 #ifndef DT_H
 #define DT_H
 
diff --git a/src/interfaces/ecpg/pgtypeslib/dt_common.c b/src/interfaces/ecpg/pgtypeslib/dt_common.c
index dc3f55c66651f7239513025fa0f82cc03c2f8a52..2d69e3ce571b11a7771b903b71303335ebbf0691 100644
--- a/src/interfaces/ecpg/pgtypeslib/dt_common.c
+++ b/src/interfaces/ecpg/pgtypeslib/dt_common.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/dt_common.c,v 1.34 2006/03/11 04:38:39 momjian Exp $ */
+
 #include "postgres_fe.h"
 
 #include <time.h>
diff --git a/src/interfaces/ecpg/pgtypeslib/extern.h b/src/interfaces/ecpg/pgtypeslib/extern.h
index 689a3e89550767f471e7a262d8c4e8765831ca1d..86f6768299d897391e7a084572648a6a4b6f93a8 100644
--- a/src/interfaces/ecpg/pgtypeslib/extern.h
+++ b/src/interfaces/ecpg/pgtypeslib/extern.h
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/extern.h,v 1.8 2006/03/11 04:38:39 momjian Exp $ */
+
 #ifndef __PGTYPES_COMMON_H__
 #define __PGTYPES_COMMON_H__
 
diff --git a/src/interfaces/ecpg/pgtypeslib/interval.c b/src/interfaces/ecpg/pgtypeslib/interval.c
index fd915bb3ddd19efb2ce9c7fb3c6b70ef47c192a1..32de6adc232cd0b3c574a14fddfd097a20ab967b 100644
--- a/src/interfaces/ecpg/pgtypeslib/interval.c
+++ b/src/interfaces/ecpg/pgtypeslib/interval.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/interval.c,v 1.31 2006/03/11 04:38:39 momjian Exp $ */
+
 #include "postgres_fe.h"
 #include <time.h>
 #include <math.h>
diff --git a/src/interfaces/ecpg/pgtypeslib/numeric.c b/src/interfaces/ecpg/pgtypeslib/numeric.c
index 8ba0a093ecb9b89a643693c7fdf36e655bb0dc23..c35fe9e3a18eecc1a28caa5e656283b9e8e50b04 100644
--- a/src/interfaces/ecpg/pgtypeslib/numeric.c
+++ b/src/interfaces/ecpg/pgtypeslib/numeric.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/numeric.c,v 1.25 2006/03/11 04:38:40 momjian Exp $ */
+
 #include "postgres_fe.h"
 #include <ctype.h>
 #include <limits.h>
diff --git a/src/interfaces/ecpg/preproc/descriptor.c b/src/interfaces/ecpg/preproc/descriptor.c
index a89eec2780ff64a43accd0299a74068e651619bf..f81d3c330c46b09068e0741e0f572be54b631483 100644
--- a/src/interfaces/ecpg/preproc/descriptor.c
+++ b/src/interfaces/ecpg/preproc/descriptor.c
@@ -1,6 +1,8 @@
 /*
  * functions needed for descriptor handling
  *
+ * $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/descriptor.c,v 1.24 2006/03/11 04:38:40 momjian Exp $
+ *
  * since descriptor might be either a string constant or a string var
  * we need to check for a constant if we expect a constant
  */
diff --git a/src/interfaces/ecpg/preproc/extern.h b/src/interfaces/ecpg/preproc/extern.h
index 06cc74f204073d9c661c9e56346a7d6e2af8bb3e..3581b35e3e1a10c784562936268a1416754a4af1 100644
--- a/src/interfaces/ecpg/preproc/extern.h
+++ b/src/interfaces/ecpg/preproc/extern.h
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/extern.h,v 1.63 2006/03/11 04:38:40 momjian Exp $ */
+
 #ifndef _ECPG_PREPROC_EXTERN_H
 #define _ECPG_PREPROC_EXTERN_H
 
diff --git a/src/interfaces/ecpg/preproc/output.c b/src/interfaces/ecpg/preproc/output.c
index 06531e976dbaf690d5e3eb4d51dc908538a2a460..e251d7e1459a6951b8caa70f6bf23a27312e4f99 100644
--- a/src/interfaces/ecpg/preproc/output.c
+++ b/src/interfaces/ecpg/preproc/output.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/output.c,v 1.17 2006/03/11 04:38:40 momjian Exp $ */
+
 #include "postgres_fe.h"
 
 #include "extern.h"
diff --git a/src/interfaces/ecpg/test/dt_test.pgc b/src/interfaces/ecpg/test/dt_test.pgc
index cdd257f7fb70bc58ddad0cd655746e8afdf32713..b642d3c1a57b75f2f179abbd3d6be1a6dfc3ea09 100644
--- a/src/interfaces/ecpg/test/dt_test.pgc
+++ b/src/interfaces/ecpg/test/dt_test.pgc
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/test/dt_test.pgc,v 1.9 2006/03/11 04:38:40 momjian Exp $ */
+
 #include <stdio.h>
 #include <string.h>
 #include <stdlib.h>
diff --git a/src/interfaces/ecpg/test/header_test.h b/src/interfaces/ecpg/test/header_test.h
index aacc8ba7cec4452ff19dfd6d75365f924490620e..0f8527ec6d5128913267fa549cdec64593c28688 100644
--- a/src/interfaces/ecpg/test/header_test.h
+++ b/src/interfaces/ecpg/test/header_test.h
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/test/header_test.h,v 1.12 2006/03/11 04:38:40 momjian Exp $ */
+
 #include "stdlib.h"
 
 static void
diff --git a/src/interfaces/ecpg/test/num_test.pgc b/src/interfaces/ecpg/test/num_test.pgc
index f3991ccc8a22f6c21b962b087a6e8c199b90f8c5..030d2dcfda92b0a011c3639ccd63446664e9473c 100644
--- a/src/interfaces/ecpg/test/num_test.pgc
+++ b/src/interfaces/ecpg/test/num_test.pgc
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/test/num_test.pgc,v 1.11 2006/03/11 04:38:40 momjian Exp $ */
+
 #include <stdio.h>
 #include <pgtypes_numeric.h>
 #include <decimal.h>
diff --git a/src/interfaces/ecpg/test/perftest.pgc b/src/interfaces/ecpg/test/perftest.pgc
index 7fb22588c87d3a6e17b4b26d29ef6e28a233c9a8..1ff59d60a4d9afa2fd0b47a29c39ed377fd00642 100644
--- a/src/interfaces/ecpg/test/perftest.pgc
+++ b/src/interfaces/ecpg/test/perftest.pgc
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/test/perftest.pgc,v 1.11 2006/03/11 04:38:40 momjian Exp $ */
+
 #include <stdio.h>
 #include <sys/time.h>
 #include <unistd.h>
diff --git a/src/interfaces/libpq/libpqdll.c b/src/interfaces/libpq/libpqdll.c
index f145d3e0e4e470370e3b7f369356e421ca683d19..231b6a0e9b67056580370edcdc7e4fae470c9c1e 100644
--- a/src/interfaces/libpq/libpqdll.c
+++ b/src/interfaces/libpq/libpqdll.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/interfaces/libpq/libpqdll.c,v 1.10 2006/03/11 04:38:40 momjian Exp $ */
+
 #define WIN32_LEAN_AND_MEAN
 #include <winsock.h>
 #include <windows.h>
diff --git a/src/pl/tcl/modules/pltcl_delmod.in b/src/pl/tcl/modules/pltcl_delmod.in
index e65a6742e341d432d58a555cb630a38fd4929dd5..4f0280f511e0f453ff74d61e4c720105c21784a5 100644
--- a/src/pl/tcl/modules/pltcl_delmod.in
+++ b/src/pl/tcl/modules/pltcl_delmod.in
@@ -1,4 +1,6 @@
 #! /bin/sh
+# $PostgreSQL: pgsql/src/pl/tcl/modules/pltcl_delmod.in,v 1.3 2006/03/11 04:38:40 momjian Exp $
+#
 # Start tclsh \
 exec @TCLSH@ "$0" "$@"
 
diff --git a/src/pl/tcl/modules/pltcl_listmod.in b/src/pl/tcl/modules/pltcl_listmod.in
index dbb93db73b53314ad83d37bb9046c56b897f5fc5..eb27a864e96bcdaf4d6c28e013440d6a55bd4025 100644
--- a/src/pl/tcl/modules/pltcl_listmod.in
+++ b/src/pl/tcl/modules/pltcl_listmod.in
@@ -1,4 +1,6 @@
 #! /bin/sh
+# $PostgreSQL: pgsql/src/pl/tcl/modules/pltcl_listmod.in,v 1.3 2006/03/11 04:38:40 momjian Exp $
+#
 # Start tclsh \
 exec @TCLSH@ "$0" "$@"
 
diff --git a/src/port/crypt.c b/src/port/crypt.c
index d3c01d2f38a6bb71b227e0207b4f7ed5b8b38093..7139ecf3d136eec15b16e3ab87bebc005648a2f3 100644
--- a/src/port/crypt.c
+++ b/src/port/crypt.c
@@ -1,3 +1,4 @@
+/* $PostgreSQL: pgsql/src/port/crypt.c,v 1.15 2006/03/11 04:38:40 momjian Exp $ */
 /*	$NetBSD: crypt.c,v 1.18 2001/03/01 14:37:35 wiz Exp $	*/
 
 /*
diff --git a/src/port/getopt.c b/src/port/getopt.c
index 28a0d0a476483f0f7d953024306e3b75f59d3323..1665aab63848b96c60fe7c72b348cbb725a4691f 100644
--- a/src/port/getopt.c
+++ b/src/port/getopt.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/port/getopt.c,v 1.10 2006/03/11 04:38:40 momjian Exp $ */
+
 /* This is used by psql under Win32 */
 
 /*
diff --git a/src/template/cygwin b/src/template/cygwin
index e649d88c1b797f835cce3c9b7cf6bdd37aa7b67e..276fa8081d4fcc449940dfa1ed0492db46e59d6f 100644
--- a/src/template/cygwin
+++ b/src/template/cygwin
@@ -1,3 +1,5 @@
+# $PostgreSQL: pgsql/src/template/cygwin,v 1.7 2006/03/11 04:38:40 momjian Exp $
+
 SRCH_LIB="/usr/local/lib"
 
 # This is required to link pg_dump because it finds pg_toupper() in
diff --git a/src/template/darwin b/src/template/darwin
index baf462baf629e77860bbd068214fee4b5557856e..cb9afb20f3b54721266c6ce5ad15c6c36d7cb2dc 100644
--- a/src/template/darwin
+++ b/src/template/darwin
@@ -1,3 +1,5 @@
+# $PostgreSQL: pgsql/src/template/darwin,v 1.10 2006/03/11 04:38:40 momjian Exp $
+
 # Apple's cpp-precomp seems a tad broken, so don't use it
 # (Note: on OS X before 10.2, you might need -traditional-cpp instead)
 CC="$CC -no-cpp-precomp"
diff --git a/src/template/dgux b/src/template/dgux
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..43a19c6c2c1c55208e451771fa4c269faa886ef8 100644
--- a/src/template/dgux
+++ b/src/template/dgux
@@ -0,0 +1,3 @@
+# $PostgreSQL: pgsql/src/template/dgux,v 1.12 2006/03/11 04:38:40 momjian Exp $
+
+
diff --git a/src/template/freebsd b/src/template/freebsd
index 718359e07c66d9f450745d9fb505ed4544c8f90e..72a1e0cd6ee4d028533a19cbff5f8df001e0e076 100644
--- a/src/template/freebsd
+++ b/src/template/freebsd
@@ -1,3 +1,5 @@
+# $PostgreSQL: pgsql/src/template/freebsd,v 1.35 2006/03/11 04:38:41 momjian Exp $
+
 case $host_cpu in
   alpha*)   CFLAGS="-O";;  # alpha has problems with -O2
 esac
diff --git a/src/template/hpux b/src/template/hpux
index 775c55a935361b4a5745b5b77d32490877683942..d8b5529b87add3d279a3b7e162595fe760b7b809 100644
--- a/src/template/hpux
+++ b/src/template/hpux
@@ -1,3 +1,5 @@
+# $PostgreSQL: pgsql/src/template/hpux,v 1.15 2006/03/11 04:38:41 momjian Exp $
+
 CPPFLAGS="-D_XOPEN_SOURCE_EXTENDED"
 
 if test "$GCC" != yes ; then
diff --git a/src/template/linux b/src/template/linux
index dfb391ea54279f8476b82cf907a7f19d845fc0d6..6293e6a03a22af2b81443997419ecb2ba8bf4510 100644
--- a/src/template/linux
+++ b/src/template/linux
@@ -1,2 +1,4 @@
+# $PostgreSQL: pgsql/src/template/linux,v 1.28 2006/03/11 04:38:41 momjian Exp $
+
 # Force _GNU_SOURCE on; plperl is broken with Perl 5.8.0 otherwise
 CPPFLAGS="-D_GNU_SOURCE"
diff --git a/src/template/netbsd b/src/template/netbsd
index c45260ca136a543cdbfe65c35694601678e45f6c..6e0ff48860df600cad582302ede033803322b86b 100644
--- a/src/template/netbsd
+++ b/src/template/netbsd
@@ -1,2 +1,3 @@
+# $PostgreSQL: pgsql/src/template/netbsd,v 1.20 2006/03/11 04:38:41 momjian Exp $
 # tools/thread/thread_test must be run
 
diff --git a/src/template/nextstep b/src/template/nextstep
index d6b3c35e6cb53b86880d0f9ed64536a59d43404b..68b8ac58ab35969c0f5a8db0d81b3c08aab54d29 100644
--- a/src/template/nextstep
+++ b/src/template/nextstep
@@ -1,3 +1,5 @@
+# $PostgreSQL: pgsql/src/template/nextstep,v 1.9 2006/03/11 04:38:41 momjian Exp $
+
 AROPT=rc
 SHARED_LIB=
 DLSUFFIX=.o
diff --git a/src/template/osf b/src/template/osf
index e845cfecea8dd668a39177a0811f4491ff8e1886..d558389e8de1acedfefcbe67cc4eba7822834f8b 100644
--- a/src/template/osf
+++ b/src/template/osf
@@ -1,3 +1,5 @@
+# $PostgreSQL: pgsql/src/template/osf,v 1.20 2006/03/11 04:38:41 momjian Exp $
+
 if test "$GCC" != yes ; then
   CC="$CC -std"
   CFLAGS="-O -ieee"
diff --git a/src/test/bench/perquery b/src/test/bench/perquery
index e6f5c43c304756ced31727f162eb05a7c68b0c3c..09a1e757c17af78f0ec52a862ed8fbdb6ff0bf8f 100644
--- a/src/test/bench/perquery
+++ b/src/test/bench/perquery
@@ -1,5 +1,7 @@
 #!/bin/sh
 
+# $PostgreSQL: pgsql/src/test/bench/perquery,v 1.3 2006/03/11 04:38:41 momjian Exp $
+
 egrep 'x = "|elapse' | \
 awk 'BEGIN { x = 0; y = 0; z = 0; a = 0; } \
      /.*elapse.*/ {x = $2 + x; y = $4 + y; z = $6 + z;} \
diff --git a/src/test/performance/sqls/inssimple b/src/test/performance/sqls/inssimple
index 5e95a0489d8c43d708db54b778e5f5e190d9d690..ed07fe4a073f2c2f1caa22c424f7278596b1f89a 100644
--- a/src/test/performance/sqls/inssimple
+++ b/src/test/performance/sqls/inssimple
@@ -1,4 +1,5 @@
 
+# $PostgreSQL: pgsql/src/test/performance/sqls/inssimple,v 1.2 2006/03/11 04:38:41 momjian Exp $
 #
 # Transactions are unsupported by MySQL - so for insertion of
 # 8192 rows, 1 INSERT per Xaction, we returned "Transactions unsupported"
diff --git a/src/test/regress/parallel_schedule b/src/test/regress/parallel_schedule
index fef609711b2df346269e3f56286733eeca3a99b2..85a1bbe9f34a5495bd2d70b80bd1523aceb5c873 100644
--- a/src/test/regress/parallel_schedule
+++ b/src/test/regress/parallel_schedule
@@ -1,5 +1,6 @@
 # ----------
 # The first group of parallel test
+# $PostgreSQL: pgsql/src/test/regress/parallel_schedule,v 1.32 2006/03/11 04:38:41 momjian Exp $
 # ----------
 test: boolean char name varchar text int2 int4 int8 oid float4 float8 bit numeric
 
diff --git a/src/timezone/data/etcetera b/src/timezone/data/etcetera
index 431206ec3d209256f6e4d2870ce8c29231880bf6..0c344a34a9e7ada7ebe9d055b881a0547f984670 100644
--- a/src/timezone/data/etcetera
+++ b/src/timezone/data/etcetera
@@ -1,5 +1,7 @@
 # @(#)etcetera	7.12
 
+# $PostgreSQL: pgsql/src/timezone/data/etcetera,v 1.3 2006/03/11 04:38:41 momjian Exp $
+#
 # These entries are mostly present for historical reasons, so that
 # people in areas not otherwise covered by the tz files could "zic -l"
 # to a time zone that was right for their area.  These days, the
diff --git a/src/timezone/data/europe b/src/timezone/data/europe
index ec6720a804114f7242aa630de6ac360a5c0aefb2..10f783b752cfe5a86e917e7bc87c74319d716791 100644
--- a/src/timezone/data/europe
+++ b/src/timezone/data/europe
@@ -1,5 +1,7 @@
 # @(#)europe	7.95
 
+# $PostgreSQL: pgsql/src/timezone/data/europe,v 1.4 2006/03/11 04:38:41 momjian Exp $
+#
 # This data is by no means authoritative; if you think you know better,
 # go ahead and edit the file (and please send any changes to
 # tz@elsie.nci.nih.gov for general use in the future).
diff --git a/src/timezone/data/factory b/src/timezone/data/factory
index ba27c63269400d29e2f339e21784ec8d47bd88f8..e0ea3aec52aec93abdd1a000aae860a6bc111a57 100644
--- a/src/timezone/data/factory
+++ b/src/timezone/data/factory
@@ -1,5 +1,7 @@
 # @(#)factory	7.3
 
+# $PostgreSQL: pgsql/src/timezone/data/factory,v 1.2 2006/03/11 04:38:41 momjian Exp $
+
 # For companies who don't want to put time zone specification in
 # their installation procedures.  When users run date, they'll get the message.
 # Also useful for the "comp.sources" version.
diff --git a/src/timezone/data/iso3166.tab b/src/timezone/data/iso3166.tab
index 07b43fc7c4bd63c4b89d5940a0fb36dfcc1f4cb5..f4d06d5e1871fde60cab3b182b497c4eacca859a 100644
--- a/src/timezone/data/iso3166.tab
+++ b/src/timezone/data/iso3166.tab
@@ -1,5 +1,7 @@
 # ISO 3166 alpha-2 country codes
 #
+# $PostgreSQL: pgsql/src/timezone/data/iso3166.tab,v 1.4 2006/03/11 04:38:41 momjian Exp $
+#
 # @(#)iso3166.tab	1.17
 #
 # From Paul Eggert (2004-06-14):
diff --git a/src/timezone/data/leapseconds b/src/timezone/data/leapseconds
index a1078837d7f859fe5ce3e4394a4394052bc0d8b7..a21772d0db5aad344ecf12a2d8417e84da46789c 100644
--- a/src/timezone/data/leapseconds
+++ b/src/timezone/data/leapseconds
@@ -2,6 +2,8 @@
 
 # Allowance for leapseconds added to each timezone file.
 
+# $PostgreSQL: pgsql/src/timezone/data/leapseconds,v 1.4 2006/03/11 04:38:41 momjian Exp $
+
 # The International Earth Rotation Service periodically uses leap seconds
 # to keep UTC to within 0.9 s of UT1
 # (which measures the true angular orientation of the earth in space); see
diff --git a/src/tools/backend/index.html b/src/tools/backend/index.html
index db53174465316e585ebfa156cff1e7a6876dc5e9..f6ea48b7ab46eb5e721ff91c49e2147bfd5749a2 100644
--- a/src/tools/backend/index.html
+++ b/src/tools/backend/index.html
@@ -1,3 +1,4 @@
+<!-- $PostgreSQL: pgsql/src/tools/backend/index.html,v 1.35 2006/03/11 04:38:41 momjian Exp $ -->
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml">
diff --git a/src/tools/ccsym b/src/tools/ccsym
index acac603e58a948174b15198781a365dd19e994bc..a90550abde16bccaf2bfccc1d59ca5e895c0133a 100755
--- a/src/tools/ccsym
+++ b/src/tools/ccsym
@@ -1,4 +1,7 @@
 #!/bin/sh
+
+# $PostgreSQL: pgsql/src/tools/ccsym,v 1.7 2006/03/11 04:38:41 momjian Exp $
+
 trap "rm -f /tmp/$$.*" 0 1 2 3 15
 cd /tmp
 cat >$$.c <<EOF
diff --git a/src/tools/codelines b/src/tools/codelines
index c72cab442f542cca503cbc6573da3122b430b3a9..6455e83e0a45c1be7ae71aa405a0596fec2c6f45 100755
--- a/src/tools/codelines
+++ b/src/tools/codelines
@@ -1,4 +1,6 @@
-:
+#!/bin/sh
+
+# $PostgreSQL: pgsql/src/tools/codelines,v 1.3 2006/03/11 04:38:41 momjian Exp $
 
 # This script is used to compute the total number of "C" lines in the release
 # This should be run from the top of the CVS tree after a 'make distclean'
diff --git a/src/tools/copyright b/src/tools/copyright
index b848289118cb2656146e52373d77495693b5bcda..2da2ffe5b831c66e0f6dee9de58967a58b3bcae4 100755
--- a/src/tools/copyright
+++ b/src/tools/copyright
@@ -1,3 +1,7 @@
+#!/bin/sh
+
+# $PostgreSQL: pgsql/src/tools/copyright,v 1.11 2006/03/11 04:38:41 momjian Exp $
+
 rgrep -l 'Copyright.*PostgreSQL Global Development Group' | while read FILE
 do
 	pipe sed 's/^\(.*Copyright (c) [12][0-9][0-9][0-9]-\)[12][0-9][0-9][0-9]\(, PostgreSQL Global Development Group.*\)$/\12006\2/' $FILE
diff --git a/src/tools/entab/entab.c b/src/tools/entab/entab.c
index 455c4deba2fbf42fc58acf90920e6d7040ad04bb..e620f981dd37056e1c6a55d916c18df59d9c0a95 100644
--- a/src/tools/entab/entab.c
+++ b/src/tools/entab/entab.c
@@ -2,6 +2,8 @@
 **		entab.c			- add tabs to a text file
 **		by Bruce Momjian (root@candle.pha.pa.us)
 **
+** $PostgreSQL: pgsql/src/tools/entab/entab.c,v 1.16 2006/03/11 04:38:41 momjian Exp $
+**
 **	version 1.3
 **
 **		tabsize = 4
diff --git a/src/tools/entab/entab.man b/src/tools/entab/entab.man
index c6c2e7b4f474ebb35b0678ce3f90d860a282e24e..a90ab4a2f7463a29e8dce6ff313ae19787d4f0cd 100644
--- a/src/tools/entab/entab.man
+++ b/src/tools/entab/entab.man
@@ -1,3 +1,4 @@
+.\" $PostgreSQL: pgsql/src/tools/entab/entab.man,v 1.2 2006/03/11 04:38:41 momjian Exp $
 .TH ENTAB 1 local
 .SH NAME
 entab - tab processor
diff --git a/src/tools/entab/halt.c b/src/tools/entab/halt.c
index d39c9cc3392a62b95c15d86260e266810dfa4ddf..20a40231eaf7da9e61c50788cd4b46065b2b39dd 100644
--- a/src/tools/entab/halt.c
+++ b/src/tools/entab/halt.c
@@ -2,6 +2,8 @@
 **
 **		halt.c
 **
+** $PostgreSQL: pgsql/src/tools/entab/halt.c,v 1.9 2006/03/11 04:38:41 momjian Exp $
+**
 **		This is used to print out error messages and exit
 */
 
diff --git a/src/tools/find_badmacros b/src/tools/find_badmacros
index 8a12b59becf14fa8f622c8fd23ef4084a4ab9c84..f58e213c9d4b8735aacdd92bed87b9a22754cc80 100755
--- a/src/tools/find_badmacros
+++ b/src/tools/find_badmacros
@@ -1,7 +1,10 @@
 #!/bin/sh
+
 # This script attempts to find bad ifdef's, i.e. ifdef's that use braces
 # but not the do { ... } while (0) syntax
 #
+# $PostgreSQL: pgsql/src/tools/find_badmacros,v 1.2 2006/03/11 04:38:41 momjian Exp $
+#
 # This is useful for running before pgindent
 
 for FILE
diff --git a/src/tools/find_gt_lt b/src/tools/find_gt_lt
index 66919dd7ae36a3a41adb7a3d79e6216f7393ce27..3dca3a6bfdc06119c535797449e0a172a034e94a 100755
--- a/src/tools/find_gt_lt
+++ b/src/tools/find_gt_lt
@@ -1,2 +1,6 @@
+#!/bin/sh
+
+# $PostgreSQL: pgsql/src/tools/find_gt_lt,v 1.2 2006/03/11 04:38:41 momjian Exp $
+
 grep  '[^]a-z0-9"/!-]>' *.sgml ref/*.sgml
 grep  '<[^]a-z0-9"/!-]' *.sgml ref/*.sgml
diff --git a/src/tools/find_static b/src/tools/find_static
index f2b10e7a863e7bbaa0399ada76942dde6d60d9bb..90a98ac3ab8d9ccec55e242196d7dded2a5367de 100755
--- a/src/tools/find_static
+++ b/src/tools/find_static
@@ -1,4 +1,7 @@
 #!/bin/sh
+
+# $PostgreSQL: pgsql/src/tools/find_static,v 1.4 2006/03/11 04:38:41 momjian Exp $
+
 trap "rm -f /tmp/$$" 0 1 2 3 15
 
 # This script finds functions that are either never called, or
diff --git a/src/tools/find_typedef b/src/tools/find_typedef
index ff575fefa55483841fddc9ac77981cb3b32afb13..2a56dcd4882bc6f624f7fc54f23094c40879ba70 100755
--- a/src/tools/find_typedef
+++ b/src/tools/find_typedef
@@ -1,4 +1,7 @@
 #!/bin/sh
+
+# $PostgreSQL: pgsql/src/tools/find_typedef,v 1.6 2006/03/11 04:38:41 momjian Exp $
+
 # This script attempts to find all typedef's in the postgres binaries
 # by using 'nm' to report all typedef debugging symbols.
 # 
diff --git a/src/tools/findoidjoins/make_oidjoins_check b/src/tools/findoidjoins/make_oidjoins_check
index b6a720a504861e6bf3c9ce9c548d7c1bd85791de..3bba1f8d96c52afce3652c0bb37be3b1ec2db6b2 100755
--- a/src/tools/findoidjoins/make_oidjoins_check
+++ b/src/tools/findoidjoins/make_oidjoins_check
@@ -1,5 +1,7 @@
 #! /bin/sh
 
+# $PostgreSQL: pgsql/src/tools/findoidjoins/make_oidjoins_check,v 1.2 2006/03/11 04:38:42 momjian Exp $
+
 # You first run findoidjoins on the template1 database, and send that
 # output into this script to generate a list of SQL statements.
 
diff --git a/src/tools/make_ctags b/src/tools/make_ctags
index 7f7c8f55eefbe12284e1684e84517972c89b9fed..4deb97f3a8556f58f61a5c336a09df421d84d9e1 100755
--- a/src/tools/make_ctags
+++ b/src/tools/make_ctags
@@ -1,4 +1,7 @@
 #!/bin/sh
+
+# $PostgreSQL: pgsql/src/tools/make_ctags,v 1.11 2006/03/11 04:38:41 momjian Exp $
+
 trap "rm -f /tmp/$$" 0 1 2 3 15
 rm -f ./tags
 
diff --git a/src/tools/make_diff/README b/src/tools/make_diff/README
index c287133a00464779e1508b7ef82721b265c5655b..2d66b36ddbd10a3ce4b06f14c8642f757d2eec0b 100644
--- a/src/tools/make_diff/README
+++ b/src/tools/make_diff/README
@@ -1,3 +1,5 @@
+$PostgreSQL: pgsql/src/tools/make_diff/README,v 1.3 2006/03/11 04:38:42 momjian Exp $
+
 Bruce Momjian <pgman@candle.pha.pa.us>
 
 Here are some of the scripts I use to make development easier.
diff --git a/src/tools/make_diff/cporig b/src/tools/make_diff/cporig
index 0b188ac3e5f739dda0a0d99bbd53e4c0e9ae44d4..a4f2f24d63284385921a42a3235ed44d3beabe49 100755
--- a/src/tools/make_diff/cporig
+++ b/src/tools/make_diff/cporig
@@ -1,4 +1,7 @@
-:
+#!/bin/sh
+
+# $PostgreSQL: pgsql/src/tools/make_diff/cporig,v 1.2 2006/03/11 04:38:42 momjian Exp $
+
 for FILE
 do
 	if [ ! -f "$FILE.orig" ]
diff --git a/src/tools/make_diff/difforig b/src/tools/make_diff/difforig
index a70b8bed4e92fc6432914ba20ed128bd4d106edf..a65d7b5dbaa77f9916f1ada10436a2cb80aec532 100755
--- a/src/tools/make_diff/difforig
+++ b/src/tools/make_diff/difforig
@@ -1,4 +1,7 @@
-:
+#!/bin/sh
+
+# $PostgreSQL: pgsql/src/tools/make_diff/difforig,v 1.2 2006/03/11 04:38:42 momjian Exp $
+
 if [ "$#" -eq 0 ]
 then	APATH="."
 else	APATH="$1"
diff --git a/src/tools/make_diff/rmorig b/src/tools/make_diff/rmorig
index f6d0d4eff689852c05f39c0c0de9cb5171dbd27c..5d405d0504ef2768161911544d2a22a50788618c 100755
--- a/src/tools/make_diff/rmorig
+++ b/src/tools/make_diff/rmorig
@@ -1,4 +1,7 @@
-:
+#!/bin/sh
+
+# $PostgreSQL: pgsql/src/tools/make_diff/rmorig,v 1.2 2006/03/11 04:38:42 momjian Exp $
+
 if [ "$#" -eq 0 ]
 then	APATH="."
 else	APATH="$1"
diff --git a/src/tools/make_etags b/src/tools/make_etags
index e81bdb6f9a8df7eac33f0cd74342d62b9fb7a08a..f2db9f1758931391873fe16bacd0309494a364b2 100755
--- a/src/tools/make_etags
+++ b/src/tools/make_etags
@@ -1,4 +1,7 @@
 #!/bin/sh
+
+# $PostgreSQL: pgsql/src/tools/make_etags,v 1.3 2006/03/11 04:38:41 momjian Exp $
+
 trap "rm -f /tmp/$$" 0 1 2 3 15
 rm -f ./TAGS
 find `pwd`/ -type f -name '*.[chyl]' -print | \
diff --git a/src/tools/make_keywords b/src/tools/make_keywords
index dc1669512977a04cf79be08508cd5bed57b21bc5..4aba19eb0259b33ffc1e263a9f88a56edc3320de 100755
--- a/src/tools/make_keywords
+++ b/src/tools/make_keywords
@@ -1,5 +1,7 @@
 #!/bin/sh
 
+# $PostgreSQL: pgsql/src/tools/make_keywords,v 1.2 2006/03/11 04:38:41 momjian Exp $
+
 cat <<END
 To get a list of keywords compared to SQL'92, take the keywords out of
 backend/parser/keywords.c and tools/SQL_keywords.
diff --git a/src/tools/make_mkid b/src/tools/make_mkid
index ac71bd92b5badf2871547d550207efeb43422bd7..6938d9b4fdeb0a7e68c23b49c3c6fe0f52611f5f 100755
--- a/src/tools/make_mkid
+++ b/src/tools/make_mkid
@@ -1,5 +1,7 @@
 #!/bin/sh
 
+# $PostgreSQL: pgsql/src/tools/make_mkid,v 1.11 2006/03/11 04:38:41 momjian Exp $
+
 mkid `find \`pwd\`/ \( -name _deadcode -a -prune \) -o \
 	-type f -name '*.[chyl]' -print|sed 's;//;/;g'`
 
diff --git a/src/tools/pgcvslog b/src/tools/pgcvslog
index 3e3ca138571b8a45bfb21b7ddf1ee9ec315ded22..9eb52feb0bdf8dc0fdcaeddd4cd4f61e731f7dc1 100755
--- a/src/tools/pgcvslog
+++ b/src/tools/pgcvslog
@@ -1,4 +1,7 @@
-:
+#!/bin/sh
+
+# $PostgreSQL: pgsql/src/tools/pgcvslog,v 1.28 2006/03/11 04:38:41 momjian Exp $
+
 # This utility is used to generate a compact list of changes
 # for each release, bjm 2000-02-22
 
diff --git a/src/tools/pginclude/pgcompinclude b/src/tools/pginclude/pgcompinclude
index 4658d48b38b2972ff83538a2f5e9ce4975ccf625..65da6aed2843313e3f71b04616721f148acbb2dc 100755
--- a/src/tools/pginclude/pgcompinclude
+++ b/src/tools/pginclude/pgcompinclude
@@ -1,6 +1,7 @@
 :
 # report which #include files can not compile on their own
 # takes -v option to display compile failure message and line numbers
+# $PostgreSQL: pgsql/src/tools/pginclude/pgcompinclude,v 1.2 2006/03/11 04:38:42 momjian Exp $
 
 trap "rm -f /tmp/$$.c /tmp/$$.o /tmp/$$ /tmp/$$a" 0 1 2 3 15
 find . \( -name CVS -a -prune \) -o -name '*.[ch]' -type f -print | while read FILE
diff --git a/src/tools/pginclude/pgdefine b/src/tools/pginclude/pgdefine
index 953a29684a17a36425b09ce2ebbf7df3a8c9a1a1..41e71b452dc9f2973f64fd53c53cb29b68d01ced 100755
--- a/src/tools/pginclude/pgdefine
+++ b/src/tools/pginclude/pgdefine
@@ -1,6 +1,8 @@
 :
 # create macro calls for all defines in the file
 
+# $PostgreSQL: pgsql/src/tools/pginclude/pgdefine,v 1.3 2006/03/11 04:38:42 momjian Exp $
+
 trap "rm -f /tmp/$$" 0 1 2 3 15
 for FILE
 do
diff --git a/src/tools/pginclude/pgfixinclude b/src/tools/pginclude/pgfixinclude
index d76710a06247470a7a87756949e6b3182dcb6370..aa2a313722ad0090143ff8dc32c2f4dcf5f0028d 100755
--- a/src/tools/pginclude/pgfixinclude
+++ b/src/tools/pginclude/pgfixinclude
@@ -1,5 +1,6 @@
 :
 # change #include's to <> or ""
+# $PostgreSQL: pgsql/src/tools/pginclude/pgfixinclude,v 1.5 2006/03/11 04:38:42 momjian Exp $
 
 trap "rm -f /tmp/$$.c /tmp/$$.o /tmp/$$ /tmp/$$a /tmp/$$b" 0 1 2 3 15
 find . \( -name CVS -a -prune \) -o -type f -print |
diff --git a/src/tools/pginclude/pgrminclude b/src/tools/pginclude/pgrminclude
index 6504aad82a0d12a522ab93cf963bf71540b6eb1a..991bd9eec71d2aed0e190db803e85b206b65380a 100755
--- a/src/tools/pginclude/pgrminclude
+++ b/src/tools/pginclude/pgrminclude
@@ -1,6 +1,8 @@
 :
 # remove extra #include's
 
+# $PostgreSQL: pgsql/src/tools/pginclude/pgrminclude,v 1.4 2006/03/11 04:38:42 momjian Exp $
+
 trap "rm -f /tmp/$$.c /tmp/$$.o /tmp/$$ /tmp/$$a /tmp/$$b" 0 1 2 3 15
 find . \( -name CVS -a -prune \) -o -type f -print | 
 grep -v '\./postgres.h' |
diff --git a/src/tools/pgindent/indent.bsd.patch b/src/tools/pgindent/indent.bsd.patch
index bb1ba73f77212babb8f9641fee2fdd6b917b4995..095b65123d8ebabd4511d3788558499e76059209 100644
--- a/src/tools/pgindent/indent.bsd.patch
+++ b/src/tools/pgindent/indent.bsd.patch
@@ -1,3 +1,4 @@
+$PostgreSQL: pgsql/src/tools/pgindent/indent.bsd.patch,v 1.8 2006/03/11 04:38:42 momjian Exp $
 
 This patch contains several fixes to NetBSD's indent and should be
 applied before using pgindent.
diff --git a/src/tools/pgindent/pgcppindent b/src/tools/pgindent/pgcppindent
index ee27cf5295faf94a1cbfe71c10fe899a1ebcf798..e624efb0e47b8035a624a8ab571835144894b69b 100755
--- a/src/tools/pgindent/pgcppindent
+++ b/src/tools/pgindent/pgcppindent
@@ -1,5 +1,7 @@
 #!/bin/sh
 
+# $PostgreSQL: pgsql/src/tools/pgindent/pgcppindent,v 1.2 2006/03/11 04:38:42 momjian Exp $
+
 trap "rm -f /tmp/$$ /tmp/$$a" 0 1 2 3 15
 entab </dev/null >/dev/null
 if [ "$?" -ne 0 ]
diff --git a/src/tools/pgindent/pgindent b/src/tools/pgindent/pgindent
index 530c6d27035320976815562e2ec5fecbdef3a2f2..d6a38c12932efe4cc99ae3d4a85d822e184cd4f7 100755
--- a/src/tools/pgindent/pgindent
+++ b/src/tools/pgindent/pgindent
@@ -1,5 +1,7 @@
 #!/bin/sh
 
+# $PostgreSQL: pgsql/src/tools/pgindent/pgindent,v 1.87 2006/03/11 04:38:42 momjian Exp $
+
 # Known bugs:
 #
 # Blank line is added after, seen as a function definition, no space
diff --git a/src/tools/pgindent/pgjindent b/src/tools/pgindent/pgjindent
index d4e3777cc869cbe720594d0a4f22f3e07778bc3c..6ae6a6e3e04ada39ccb017c596ab31cf3014750f 100755
--- a/src/tools/pgindent/pgjindent
+++ b/src/tools/pgindent/pgjindent
@@ -1,5 +1,7 @@
 #!/bin/sh
 
+# $PostgreSQL: pgsql/src/tools/pgindent/pgjindent,v 1.3 2006/03/11 04:38:42 momjian Exp $
+
 trap "rm -f /tmp/$$ /tmp/$$a" 0 1 2 3 15
 entab </dev/null >/dev/null
 if [ "$?" -ne 0 ]
diff --git a/src/tools/pgtest b/src/tools/pgtest
index bc28be23832e7865fe400504be1163847e55b026..9a50bea446b578c074e7b725f9c8c4104a1667a5 100755
--- a/src/tools/pgtest
+++ b/src/tools/pgtest
@@ -1,4 +1,6 @@
-:
+#!/bin/sh
+
+# $PostgreSQL: pgsql/src/tools/pgtest,v 1.6 2006/03/11 04:38:41 momjian Exp $
 
 # This runs a build/initdb/regression test suite
 #
diff --git a/src/tutorial/funcs.c b/src/tutorial/funcs.c
index a988ad431b2d2c8457380d6cdf3688a920cef6e2..0ca31ac19c9b9c6acb36d75c7862232290cf9848 100644
--- a/src/tutorial/funcs.c
+++ b/src/tutorial/funcs.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/tutorial/funcs.c,v 1.14 2006/03/11 04:38:42 momjian Exp $ */
+
 /******************************************************************************
   These are user-defined functions that can be bound to a Postgres backend
   and called by Postgres to execute SQL functions of the same name.
diff --git a/src/tutorial/funcs_new.c b/src/tutorial/funcs_new.c
index 9c63abaf14e5143bcac2d2e4b400f15285a3bb15..9a490340637b13a51247339e45b0798e84a5fd29 100644
--- a/src/tutorial/funcs_new.c
+++ b/src/tutorial/funcs_new.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/tutorial/funcs_new.c,v 1.7 2006/03/11 04:38:42 momjian Exp $ */
+
 /******************************************************************************
   These are user-defined functions that can be bound to a Postgres backend
   and called by Postgres to execute SQL functions of the same name.
diff --git a/src/utils/dllinit.c b/src/utils/dllinit.c
index 3a0097d28e6775d2c2ed615721f650d0e7c5fa25..66859149d51b64315505a4f84ea30e789a171879 100644
--- a/src/utils/dllinit.c
+++ b/src/utils/dllinit.c
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/src/utils/dllinit.c,v 1.17 2006/03/11 04:38:42 momjian Exp $ */
+
 #ifdef __CYGWIN__
 #include <cygwin/version.h>
 #endif