summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2011-03-02 16:06:41 (GMT)
committerdgp <dgp@users.sourceforge.net>2011-03-02 16:06:41 (GMT)
commit0937455905c1a0341afda78b07e91c750febefad (patch)
treeeb4c16e323de2d467a528cb46f37376fb5b9ed03 /unix
parent806250172cd6b102d995082b2cb563e398dedf47 (diff)
parent01562d4f1cdea4a4c1b9083b8be3de602a6fe1c1 (diff)
downloadtcl-0937455905c1a0341afda78b07e91c750febefad.zip
tcl-0937455905c1a0341afda78b07e91c750febefad.tar.gz
tcl-0937455905c1a0341afda78b07e91c750febefad.tar.bz2
Now that we're no longer using SCM based on RCS, the RCS Keyword lines cause
more harm than good. Purged them.
Diffstat (limited to 'unix')
-rw-r--r--unix/Makefile.in2
-rw-r--r--unix/README2
-rw-r--r--unix/configure.in2
-rw-r--r--unix/dltest/Makefile.in3
-rw-r--r--unix/dltest/README2
-rw-r--r--unix/dltest/pkga.c2
-rw-r--r--unix/dltest/pkgb.c2
-rw-r--r--unix/dltest/pkgc.c2
-rw-r--r--unix/dltest/pkgd.c2
-rw-r--r--unix/dltest/pkge.c2
-rw-r--r--unix/dltest/pkgua.c2
-rw-r--r--[-rwxr-xr-x]unix/ldAix2
-rw-r--r--unix/tcl.spec1
-rw-r--r--unix/tclAppInit.c2
-rw-r--r--unix/tclConfig.sh.in2
-rw-r--r--unix/tclLoadAix.c2
-rw-r--r--unix/tclLoadDl.c2
-rw-r--r--unix/tclLoadDyld.c2
-rw-r--r--unix/tclLoadNext.c2
-rw-r--r--unix/tclLoadOSF.c2
-rw-r--r--unix/tclLoadShl.c2
-rw-r--r--unix/tclUnixChan.c2
-rw-r--r--unix/tclUnixCompat.c3
-rw-r--r--unix/tclUnixEvent.c2
-rw-r--r--unix/tclUnixFCmd.c2
-rw-r--r--unix/tclUnixFile.c2
-rw-r--r--unix/tclUnixInit.c2
-rw-r--r--unix/tclUnixNotfy.c2
-rw-r--r--unix/tclUnixPipe.c2
-rw-r--r--unix/tclUnixPort.h2
-rw-r--r--unix/tclUnixSock.c2
-rw-r--r--unix/tclUnixTest.c2
-rw-r--r--unix/tclUnixThrd.c2
-rw-r--r--unix/tclUnixThrd.h2
-rw-r--r--unix/tclUnixTime.c2
-rw-r--r--unix/tclXtNotify.c2
-rw-r--r--unix/tclXtTest.c2
37 files changed, 1 insertions, 74 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in
index 892ec78..6f193f1 100644
--- a/unix/Makefile.in
+++ b/unix/Makefile.in
@@ -3,8 +3,6 @@
# a template for a Makefile; to generate the actual Makefile, run
# "./configure", which is a configuration script generated by the "autoconf"
# program (constructs like "@foo@" will get replaced in the actual Makefile.
-#
-# RCS: @(#) $Id: Makefile.in,v 1.229.2.30 2010/12/17 23:51:46 stwo Exp $
VERSION = @TCL_VERSION@
MAJOR_VERSION = @TCL_MAJOR_VERSION@
diff --git a/unix/README b/unix/README
index 96063de..96be762 100644
--- a/unix/README
+++ b/unix/README
@@ -1,8 +1,6 @@
Tcl UNIX README
---------------
-RCS: @(#) $Id: README,v 1.31 2008/02/12 10:07:19 dkf Exp $
-
This is the directory where you configure, compile, test, and install UNIX
versions of Tcl. This directory also contains source files for Tcl that are
specific to UNIX. Some of the files in this directory are used on the PC or
diff --git a/unix/configure.in b/unix/configure.in
index 0953d51..87731a1 100644
--- a/unix/configure.in
+++ b/unix/configure.in
@@ -2,8 +2,6 @@
dnl This file is an input file used by the GNU "autoconf" program to
dnl generate the file "configure", which is run during Tcl installation
dnl to configure the system for the local environment.
-#
-# RCS: @(#) $Id: configure.in,v 1.180.2.18 2010/09/06 12:57:34 stwo Exp $
AC_INIT([tcl],[8.5])
AC_PREREQ(2.59)
diff --git a/unix/dltest/Makefile.in b/unix/dltest/Makefile.in
index 5ac2df0..01589d9 100644
--- a/unix/dltest/Makefile.in
+++ b/unix/dltest/Makefile.in
@@ -1,7 +1,6 @@
# This Makefile is used to create several test cases for Tcl's load
# command. It also illustrates how to take advantage of configuration
# exported by Tcl to set up Makefiles for shared libraries.
-# RCS: @(#) $Id: Makefile.in,v 1.21 2008/03/07 22:42:53 andreas_kupries Exp $
CC = @CC@
LIBS = @TCL_BUILD_STUB_LIB_SPEC@ @TCL_LIBS@
@@ -99,4 +98,4 @@ clean:
fi
distclean: clean
- rm -f Makefile \ No newline at end of file
+ rm -f Makefile
diff --git a/unix/dltest/README b/unix/dltest/README
index 3d85a9c..3210f13 100644
--- a/unix/dltest/README
+++ b/unix/dltest/README
@@ -2,5 +2,3 @@ This directory contains several files for testing Tcl's dynamic
loading/unloading capabilities. If shared libraries are supported
then the build system in the parent directory will create
the shared libs and load them into the tcltest executable.
-
-RCS: @(#) $Id: README,v 1.4 2004/02/24 22:58:48 dkf Exp $
diff --git a/unix/dltest/pkga.c b/unix/dltest/pkga.c
index 273270a..f001cdf 100644
--- a/unix/dltest/pkga.c
+++ b/unix/dltest/pkga.c
@@ -8,8 +8,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: pkga.c,v 1.12 2007/12/13 15:28:42 dgp Exp $
*/
#include "tcl.h"
diff --git a/unix/dltest/pkgb.c b/unix/dltest/pkgb.c
index 084d785..51c1bd9 100644
--- a/unix/dltest/pkgb.c
+++ b/unix/dltest/pkgb.c
@@ -9,8 +9,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: pkgb.c,v 1.9 2007/12/13 15:28:42 dgp Exp $
*/
#include "tcl.h"
diff --git a/unix/dltest/pkgc.c b/unix/dltest/pkgc.c
index 484396e..6ad5ab4 100644
--- a/unix/dltest/pkgc.c
+++ b/unix/dltest/pkgc.c
@@ -9,8 +9,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: pkgc.c,v 1.9 2007/12/13 15:28:43 dgp Exp $
*/
#include "tcl.h"
diff --git a/unix/dltest/pkgd.c b/unix/dltest/pkgd.c
index be2219b..7fe7c49 100644
--- a/unix/dltest/pkgd.c
+++ b/unix/dltest/pkgd.c
@@ -9,8 +9,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: pkgd.c,v 1.8 2007/12/13 15:28:43 dgp Exp $
*/
#include "tcl.h"
diff --git a/unix/dltest/pkge.c b/unix/dltest/pkge.c
index a64ba26..abd2359 100644
--- a/unix/dltest/pkge.c
+++ b/unix/dltest/pkge.c
@@ -9,8 +9,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: pkge.c,v 1.10 2007/12/13 15:28:43 dgp Exp $
*/
#include "tcl.h"
diff --git a/unix/dltest/pkgua.c b/unix/dltest/pkgua.c
index 71af826..9c36e88 100644
--- a/unix/dltest/pkgua.c
+++ b/unix/dltest/pkgua.c
@@ -9,8 +9,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: pkgua.c,v 1.7 2007/12/13 15:28:43 dgp Exp $
*/
#include "tcl.h"
diff --git a/unix/ldAix b/unix/ldAix
index 16b59dd..cf37d40 100755..100644
--- a/unix/ldAix
+++ b/unix/ldAix
@@ -9,8 +9,6 @@
# from the argument list, creates a .exp file describing all of the
# symbols exported by those files, and then invokes "ldCmd" to
# perform the real link.
-#
-# RCS: @(#) $Id: ldAix,v 1.4.18.1 2010/08/12 00:11:23 hobbs Exp $
# Extract from the arguments the names of all of the object files.
diff --git a/unix/tcl.spec b/unix/tcl.spec
index cea549d..7b1de28 100644
--- a/unix/tcl.spec
+++ b/unix/tcl.spec
@@ -1,4 +1,3 @@
-# $Id: tcl.spec,v 1.37.2.10 2010/08/04 17:02:40 dgp Exp $
# This file is the basis for a binary Tcl RPM for Linux.
%{!?directory:%define directory /usr/local}
diff --git a/unix/tclAppInit.c b/unix/tclAppInit.c
index a5058d8..b9c64b1 100644
--- a/unix/tclAppInit.c
+++ b/unix/tclAppInit.c
@@ -10,8 +10,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tclAppInit.c,v 1.17 2007/04/16 13:36:35 dkf Exp $
*/
#include "tcl.h"
diff --git a/unix/tclConfig.sh.in b/unix/tclConfig.sh.in
index d961cc8..7e1d4af 100644
--- a/unix/tclConfig.sh.in
+++ b/unix/tclConfig.sh.in
@@ -8,8 +8,6 @@
# out for themselves.
#
# The information in this file is specific to a single platform.
-#
-# RCS: @(#) $Id: tclConfig.sh.in,v 1.21.10.1 2010/08/12 00:11:23 hobbs Exp $
# Tcl's version number.
TCL_VERSION='@TCL_VERSION@'
diff --git a/unix/tclLoadAix.c b/unix/tclLoadAix.c
index d238e9a..59bccbf 100644
--- a/unix/tclLoadAix.c
+++ b/unix/tclLoadAix.c
@@ -17,8 +17,6 @@
* for any results of using the software, alterations are clearly marked
* as such, and this notice is not modified.
*
- * RCS: @(#) $Id: tclLoadAix.c,v 1.6 2007/04/16 13:36:36 dkf Exp $
- *
* Note: this file has been altered from the original in a few ways in order
* to work properly with Tcl.
*/
diff --git a/unix/tclLoadDl.c b/unix/tclLoadDl.c
index d92dc04..e9ff134 100644
--- a/unix/tclLoadDl.c
+++ b/unix/tclLoadDl.c
@@ -8,8 +8,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tclLoadDl.c,v 1.16 2006/06/13 22:10:19 dkf Exp $
*/
#include "tclInt.h"
diff --git a/unix/tclLoadDyld.c b/unix/tclLoadDyld.c
index c37ff1b..08d651c 100644
--- a/unix/tclLoadDyld.c
+++ b/unix/tclLoadDyld.c
@@ -11,8 +11,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tclLoadDyld.c,v 1.29.2.1 2009/04/10 18:10:44 das Exp $
*/
#include "tclInt.h"
diff --git a/unix/tclLoadNext.c b/unix/tclLoadNext.c
index 48c7c98..3de3cf1 100644
--- a/unix/tclLoadNext.c
+++ b/unix/tclLoadNext.c
@@ -8,8 +8,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tclLoadNext.c,v 1.13 2005/11/11 23:46:34 dkf Exp $
*/
#include "tclInt.h"
diff --git a/unix/tclLoadOSF.c b/unix/tclLoadOSF.c
index c0f67eb..37536cf 100644
--- a/unix/tclLoadOSF.c
+++ b/unix/tclLoadOSF.c
@@ -30,8 +30,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tclLoadOSF.c,v 1.13 2005/11/11 23:46:34 dkf Exp $
*/
#include "tclInt.h"
diff --git a/unix/tclLoadShl.c b/unix/tclLoadShl.c
index 80ef7b5..c9e4e27 100644
--- a/unix/tclLoadShl.c
+++ b/unix/tclLoadShl.c
@@ -9,8 +9,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tclLoadShl.c,v 1.16 2005/11/11 23:46:34 dkf Exp $
*/
#include <dl.h>
diff --git a/unix/tclUnixChan.c b/unix/tclUnixChan.c
index 42fd927..53c5c47 100644
--- a/unix/tclUnixChan.c
+++ b/unix/tclUnixChan.c
@@ -9,8 +9,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tclUnixChan.c,v 1.93.2.5 2010/03/01 15:25:27 ferrieux Exp $
*/
#include "tclInt.h" /* Internal definitions for Tcl. */
diff --git a/unix/tclUnixCompat.c b/unix/tclUnixCompat.c
index 4b28db6..4d959d6 100644
--- a/unix/tclUnixCompat.c
+++ b/unix/tclUnixCompat.c
@@ -5,9 +5,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tclUnixCompat.c,v 1.15.2.1 2010/01/06 21:35:22 nijtmans Exp $
- *
*/
#include "tclInt.h"
diff --git a/unix/tclUnixEvent.c b/unix/tclUnixEvent.c
index bc6aade..e4d922d 100644
--- a/unix/tclUnixEvent.c
+++ b/unix/tclUnixEvent.c
@@ -7,8 +7,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tclUnixEvent.c,v 1.9.10.1 2009/04/10 18:02:42 das Exp $
*/
#include "tclInt.h"
diff --git a/unix/tclUnixFCmd.c b/unix/tclUnixFCmd.c
index 636a910..a96a81a 100644
--- a/unix/tclUnixFCmd.c
+++ b/unix/tclUnixFCmd.c
@@ -10,8 +10,6 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclUnixFCmd.c,v 1.65.2.4 2010/08/04 19:45:07 hobbs Exp $
- *
* Portions of this code were derived from NetBSD source code which has the
* following copyright notice:
*
diff --git a/unix/tclUnixFile.c b/unix/tclUnixFile.c
index c3ad48b..625b864 100644
--- a/unix/tclUnixFile.c
+++ b/unix/tclUnixFile.c
@@ -8,8 +8,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tclUnixFile.c,v 1.52.2.1 2009/08/02 12:15:04 dkf Exp $
*/
#include "tclInt.h"
diff --git a/unix/tclUnixInit.c b/unix/tclUnixInit.c
index d11c8c5..a798ccb 100644
--- a/unix/tclUnixInit.c
+++ b/unix/tclUnixInit.c
@@ -6,8 +6,6 @@
* Copyright (c) 1995-1997 Sun Microsystems, Inc.
* Copyright (c) 1999 by Scriptics Corporation.
* All rights reserved.
- *
- * RCS: @(#) $Id: tclUnixInit.c,v 1.82.2.1 2009/10/05 02:41:13 das Exp $
*/
#include "tclInt.h"
diff --git a/unix/tclUnixNotfy.c b/unix/tclUnixNotfy.c
index c1b5fd8..e7bf78d 100644
--- a/unix/tclUnixNotfy.c
+++ b/unix/tclUnixNotfy.c
@@ -9,8 +9,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tclUnixNotfy.c,v 1.34.2.2 2010/01/29 09:38:47 nijtmans Exp $
*/
#include "tclInt.h"
diff --git a/unix/tclUnixPipe.c b/unix/tclUnixPipe.c
index 714979e..eb3a218 100644
--- a/unix/tclUnixPipe.c
+++ b/unix/tclUnixPipe.c
@@ -9,8 +9,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tclUnixPipe.c,v 1.42.2.1 2010/01/29 09:38:47 nijtmans Exp $
*/
#include "tclInt.h"
diff --git a/unix/tclUnixPort.h b/unix/tclUnixPort.h
index 87344e0..421d73c 100644
--- a/unix/tclUnixPort.h
+++ b/unix/tclUnixPort.h
@@ -18,8 +18,6 @@
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tclUnixPort.h,v 1.65.2.1 2010/05/25 10:37:18 nijtmans Exp $
*/
#ifndef _TCLUNIXPORT
diff --git a/unix/tclUnixSock.c b/unix/tclUnixSock.c
index 973fd18..a2b4015 100644
--- a/unix/tclUnixSock.c
+++ b/unix/tclUnixSock.c
@@ -7,8 +7,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tclUnixSock.c,v 1.20 2007/12/13 15:28:42 dgp Exp $
*/
#include "tclInt.h"
diff --git a/unix/tclUnixTest.c b/unix/tclUnixTest.c
index a894d4d..b6529c2 100644
--- a/unix/tclUnixTest.c
+++ b/unix/tclUnixTest.c
@@ -8,8 +8,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tclUnixTest.c,v 1.26 2007/04/20 06:11:00 kennykb Exp $
*/
#include "tclInt.h"
diff --git a/unix/tclUnixThrd.c b/unix/tclUnixThrd.c
index 0cb4b5d..bc80e00 100644
--- a/unix/tclUnixThrd.c
+++ b/unix/tclUnixThrd.c
@@ -8,8 +8,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tclUnixThrd.c,v 1.57 2008/01/11 11:53:02 msofer Exp $
*/
#include "tclInt.h"
diff --git a/unix/tclUnixThrd.h b/unix/tclUnixThrd.h
index a4f6fc6..6a73132 100644
--- a/unix/tclUnixThrd.h
+++ b/unix/tclUnixThrd.h
@@ -7,8 +7,6 @@
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * SCCS: @(#)
*/
#ifndef _TCLUNIXTHRD
diff --git a/unix/tclUnixTime.c b/unix/tclUnixTime.c
index f989f01..cf730a2 100644
--- a/unix/tclUnixTime.c
+++ b/unix/tclUnixTime.c
@@ -8,8 +8,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tclUnixTime.c,v 1.33.2.1 2008/04/14 17:49:59 kennykb Exp $
*/
#include "tclInt.h"
diff --git a/unix/tclXtNotify.c b/unix/tclXtNotify.c
index f21e938..6a11c0d 100644
--- a/unix/tclXtNotify.c
+++ b/unix/tclXtNotify.c
@@ -8,8 +8,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tclXtNotify.c,v 1.9 2007/04/16 13:36:36 dkf Exp $
*/
#include <X11/Intrinsic.h>
diff --git a/unix/tclXtTest.c b/unix/tclXtTest.c
index 425726d..8437f2a 100644
--- a/unix/tclXtTest.c
+++ b/unix/tclXtTest.c
@@ -7,8 +7,6 @@
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * RCS: @(#) $Id: tclXtTest.c,v 1.6 2005/11/02 23:26:50 dkf Exp $
*/
#include <X11/Intrinsic.h>