diff options
Diffstat (limited to 'gnu/usr.bin')
312 files changed, 387 insertions, 319 deletions
diff --git a/gnu/usr.bin/Makefile b/gnu/usr.bin/Makefile index 009f4d0c34521..834f1ae94cd49 100644 --- a/gnu/usr.bin/Makefile +++ b/gnu/usr.bin/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.43 1998/09/09 06:01:11 markm Exp $ +# $Id: Makefile,v 1.44 1998/09/09 19:30:45 markm Exp $ SUBDIR= awk bc binutils bison cc cpio cvs dc dialog diff diff3 genclass gperf \ grep groff gzip man patch ptx rcs sdiff send-pr sort tar texinfo diff --git a/gnu/usr.bin/Makefile.inc b/gnu/usr.bin/Makefile.inc index 5371a22cca25b..2d3bdbc378f46 100644 --- a/gnu/usr.bin/Makefile.inc +++ b/gnu/usr.bin/Makefile.inc @@ -1,3 +1,3 @@ -# $Id$ +# $Id: Makefile.inc,v 1.3 1997/02/22 15:43:17 peter Exp $ BINDIR?= /usr/bin diff --git a/gnu/usr.bin/as/Makefile b/gnu/usr.bin/as/Makefile index c7b7c1bafefca..e6ee0edd55c8b 100644 --- a/gnu/usr.bin/as/Makefile +++ b/gnu/usr.bin/as/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 6.1 (Berkeley) 3/3/91 -# $Id: Makefile,v 1.16 1998/09/07 05:45:23 jb Exp $ +# $Id: Makefile,v 1.17 1998/10/03 03:59:42 jdp Exp $ .include "config/Makefile.$(MACHINE_ARCH)" diff --git a/gnu/usr.bin/as/Makefile.in b/gnu/usr.bin/as/Makefile.in index b91bb3322bbf5..379ef79e4141d 100644 --- a/gnu/usr.bin/as/Makefile.in +++ b/gnu/usr.bin/as/Makefile.in @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile.in,v 1.5 1997/02/22 15:43:23 peter Exp $ # Makefile for GNU Assembler # Copyright (C) 1987-1992 Free Software Foundation, Inc. diff --git a/gnu/usr.bin/as/app.c b/gnu/usr.bin/as/app.c index 04a5e6c78573d..d96fe2e2db039 100644 --- a/gnu/usr.bin/as/app.c +++ b/gnu/usr.bin/as/app.c @@ -24,7 +24,7 @@ pair. This needs better error-handling. */ #ifndef lint -static char rcsid[] = "$Id$"; +static char rcsid[] = "$Id: app.c,v 1.6 1997/02/22 15:43:23 peter Exp $"; #endif #include <stdio.h> diff --git a/gnu/usr.bin/as/as.1 b/gnu/usr.bin/as/as.1 index e1cb4cb81262e..8f4558e5ca08b 100644 --- a/gnu/usr.bin/as/as.1 +++ b/gnu/usr.bin/as/as.1 @@ -1,6 +1,6 @@ .\" Copyright (c) 1991, 1992 Free Software Foundation .\" See section COPYING for conditions for redistribution -.\" $Id$ +.\" $Id: as.1,v 1.8 1997/02/22 15:43:24 peter Exp $ .TH as 1 "21 January 1992" "cygnus support" "GNU Development Tools" .SH NAME diff --git a/gnu/usr.bin/as/as.1aout b/gnu/usr.bin/as/as.1aout index e1cb4cb81262e..01bc6f4f1b3dc 100644 --- a/gnu/usr.bin/as/as.1aout +++ b/gnu/usr.bin/as/as.1aout @@ -1,6 +1,6 @@ .\" Copyright (c) 1991, 1992 Free Software Foundation .\" See section COPYING for conditions for redistribution -.\" $Id$ +.\" $Id: as.1aout,v 1.8 1997/02/22 15:43:24 peter Exp $ .TH as 1 "21 January 1992" "cygnus support" "GNU Development Tools" .SH NAME diff --git a/gnu/usr.bin/as/as.c b/gnu/usr.bin/as/as.c index 34646938dae3e..3e02a09ebe082 100644 --- a/gnu/usr.bin/as/as.c +++ b/gnu/usr.bin/as/as.c @@ -32,7 +32,7 @@ * */ #ifndef lint -static char rcsid[] = "$Id$"; +static char rcsid[] = "$Id: as.c,v 1.6 1997/02/22 15:43:24 peter Exp $"; #endif #include <stdio.h> diff --git a/gnu/usr.bin/as/as.h b/gnu/usr.bin/as/as.h index 28b6974b1bed4..6bba381234c29 100644 --- a/gnu/usr.bin/as/as.h +++ b/gnu/usr.bin/as/as.h @@ -18,7 +18,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id$ + * $Id: as.h,v 1.7 1997/02/22 15:43:26 peter Exp $ */ #define GAS 1 diff --git a/gnu/usr.bin/as/atof-generic.c b/gnu/usr.bin/as/atof-generic.c index b0a8ff11ae346..3d67a1835a923 100644 --- a/gnu/usr.bin/as/atof-generic.c +++ b/gnu/usr.bin/as/atof-generic.c @@ -18,7 +18,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef lint -static char rcsid[] = "$Id$"; +static char rcsid[] = "$Id: atof-generic.c,v 1.5 1997/02/22 15:43:27 peter Exp $"; #endif #include <ctype.h> diff --git a/gnu/usr.bin/as/bignum-copy.c b/gnu/usr.bin/as/bignum-copy.c index b212096e7e476..2434253115141 100644 --- a/gnu/usr.bin/as/bignum-copy.c +++ b/gnu/usr.bin/as/bignum-copy.c @@ -18,7 +18,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef lint -static char rcsid[] = "$Id$"; +static char rcsid[] = "$Id: bignum-copy.c,v 1.5 1997/02/22 15:43:28 peter Exp $"; #endif #include "as.h" diff --git a/gnu/usr.bin/as/bignum.h b/gnu/usr.bin/as/bignum.h index 71b85f8849b35..0d2a533c51f65 100644 --- a/gnu/usr.bin/as/bignum.h +++ b/gnu/usr.bin/as/bignum.h @@ -18,7 +18,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id$ + * $Id: bignum.h,v 1.5 1997/02/22 15:43:28 peter Exp $ */ /***********************************************************************\ diff --git a/gnu/usr.bin/as/bit_fix.h b/gnu/usr.bin/as/bit_fix.h index 3d075d76b3170..d9179d8317675 100644 --- a/gnu/usr.bin/as/bit_fix.h +++ b/gnu/usr.bin/as/bit_fix.h @@ -18,7 +18,7 @@ along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id$ + * $Id: bit_fix.h,v 1.4 1997/02/22 15:43:29 peter Exp $ */ diff --git a/gnu/usr.bin/as/cond.c b/gnu/usr.bin/as/cond.c index 6fd46b6639a5d..8922bc60294ed 100644 --- a/gnu/usr.bin/as/cond.c +++ b/gnu/usr.bin/as/cond.c @@ -18,7 +18,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef lint -static char rcsid[] = "$Id$"; +static char rcsid[] = "$Id: cond.c,v 1.5 1997/02/22 15:43:30 peter Exp $"; #endif #include "as.h" diff --git a/gnu/usr.bin/as/config/Makefile.hp300 b/gnu/usr.bin/as/config/Makefile.hp300 index 4b898204b6883..e6a8208c2177a 100644 --- a/gnu/usr.bin/as/config/Makefile.hp300 +++ b/gnu/usr.bin/as/config/Makefile.hp300 @@ -1,5 +1,5 @@ # from: @(#)Makefile.hp300 6.1 (Berkeley) 3/3/91 -# $Id$ +# $Id: Makefile.hp300,v 1.3 1997/02/22 15:44:18 peter Exp $ CFLAGS+= -Dm68851 SRCS+= tc-m68k.c atof-ieee.c diff --git a/gnu/usr.bin/as/config/Makefile.i386 b/gnu/usr.bin/as/config/Makefile.i386 index dab24592be100..bd5aa2d20967d 100644 --- a/gnu/usr.bin/as/config/Makefile.i386 +++ b/gnu/usr.bin/as/config/Makefile.i386 @@ -1,5 +1,5 @@ # from: @(#)Makefile.i386 6.1 (Berkeley) 3/3/91 -# $Id$ +# $Id: Makefile.i386,v 1.5 1997/02/22 15:44:19 peter Exp $ CFLAGS+= -DNON_BROKEN_WORDS -DPIC SRCS+= tc-i386.c atof-ieee.c diff --git a/gnu/usr.bin/as/config/Makefile.pc532 b/gnu/usr.bin/as/config/Makefile.pc532 index 5eb588d474f88..f17504f806ebb 100644 --- a/gnu/usr.bin/as/config/Makefile.pc532 +++ b/gnu/usr.bin/as/config/Makefile.pc532 @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile.pc532,v 1.3 1997/02/22 15:44:19 peter Exp $ SRCS+= tc-ns32k.c atof-ns32k.c diff --git a/gnu/usr.bin/as/config/Makefile.sparc b/gnu/usr.bin/as/config/Makefile.sparc index 25608f1d3bf27..66f7f8d07c9d0 100644 --- a/gnu/usr.bin/as/config/Makefile.sparc +++ b/gnu/usr.bin/as/config/Makefile.sparc @@ -1,5 +1,5 @@ # from: @(#)Makefile.i386 6.1 (Berkeley) 3/3/91 -# $Id$ +# $Id: Makefile.sparc,v 1.4 1997/02/22 15:44:20 peter Exp $ CFLAGS+= -DNON_BROKEN_WORDS -DPIC SRCS+= tc-sparc.c atof-ieee.c diff --git a/gnu/usr.bin/as/config/Makefile.vax b/gnu/usr.bin/as/config/Makefile.vax index eb2bca866427d..313d20af56282 100644 --- a/gnu/usr.bin/as/config/Makefile.vax +++ b/gnu/usr.bin/as/config/Makefile.vax @@ -1,4 +1,4 @@ # from: @(#)Makefile.vax 6.1 (Berkeley) 3/3/91 -# $Id$ +# $Id: Makefile.vax,v 1.3 1997/02/22 15:44:20 peter Exp $ SRCS+= tc-vax.c atof-vax.c diff --git a/gnu/usr.bin/as/config/atof-ieee.c b/gnu/usr.bin/as/config/atof-ieee.c index da9d73063fb32..b7088d6d4d317 100644 --- a/gnu/usr.bin/as/config/atof-ieee.c +++ b/gnu/usr.bin/as/config/atof-ieee.c @@ -18,7 +18,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef lint -static char rcsid[] = "$Id: atof-ieee.c,v 1.7 1997/02/22 15:44:21 peter Exp $"; +static char rcsid[] = "$Id: atof-ieee.c,v 1.8 1997/09/18 13:54:47 phk Exp $"; #endif #include "as.h" diff --git a/gnu/usr.bin/as/config/ho-i386.h b/gnu/usr.bin/as/config/ho-i386.h index 7e18c00e22be0..a259f60d36f6d 100644 --- a/gnu/usr.bin/as/config/ho-i386.h +++ b/gnu/usr.bin/as/config/ho-i386.h @@ -17,7 +17,7 @@ along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id$ + * $Id: ho-i386.h,v 1.4 1997/02/22 15:44:22 peter Exp $ */ diff --git a/gnu/usr.bin/as/config/obj-aout.h b/gnu/usr.bin/as/config/obj-aout.h index cca03f6e58965..af4ff8d60c429 100644 --- a/gnu/usr.bin/as/config/obj-aout.h +++ b/gnu/usr.bin/as/config/obj-aout.h @@ -17,7 +17,7 @@ License along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. - $Id: obj-aout.h,v 1.7 1997/02/22 15:44:22 peter Exp $ + $Id: obj-aout.h,v 1.8 1998/04/10 01:20:40 jdp Exp $ */ diff --git a/gnu/usr.bin/as/config/tc-i386.c b/gnu/usr.bin/as/config/tc-i386.c index c275d2faccae7..7ab380803377a 100644 --- a/gnu/usr.bin/as/config/tc-i386.c +++ b/gnu/usr.bin/as/config/tc-i386.c @@ -25,7 +25,7 @@ */ #ifndef lint -static char rcsid[] = "$Id: tc-i386.c,v 1.8 1997/02/22 15:44:23 peter Exp $"; +static char rcsid[] = "$Id: tc-i386.c,v 1.9 1998/06/30 20:14:13 bde Exp $"; #endif #include "as.h" diff --git a/gnu/usr.bin/as/config/tc-i386.h b/gnu/usr.bin/as/config/tc-i386.h index 0a31d4d71e813..46456700f376f 100644 --- a/gnu/usr.bin/as/config/tc-i386.h +++ b/gnu/usr.bin/as/config/tc-i386.h @@ -18,7 +18,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id$ + * $Id: tc-i386.h,v 1.5 1997/02/22 15:44:24 peter Exp $ */ #ifndef TC_I386 diff --git a/gnu/usr.bin/as/config/tc-sparc.c b/gnu/usr.bin/as/config/tc-sparc.c index 5f2d6da765f22..7f1e47b98a95c 100644 --- a/gnu/usr.bin/as/config/tc-sparc.c +++ b/gnu/usr.bin/as/config/tc-sparc.c @@ -18,7 +18,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef lint -static char rcsid[] = "$Id$"; +static char rcsid[] = "$Id: tc-sparc.c,v 1.7 1997/02/22 15:44:24 peter Exp $"; #endif #define cypress 1234 diff --git a/gnu/usr.bin/as/config/tc-sparc.h b/gnu/usr.bin/as/config/tc-sparc.h index 2a82a31963ecc..5ae74a2c58a01 100644 --- a/gnu/usr.bin/as/config/tc-sparc.h +++ b/gnu/usr.bin/as/config/tc-sparc.h @@ -18,7 +18,7 @@ to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id$ + * $Id: tc-sparc.h,v 1.5 1997/02/22 15:44:25 peter Exp $ */ #define TC_SPARC 1 diff --git a/gnu/usr.bin/as/config/te-generic.h b/gnu/usr.bin/as/config/te-generic.h index c17f1edd9add5..79cc5f5205286 100644 --- a/gnu/usr.bin/as/config/te-generic.h +++ b/gnu/usr.bin/as/config/te-generic.h @@ -6,7 +6,7 @@ * compile, and copying as an aid for testing and porting. xoxorich. */ /* - * $Id$ + * $Id: te-generic.h,v 1.3 1997/02/22 15:44:25 peter Exp $ */ diff --git a/gnu/usr.bin/as/debug.c b/gnu/usr.bin/as/debug.c index dd39b96bf9a5a..4446962d8f402 100644 --- a/gnu/usr.bin/as/debug.c +++ b/gnu/usr.bin/as/debug.c @@ -21,7 +21,7 @@ /* Routines for debug use only. */ #ifndef lint -static char rcsid[] = "$Id$"; +static char rcsid[] = "$Id: debug.c,v 1.4 1997/02/22 15:43:30 peter Exp $"; #endif #include "as.h" diff --git a/gnu/usr.bin/as/expr.c b/gnu/usr.bin/as/expr.c index d073287aed2c8..92c54e3557b93 100644 --- a/gnu/usr.bin/as/expr.c +++ b/gnu/usr.bin/as/expr.c @@ -25,7 +25,7 @@ */ #ifndef lint -static char rcsid[] = "$Id: expr.c,v 1.6 1997/02/22 15:43:31 peter Exp $"; +static char rcsid[] = "$Id: expr.c,v 1.7 1998/06/30 20:14:13 bde Exp $"; #endif #include <ctype.h> diff --git a/gnu/usr.bin/as/expr.h b/gnu/usr.bin/as/expr.h index 7fd97a2edc7bb..e2b253382a9cd 100644 --- a/gnu/usr.bin/as/expr.h +++ b/gnu/usr.bin/as/expr.h @@ -17,7 +17,7 @@ along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id$ + * $Id: expr.h,v 1.5 1997/02/22 15:43:32 peter Exp $ */ diff --git a/gnu/usr.bin/as/flo-const.c b/gnu/usr.bin/as/flo-const.c index d401854932443..7a8179002fa65 100644 --- a/gnu/usr.bin/as/flo-const.c +++ b/gnu/usr.bin/as/flo-const.c @@ -18,7 +18,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef lint -static char rcsid[] = "$Id$"; +static char rcsid[] = "$Id: flo-const.c,v 1.4 1997/02/22 15:43:33 peter Exp $"; #endif #include "flonum.h" diff --git a/gnu/usr.bin/as/flo-copy.c b/gnu/usr.bin/as/flo-copy.c index 54927ec858319..5a8b7dca3e0f5 100644 --- a/gnu/usr.bin/as/flo-copy.c +++ b/gnu/usr.bin/as/flo-copy.c @@ -18,7 +18,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef lint -static char rcsid[] = "$Id$"; +static char rcsid[] = "$Id: flo-copy.c,v 1.4 1997/02/22 15:43:33 peter Exp $"; #endif #include "as.h" diff --git a/gnu/usr.bin/as/flonum-mult.c b/gnu/usr.bin/as/flonum-mult.c index fa377f5d79356..93c51f39aaa31 100644 --- a/gnu/usr.bin/as/flonum-mult.c +++ b/gnu/usr.bin/as/flonum-mult.c @@ -19,7 +19,7 @@ notice and this notice must be preserved on all copies. */ #ifndef lint -static char rcsid[] = "$Id$"; +static char rcsid[] = "$Id: flonum-mult.c,v 1.5 1997/02/22 15:43:34 peter Exp $"; #endif #include "flonum.h" diff --git a/gnu/usr.bin/as/flonum.h b/gnu/usr.bin/as/flonum.h index 95ea3730efcd3..3dd4cb12c8aed 100644 --- a/gnu/usr.bin/as/flonum.h +++ b/gnu/usr.bin/as/flonum.h @@ -18,7 +18,7 @@ along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id$ + * $Id: flonum.h,v 1.5 1997/02/22 15:43:35 peter Exp $ */ diff --git a/gnu/usr.bin/as/frags.c b/gnu/usr.bin/as/frags.c index b203abb6f4559..678b898e2822f 100644 --- a/gnu/usr.bin/as/frags.c +++ b/gnu/usr.bin/as/frags.c @@ -19,7 +19,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef lint -static char rcsid[] = "$Id$"; +static char rcsid[] = "$Id: frags.c,v 1.5 1997/02/22 15:43:35 peter Exp $"; #endif #include "as.h" diff --git a/gnu/usr.bin/as/frags.h b/gnu/usr.bin/as/frags.h index 722de54c13948..b8d838e708f37 100644 --- a/gnu/usr.bin/as/frags.h +++ b/gnu/usr.bin/as/frags.h @@ -18,7 +18,7 @@ along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id$ + * $Id: frags.h,v 1.5 1997/02/22 15:43:35 peter Exp $ */ diff --git a/gnu/usr.bin/as/hash.c b/gnu/usr.bin/as/hash.c index 40752c90a3747..cbb5033d12d1b 100644 --- a/gnu/usr.bin/as/hash.c +++ b/gnu/usr.bin/as/hash.c @@ -123,7 +123,7 @@ */ #ifndef lint -static char rcsid[] = "$Id$"; +static char rcsid[] = "$Id: hash.c,v 1.6 1997/02/22 15:43:36 peter Exp $"; #endif #include <stdio.h> diff --git a/gnu/usr.bin/as/hash.h b/gnu/usr.bin/as/hash.h index 6325559f1a068..69f297df4d398 100644 --- a/gnu/usr.bin/as/hash.h +++ b/gnu/usr.bin/as/hash.h @@ -17,7 +17,7 @@ along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id$ + * $Id: hash.h,v 1.5 1997/02/22 15:43:36 peter Exp $ */ diff --git a/gnu/usr.bin/as/hex-value.c b/gnu/usr.bin/as/hex-value.c index 342f5eea7e5d6..76898f1473cc4 100644 --- a/gnu/usr.bin/as/hex-value.c +++ b/gnu/usr.bin/as/hex-value.c @@ -23,7 +23,7 @@ */ #ifndef lint -static char rcsid[] = "$Id$"; +static char rcsid[] = "$Id: hex-value.c,v 1.5 1997/02/22 15:43:37 peter Exp $"; #endif #define __ (42) /* blatently illegal digit value */ diff --git a/gnu/usr.bin/as/input-file.c b/gnu/usr.bin/as/input-file.c index ab834fd30c9cb..0c41fd9a80e2c 100644 --- a/gnu/usr.bin/as/input-file.c +++ b/gnu/usr.bin/as/input-file.c @@ -25,7 +25,7 @@ */ #ifndef lint -static char rcsid[] = "$Id$"; +static char rcsid[] = "$Id: input-file.c,v 1.5 1997/02/22 15:43:37 peter Exp $"; #endif #ifdef USG diff --git a/gnu/usr.bin/as/input-file.h b/gnu/usr.bin/as/input-file.h index ce6fcdee2ac5f..c26058a7ac7a3 100644 --- a/gnu/usr.bin/as/input-file.h +++ b/gnu/usr.bin/as/input-file.h @@ -20,7 +20,7 @@ /*"input_file.c":Operating-system dependant functions to read source files.*/ /* - * $Id$ + * $Id: input-file.h,v 1.5 1997/02/22 15:43:38 peter Exp $ */ diff --git a/gnu/usr.bin/as/input-scrub.c b/gnu/usr.bin/as/input-scrub.c index 1d7cb23af6023..e0c792009475c 100644 --- a/gnu/usr.bin/as/input-scrub.c +++ b/gnu/usr.bin/as/input-scrub.c @@ -18,7 +18,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef lint -static char rcsid[] = "$Id$"; +static char rcsid[] = "$Id: input-scrub.c,v 1.6 1997/02/22 15:43:38 peter Exp $"; #endif #include <errno.h> /* Need this to make errno declaration right */ diff --git a/gnu/usr.bin/as/listing.c b/gnu/usr.bin/as/listing.c index 8cfba4b6d7e7e..79223dc7728e5 100644 --- a/gnu/usr.bin/as/listing.c +++ b/gnu/usr.bin/as/listing.c @@ -92,7 +92,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ */ #ifndef lint -static char rcsid[] = "$Id$"; +static char rcsid[] = "$Id: listing.c,v 1.5 1997/02/22 15:43:39 peter Exp $"; #endif #include <ctype.h> diff --git a/gnu/usr.bin/as/listing.h b/gnu/usr.bin/as/listing.h index 1e144402575d3..9eb17e9731a36 100644 --- a/gnu/usr.bin/as/listing.h +++ b/gnu/usr.bin/as/listing.h @@ -18,7 +18,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id$ + * $Id: listing.h,v 1.4 1997/02/22 15:43:39 peter Exp $ */ #ifndef __listing_h__ diff --git a/gnu/usr.bin/as/makefile.dos b/gnu/usr.bin/as/makefile.dos index c146e197f34d2..0c91bb4044ff8 100644 --- a/gnu/usr.bin/as/makefile.dos +++ b/gnu/usr.bin/as/makefile.dos @@ -17,7 +17,7 @@ #along with GNU GAS; see the file COPYING. If not, write to #the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. -# $Id$ +# $Id: makefile.dos,v 1.3 1997/02/22 15:43:40 peter Exp $ # The targets for external use include: # all, doc, proto, install, uninstall, includes, TAGS, diff --git a/gnu/usr.bin/as/messages.c b/gnu/usr.bin/as/messages.c index 6c173bc291e31..18216b96a0b84 100644 --- a/gnu/usr.bin/as/messages.c +++ b/gnu/usr.bin/as/messages.c @@ -18,7 +18,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef lint -static char rcsid[] = "$Id: messages.c,v 1.6 1997/02/22 15:43:40 peter Exp $"; +static char rcsid[] = "$Id: messages.c,v 1.7 1998/06/30 20:14:13 bde Exp $"; #endif #include <stdio.h> diff --git a/gnu/usr.bin/as/obj.h b/gnu/usr.bin/as/obj.h index 1c41c0552161a..7052a79cf2229 100644 --- a/gnu/usr.bin/as/obj.h +++ b/gnu/usr.bin/as/obj.h @@ -19,7 +19,7 @@ along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id$ + * $Id: obj.h,v 1.4 1997/02/22 15:43:42 peter Exp $ */ diff --git a/gnu/usr.bin/as/obstack.c b/gnu/usr.bin/as/obstack.c index af764811e3f90..7e3a4abe095c6 100644 --- a/gnu/usr.bin/as/obstack.c +++ b/gnu/usr.bin/as/obstack.c @@ -16,7 +16,7 @@ along with this program; if not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef lint -static char rcsid[] = "$Id$"; +static char rcsid[] = "$Id: obstack.c,v 1.4 1997/02/22 15:43:42 peter Exp $"; #endif #include "obstack.h" diff --git a/gnu/usr.bin/as/obstack.h b/gnu/usr.bin/as/obstack.h index 0b3179b6676a6..20a58ec004dc4 100644 --- a/gnu/usr.bin/as/obstack.h +++ b/gnu/usr.bin/as/obstack.h @@ -15,7 +15,7 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id$ + * $Id: obstack.h,v 1.5 1997/02/22 15:43:43 peter Exp $ */ diff --git a/gnu/usr.bin/as/opcode/a29k.h b/gnu/usr.bin/as/opcode/a29k.h index 8c3616747f090..1d34ff8f5ec9a 100644 --- a/gnu/usr.bin/as/opcode/a29k.h +++ b/gnu/usr.bin/as/opcode/a29k.h @@ -285,6 +285,9 @@ CONST unsigned int num_opcodes = (((sizeof a29k_opcodes) / (sizeof a29k_opcodes[ /* * $Log: a29k.h,v $ + * Revision 1.1 1993/11/03 00:55:48 paul + * Brought over NetBSD's gas ready for pk's shared libs. + * * Revision 1.1 1993/10/02 21:00:40 pk * GNU gas 1.92.3 based assembler supporting PIC code (for i386 and sparc). * diff --git a/gnu/usr.bin/as/opcode/i386.h b/gnu/usr.bin/as/opcode/i386.h index 2f763ffc3c950..b03d87685896c 100644 --- a/gnu/usr.bin/as/opcode/i386.h +++ b/gnu/usr.bin/as/opcode/i386.h @@ -17,7 +17,7 @@ You should have received a copy of the GNU General Public License along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* $Id: i386.h,v 1.8 1997/07/15 07:56:53 dyson Exp $ */ +/* $Id: i386.h,v 1.9 1998/03/29 01:38:39 jdp Exp $ */ static const template i386_optab[] = { diff --git a/gnu/usr.bin/as/opcode/i960.h b/gnu/usr.bin/as/opcode/i960.h index 7536699a1f89f..b713205a6c7d3 100644 --- a/gnu/usr.bin/as/opcode/i960.h +++ b/gnu/usr.bin/as/opcode/i960.h @@ -18,7 +18,7 @@ * appropriate. */ -/* $Id$ */ +/* $Id: i960.h,v 1.4 1997/02/22 15:44:30 peter Exp $ */ #define CTRL 0 #define COBR 1 diff --git a/gnu/usr.bin/as/opcode/sparc.h b/gnu/usr.bin/as/opcode/sparc.h index d44f182ec4d30..497e3ddcc24df 100644 --- a/gnu/usr.bin/as/opcode/sparc.h +++ b/gnu/usr.bin/as/opcode/sparc.h @@ -20,7 +20,7 @@ along with GAS or GDB; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id$ + * $Id: sparc.h,v 1.5 1997/02/22 15:44:31 peter Exp $ */ /* FIXME-someday: perhaps the ,a's and such should be embedded in the diff --git a/gnu/usr.bin/as/output-file.c b/gnu/usr.bin/as/output-file.c index 87b4db9d3d459..4cb6ec4e0f8e2 100644 --- a/gnu/usr.bin/as/output-file.c +++ b/gnu/usr.bin/as/output-file.c @@ -27,7 +27,7 @@ /* note that we do need config info. xoxorich. */ #ifndef lint -static char rcsid[] = "$Id$"; +static char rcsid[] = "$Id: output-file.c,v 1.5 1997/02/22 15:43:43 peter Exp $"; #endif #include <stdio.h> diff --git a/gnu/usr.bin/as/output-file.h b/gnu/usr.bin/as/output-file.h index 641b599c04ad0..c101642959ab9 100644 --- a/gnu/usr.bin/as/output-file.h +++ b/gnu/usr.bin/as/output-file.h @@ -18,7 +18,7 @@ along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id$ + * $Id: output-file.h,v 1.4 1997/02/22 15:43:43 peter Exp $ */ diff --git a/gnu/usr.bin/as/read.c b/gnu/usr.bin/as/read.c index 9e8db59ca835d..1940ffaeb243e 100644 --- a/gnu/usr.bin/as/read.c +++ b/gnu/usr.bin/as/read.c @@ -19,7 +19,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef lint -static char rcsid[] = "$Id: read.c,v 1.11 1997/04/29 02:11:48 jdp Exp $"; +static char rcsid[] = "$Id: read.c,v 1.12 1998/01/10 05:36:35 jdp Exp $"; #endif #define MASK_CHAR (0xFF) /* If your chars aren't 8 bits, you will diff --git a/gnu/usr.bin/as/read.h b/gnu/usr.bin/as/read.h index 228dd9655a44a..8529b2ab000f1 100644 --- a/gnu/usr.bin/as/read.h +++ b/gnu/usr.bin/as/read.h @@ -18,7 +18,7 @@ along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id$ + * $Id: read.h,v 1.8 1997/02/22 15:43:45 peter Exp $ */ diff --git a/gnu/usr.bin/as/struc-symbol.h b/gnu/usr.bin/as/struc-symbol.h index e6ca65ca52475..f9dc16cf12e35 100644 --- a/gnu/usr.bin/as/struc-symbol.h +++ b/gnu/usr.bin/as/struc-symbol.h @@ -17,7 +17,7 @@ along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id$ + * $Id: struc-symbol.h,v 1.8 1997/02/22 15:43:45 peter Exp $ */ diff --git a/gnu/usr.bin/as/subsegs.c b/gnu/usr.bin/as/subsegs.c index 7501f42af64ca..d04a819538811 100644 --- a/gnu/usr.bin/as/subsegs.c +++ b/gnu/usr.bin/as/subsegs.c @@ -22,7 +22,7 @@ */ #ifndef lint -static char rcsid[] = "$Id$"; +static char rcsid[] = "$Id: subsegs.c,v 1.7 1997/02/22 15:43:45 peter Exp $"; #endif #include "as.h" diff --git a/gnu/usr.bin/as/subsegs.h b/gnu/usr.bin/as/subsegs.h index 9b81631afa532..c1e5d4784657f 100644 --- a/gnu/usr.bin/as/subsegs.h +++ b/gnu/usr.bin/as/subsegs.h @@ -18,7 +18,7 @@ along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id$ + * $Id: subsegs.h,v 1.5 1997/02/22 15:43:49 peter Exp $ */ diff --git a/gnu/usr.bin/as/symbols.c b/gnu/usr.bin/as/symbols.c index 44d7105f9a37e..0090fa3d8c95e 100644 --- a/gnu/usr.bin/as/symbols.c +++ b/gnu/usr.bin/as/symbols.c @@ -19,7 +19,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef lint -static char rcsid[] = "$Id$"; +static char rcsid[] = "$Id: symbols.c,v 1.6 1997/02/22 15:43:51 peter Exp $"; #endif #include "as.h" diff --git a/gnu/usr.bin/as/symbols.h b/gnu/usr.bin/as/symbols.h index edd7ff19f4f0b..0226946143216 100644 --- a/gnu/usr.bin/as/symbols.h +++ b/gnu/usr.bin/as/symbols.h @@ -18,7 +18,7 @@ along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id$ + * $Id: symbols.h,v 1.5 1997/02/22 15:43:57 peter Exp $ */ diff --git a/gnu/usr.bin/as/tc.h b/gnu/usr.bin/as/tc.h index 4641cf74d65f0..ac68b64a3bb47 100644 --- a/gnu/usr.bin/as/tc.h +++ b/gnu/usr.bin/as/tc.h @@ -18,7 +18,7 @@ along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id$ + * $Id: tc.h,v 1.5 1997/02/22 15:44:02 peter Exp $ */ diff --git a/gnu/usr.bin/as/testscripts/doboth b/gnu/usr.bin/as/testscripts/doboth index a8c33580bb0c5..0ca88b7e7694d 100755 --- a/gnu/usr.bin/as/testscripts/doboth +++ b/gnu/usr.bin/as/testscripts/doboth @@ -1,5 +1,5 @@ #!/bin/sh -# $Id$ +# $Id: doboth,v 1.3 1997/02/22 15:44:33 peter Exp $ x=$1 ; shift y=$1 ; shift diff --git a/gnu/usr.bin/as/testscripts/doobjcmp b/gnu/usr.bin/as/testscripts/doobjcmp index 9fbe46b13f870..5369543cdbfe1 100755 --- a/gnu/usr.bin/as/testscripts/doobjcmp +++ b/gnu/usr.bin/as/testscripts/doobjcmp @@ -1,5 +1,5 @@ #!/bin/sh -# $Id$ +# $Id: doobjcmp,v 1.3 1997/02/22 15:44:33 peter Exp $ # compare two object files, in depth. x=$1 diff --git a/gnu/usr.bin/as/testscripts/dostriptest b/gnu/usr.bin/as/testscripts/dostriptest index 4b89df8d2d53e..5066052f8aae2 100755 --- a/gnu/usr.bin/as/testscripts/dostriptest +++ b/gnu/usr.bin/as/testscripts/dostriptest @@ -1,5 +1,5 @@ #!/bin/sh -# $Id$ +# $Id: dostriptest,v 1.3 1997/02/22 15:44:34 peter Exp $ x=striptest.xx.$$ y=striptest.yy.$$ diff --git a/gnu/usr.bin/as/testscripts/dotest b/gnu/usr.bin/as/testscripts/dotest index 8c7a28c6871a4..7843eb9b7f8d5 100755 --- a/gnu/usr.bin/as/testscripts/dotest +++ b/gnu/usr.bin/as/testscripts/dotest @@ -1,6 +1,6 @@ #!/bin/sh # ad hoc debug tool -# $Id$ +# $Id: dotest,v 1.3 1997/02/22 15:44:35 peter Exp $ x=$1 y=$2 diff --git a/gnu/usr.bin/as/testscripts/dounsortreloc b/gnu/usr.bin/as/testscripts/dounsortreloc index d8da0a9d63503..7ff4f02fb3357 100755 --- a/gnu/usr.bin/as/testscripts/dounsortreloc +++ b/gnu/usr.bin/as/testscripts/dounsortreloc @@ -1,5 +1,5 @@ #!/bin/sh -# $Id$ +# $Id: dounsortreloc,v 1.3 1997/02/22 15:44:36 peter Exp $ # objdump the reloc table, but strip off the headings and reloc # numbers and sort the result. Intended for use in comparing reloc # tables that may not be in the same order. diff --git a/gnu/usr.bin/as/testscripts/dounsortsymbols b/gnu/usr.bin/as/testscripts/dounsortsymbols index 8fb6db3f87988..6660733448782 100755 --- a/gnu/usr.bin/as/testscripts/dounsortsymbols +++ b/gnu/usr.bin/as/testscripts/dounsortsymbols @@ -1,5 +1,5 @@ #!/bin/sh -# $Id$ +# $Id: dounsortsymbols,v 1.3 1997/02/22 15:44:37 peter Exp $ # objdump the symbol table, but strip off the headings and symbol # numbers and sort the result. Intended for use in comparing symbol # tables that may not be in the same order. diff --git a/gnu/usr.bin/as/version.c b/gnu/usr.bin/as/version.c index 569b1fffe84fb..4fe39035cc1b8 100644 --- a/gnu/usr.bin/as/version.c +++ b/gnu/usr.bin/as/version.c @@ -16,10 +16,10 @@ const */ #ifndef lint -static char rcsid[] = "$Id$"; +static char rcsid[] = "$Id: version.c,v 1.6 1997/02/22 15:44:07 peter Exp $"; #endif -char version_string[] = "GNU assembler version 1.92.3, FreeBSD $Revision: 1.5 $\n"; +char version_string[] = "GNU assembler version 1.92.3, FreeBSD $Revision: 1.6 $\n"; #ifdef HO_VMS dummy3() diff --git a/gnu/usr.bin/as/write.c b/gnu/usr.bin/as/write.c index 896d6ee68ee2d..954be4b5db093 100644 --- a/gnu/usr.bin/as/write.c +++ b/gnu/usr.bin/as/write.c @@ -21,7 +21,7 @@ /* This thing should be set up to do byteordering correctly. But... */ #ifndef lint -static char rcsid[] = "$Id$"; +static char rcsid[] = "$Id: write.c,v 1.10 1997/02/22 15:44:08 peter Exp $"; #endif #include "as.h" diff --git a/gnu/usr.bin/as/xmalloc.c b/gnu/usr.bin/as/xmalloc.c index 754ffa262b08d..2d35bb0f87796 100644 --- a/gnu/usr.bin/as/xmalloc.c +++ b/gnu/usr.bin/as/xmalloc.c @@ -42,7 +42,7 @@ */ #ifndef lint -static char rcsid[] = "$Id$"; +static char rcsid[] = "$Id: xmalloc.c,v 1.5 1997/02/22 15:44:09 peter Exp $"; #endif #include <stdio.h> diff --git a/gnu/usr.bin/as/xrealloc.c b/gnu/usr.bin/as/xrealloc.c index 933022be71d96..3ed05dfe410d2 100644 --- a/gnu/usr.bin/as/xrealloc.c +++ b/gnu/usr.bin/as/xrealloc.c @@ -43,7 +43,7 @@ */ #ifndef lint -static char rcsid[] = "$Id$"; +static char rcsid[] = "$Id: xrealloc.c,v 1.5 1997/02/22 15:44:10 peter Exp $"; #endif diff --git a/gnu/usr.bin/awk/Makefile b/gnu/usr.bin/awk/Makefile index bd3e4a1118e42..b1a2e5d2d838b 100644 --- a/gnu/usr.bin/awk/Makefile +++ b/gnu/usr.bin/awk/Makefile @@ -1,6 +1,6 @@ # Makefile copyright James Raynard (jraynard@freebsd.org) 1997 # -# $Id: Makefile,v 1.10 1997/10/26 12:53:16 jraynard Exp $ +# $Id: Makefile,v 1.11 1998/05/04 16:18:57 bde Exp $ .include "${.CURDIR}/../Makefile.inc" diff --git a/gnu/usr.bin/awk/doc/Makefile b/gnu/usr.bin/awk/doc/Makefile index 456e6e004c9a9..4da98a938a9ff 100644 --- a/gnu/usr.bin/awk/doc/Makefile +++ b/gnu/usr.bin/awk/doc/Makefile @@ -1,6 +1,6 @@ # Makefile copyright James Raynard (jraynard@freebsd.org) 1997 # -# $Id: Makefile,v 1.5 1997/10/11 17:05:07 jraynard Exp $ +# $Id: Makefile,v 1.4 1997/10/14 18:32:38 jraynard Exp $ .PATH: ${.CURDIR}/../../../../contrib/awk/doc diff --git a/gnu/usr.bin/bc/Makefile b/gnu/usr.bin/bc/Makefile index ca06c990d7324..691cec59c33e0 100644 --- a/gnu/usr.bin/bc/Makefile +++ b/gnu/usr.bin/bc/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.13 1998/05/01 19:13:41 ache Exp $ +# $Id: Makefile,v 1.14 1998/05/04 16:22:30 bde Exp $ .PATH: ${.CURDIR}/../../../contrib/bc/bc \ ${.CURDIR}/../../../contrib/bc/lib \ diff --git a/gnu/usr.bin/binutils/Makefile b/gnu/usr.bin/binutils/Makefile index 61db075a293c9..e9c8e3899da45 100644 --- a/gnu/usr.bin/binutils/Makefile +++ b/gnu/usr.bin/binutils/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.3 1998/03/30 02:19:09 jdp Exp $ +# $Id: Makefile,v 1.4 1998/10/03 03:59:47 jdp Exp $ # SUBDIR= libiberty libbfd libopcodes libbinutils \ diff --git a/gnu/usr.bin/binutils/Makefile.inc b/gnu/usr.bin/binutils/Makefile.inc index f39564c8d5252..535cd3253f7ab 100644 --- a/gnu/usr.bin/binutils/Makefile.inc +++ b/gnu/usr.bin/binutils/Makefile.inc @@ -1,5 +1,5 @@ # -# $Id: Makefile.inc,v 1.2 1998/05/04 21:13:50 jb Exp $ +# $Id: Makefile.inc,v 1.3 1998/08/18 06:51:08 jb Exp $ # BINDIR?= /usr/libexec/elf diff --git a/gnu/usr.bin/binutils/Makefile.inc0 b/gnu/usr.bin/binutils/Makefile.inc0 index 9ee42e648ab35..c5ddfe8e6b93e 100644 --- a/gnu/usr.bin/binutils/Makefile.inc0 +++ b/gnu/usr.bin/binutils/Makefile.inc0 @@ -1,5 +1,5 @@ # -# $Id: Makefile.inc0,v 1.4 1998/05/04 21:10:56 jb Exp $ +# $Id: Makefile.inc0,v 1.5 1998/09/06 23:01:49 jdp Exp $ # # diff --git a/gnu/usr.bin/binutils/addr2line/Makefile b/gnu/usr.bin/binutils/addr2line/Makefile index 13fac955e7268..451f91cf1cfb5 100644 --- a/gnu/usr.bin/binutils/addr2line/Makefile +++ b/gnu/usr.bin/binutils/addr2line/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.1.1.1 1998/03/01 23:40:49 jdp Exp $ +# $Id: Makefile,v 1.2 1998/06/03 18:00:51 peter Exp $ # .include "../Makefile.inc0" diff --git a/gnu/usr.bin/binutils/ar/Makefile b/gnu/usr.bin/binutils/ar/Makefile index a39e755f5995f..8806b3f142df7 100644 --- a/gnu/usr.bin/binutils/ar/Makefile +++ b/gnu/usr.bin/binutils/ar/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.2 1998/03/12 02:54:55 jdp Exp $ +# $Id: Makefile,v 1.3 1998/06/03 18:00:53 peter Exp $ # .include "../Makefile.inc0" diff --git a/gnu/usr.bin/binutils/as/Makefile b/gnu/usr.bin/binutils/as/Makefile index e3e9b7aaf4ce2..366ab9f7f5130 100644 --- a/gnu/usr.bin/binutils/as/Makefile +++ b/gnu/usr.bin/binutils/as/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.3 1998/05/04 22:01:27 jb Exp $ +# $Id: Makefile,v 1.4 1998/05/11 09:31:17 jb Exp $ # GASES= ${MACHINE_ARCH} ${CROSS_TOOLS} ${CROSS_TARGETS} diff --git a/gnu/usr.bin/binutils/as/Makefile.inc b/gnu/usr.bin/binutils/as/Makefile.inc index 95e7b36f1ea6c..517249513fcd2 100644 --- a/gnu/usr.bin/binutils/as/Makefile.inc +++ b/gnu/usr.bin/binutils/as/Makefile.inc @@ -1,4 +1,4 @@ -# $Id: Makefile.inc,v 1.1 1998/05/05 10:27:39 jb Exp $ +# $Id: Makefile.inc,v 1.2 1998/05/05 12:33:21 jb Exp $ # BINDIR .include "${.CURDIR}/../../Makefile.inc" diff --git a/gnu/usr.bin/binutils/as/Makefile.inc0 b/gnu/usr.bin/binutils/as/Makefile.inc0 index 7dbc0471d9b70..4a94487ebccda 100644 --- a/gnu/usr.bin/binutils/as/Makefile.inc0 +++ b/gnu/usr.bin/binutils/as/Makefile.inc0 @@ -1,5 +1,5 @@ # -# $Id: Makefile.inc0,v 1.3 1998/06/03 18:57:59 peter Exp $ +# $Id: Makefile.inc0,v 1.4 1998/09/06 23:01:52 jdp Exp $ # .include "${.CURDIR}/../../Makefile.inc0" diff --git a/gnu/usr.bin/binutils/as/as_alpha/Makefile b/gnu/usr.bin/binutils/as/as_alpha/Makefile index a58d93f3ea78c..9e417ca044b7d 100644 --- a/gnu/usr.bin/binutils/as/as_alpha/Makefile +++ b/gnu/usr.bin/binutils/as/as_alpha/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.2 1998/05/05 08:56:24 jb Exp $ +# $Id: Makefile,v 1.3 1998/05/05 10:32:47 jb Exp $ # .include "${.CURDIR}/../Makefile.inc0" diff --git a/gnu/usr.bin/binutils/as/as_i386/Makefile b/gnu/usr.bin/binutils/as/as_i386/Makefile index 273e27f462bec..981782bc5fc97 100644 --- a/gnu/usr.bin/binutils/as/as_i386/Makefile +++ b/gnu/usr.bin/binutils/as/as_i386/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.2 1998/05/05 08:57:11 jb Exp $ +# $Id: Makefile,v 1.3 1998/05/05 10:31:52 jb Exp $ # .include "${.CURDIR}/../Makefile.inc0" diff --git a/gnu/usr.bin/binutils/c++filt/Makefile b/gnu/usr.bin/binutils/c++filt/Makefile index 660d6db336313..564745cce94af 100644 --- a/gnu/usr.bin/binutils/c++filt/Makefile +++ b/gnu/usr.bin/binutils/c++filt/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.1.1.1 1998/03/01 23:40:51 jdp Exp $ +# $Id: Makefile,v 1.2 1998/06/03 18:00:56 peter Exp $ # .include "../Makefile.inc0" diff --git a/gnu/usr.bin/binutils/doc/Makefile b/gnu/usr.bin/binutils/doc/Makefile index 1c22a40d599b9..2e4e9c84b5360 100644 --- a/gnu/usr.bin/binutils/doc/Makefile +++ b/gnu/usr.bin/binutils/doc/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.1 1998/10/03 03:59:47 jdp Exp $ .include "../Makefile.inc0" diff --git a/gnu/usr.bin/binutils/ld/Makefile b/gnu/usr.bin/binutils/ld/Makefile index edc42f249f045..8586189fadbec 100644 --- a/gnu/usr.bin/binutils/ld/Makefile +++ b/gnu/usr.bin/binutils/ld/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.5 1998/06/03 18:00:49 peter Exp $ +# $Id: Makefile,v 1.6 1998/06/04 06:26:23 bde Exp $ # .include "../Makefile.inc0" diff --git a/gnu/usr.bin/binutils/ld/Makefile.alpha b/gnu/usr.bin/binutils/ld/Makefile.alpha index c33129d2ab5ef..03fb725c45992 100644 --- a/gnu/usr.bin/binutils/ld/Makefile.alpha +++ b/gnu/usr.bin/binutils/ld/Makefile.alpha @@ -1,5 +1,5 @@ # -# $Id: Makefile.alpha,v 1.2 1998/05/04 21:29:54 jb Exp $ +# $Id: Makefile.alpha,v 1.3 1998/06/04 06:38:17 bde Exp $ # .if ${MACHINE_ARCH} == "alpha" diff --git a/gnu/usr.bin/binutils/ld/Makefile.i386 b/gnu/usr.bin/binutils/ld/Makefile.i386 index 52de54d4bb984..530d643d30074 100644 --- a/gnu/usr.bin/binutils/ld/Makefile.i386 +++ b/gnu/usr.bin/binutils/ld/Makefile.i386 @@ -1,5 +1,5 @@ # -# $Id: Makefile.i386,v 1.3 1998/05/04 21:29:54 jb Exp $ +# $Id: Makefile.i386,v 1.4 1998/06/04 06:38:17 bde Exp $ # .if ${MACHINE_ARCH} == "i386" diff --git a/gnu/usr.bin/binutils/libbfd/Makefile b/gnu/usr.bin/binutils/libbfd/Makefile index 1fb17cd63ee73..ee04b4abbdcf5 100644 --- a/gnu/usr.bin/binutils/libbfd/Makefile +++ b/gnu/usr.bin/binutils/libbfd/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.5 1998/06/04 06:50:57 bde Exp $ +# $Id: Makefile,v 1.6 1998/09/06 23:01:53 jdp Exp $ # .include "../Makefile.inc0" diff --git a/gnu/usr.bin/binutils/libbfd/Makefile.alpha b/gnu/usr.bin/binutils/libbfd/Makefile.alpha index 7c98ead96f6e3..7d596528cd2f8 100644 --- a/gnu/usr.bin/binutils/libbfd/Makefile.alpha +++ b/gnu/usr.bin/binutils/libbfd/Makefile.alpha @@ -1,5 +1,5 @@ # -# $Id: Makefile.alpha,v 1.2 1998/05/04 21:16:46 jb Exp $ +# $Id: Makefile.alpha,v 1.3 1998/06/04 06:50:58 bde Exp $ # SRCS+= coff-alpha.c cpu-alpha.c ecoff.c ecofflink.c elf64-alpha.c \ diff --git a/gnu/usr.bin/binutils/libbfd/Makefile.i386 b/gnu/usr.bin/binutils/libbfd/Makefile.i386 index b7d73470108c7..b3905077331a8 100644 --- a/gnu/usr.bin/binutils/libbfd/Makefile.i386 +++ b/gnu/usr.bin/binutils/libbfd/Makefile.i386 @@ -1,5 +1,5 @@ # -# $Id: Makefile.i386,v 1.4 1998/05/04 21:16:46 jb Exp $ +# $Id: Makefile.i386,v 1.5 1998/06/04 06:50:58 bde Exp $ # SRCS+= cpu-i386.c elf32-i386.c elf32-target.h elf32.c elflink.c VECS+= bfd_elf32_i386_vec diff --git a/gnu/usr.bin/binutils/libbinutils/Makefile b/gnu/usr.bin/binutils/libbinutils/Makefile index bc0b860f914a7..989a115bde125 100644 --- a/gnu/usr.bin/binutils/libbinutils/Makefile +++ b/gnu/usr.bin/binutils/libbinutils/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.4 1998/05/04 21:21:17 jb Exp $ +# $Id: Makefile,v 1.5 1998/06/04 01:09:28 bde Exp $ # .include "../Makefile.inc0" diff --git a/gnu/usr.bin/binutils/libbinutils/Makefile.alpha b/gnu/usr.bin/binutils/libbinutils/Makefile.alpha index 91193fa86f59d..957f102beb538 100644 --- a/gnu/usr.bin/binutils/libbinutils/Makefile.alpha +++ b/gnu/usr.bin/binutils/libbinutils/Makefile.alpha @@ -1,5 +1,5 @@ # -# $Id: Makefile.i386,v 1.1 1998/03/12 02:55:30 jdp Exp $ +# $Id: Makefile.alpha,v 1.1 1998/03/12 08:00:03 jb Exp $ # TARGET= alpha-unknown-freebsdelf diff --git a/gnu/usr.bin/binutils/libbinutils/Makefile.i386 b/gnu/usr.bin/binutils/libbinutils/Makefile.i386 index bfdd78a25c888..2da4506db7a87 100644 --- a/gnu/usr.bin/binutils/libbinutils/Makefile.i386 +++ b/gnu/usr.bin/binutils/libbinutils/Makefile.i386 @@ -1,5 +1,5 @@ # -# $Id$ +# $Id: Makefile.i386,v 1.1 1998/03/12 02:55:30 jdp Exp $ # TARGET= i386-unknown-freebsdelf diff --git a/gnu/usr.bin/binutils/libiberty/Makefile b/gnu/usr.bin/binutils/libiberty/Makefile index e16b67867a937..5fff7845a070e 100644 --- a/gnu/usr.bin/binutils/libiberty/Makefile +++ b/gnu/usr.bin/binutils/libiberty/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.1.1.1 1998/03/01 23:41:09 jdp Exp $ +# $Id: Makefile,v 1.2 1998/03/12 05:14:17 jdp Exp $ # .include "../Makefile.inc0" diff --git a/gnu/usr.bin/binutils/libopcodes/Makefile b/gnu/usr.bin/binutils/libopcodes/Makefile index 410bb92c50e44..174398b241f43 100644 --- a/gnu/usr.bin/binutils/libopcodes/Makefile +++ b/gnu/usr.bin/binutils/libopcodes/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.2 1998/03/12 02:55:32 jdp Exp $ +# $Id: Makefile,v 1.3 1998/03/12 05:14:19 jdp Exp $ # .include "../Makefile.inc0" diff --git a/gnu/usr.bin/binutils/libopcodes/Makefile.alpha b/gnu/usr.bin/binutils/libopcodes/Makefile.alpha index ee6af66be846f..bda1ebaac8439 100644 --- a/gnu/usr.bin/binutils/libopcodes/Makefile.alpha +++ b/gnu/usr.bin/binutils/libopcodes/Makefile.alpha @@ -1,5 +1,5 @@ # -# $Id: Makefile.alpha,v 1.1 1998/03/12 13:02:46 jb Exp $ +# $Id: Makefile.alpha,v 1.2 1998/05/04 21:18:46 jb Exp $ # SRCS+= alpha-dis.c alpha-opc.c diff --git a/gnu/usr.bin/binutils/libopcodes/Makefile.i386 b/gnu/usr.bin/binutils/libopcodes/Makefile.i386 index 42352ec115956..4e89e93b4a1bf 100644 --- a/gnu/usr.bin/binutils/libopcodes/Makefile.i386 +++ b/gnu/usr.bin/binutils/libopcodes/Makefile.i386 @@ -1,5 +1,5 @@ # -# $Id$ +# $Id: Makefile.i386,v 1.1 1998/03/12 02:55:32 jdp Exp $ # SRCS+= i386-dis.c diff --git a/gnu/usr.bin/binutils/nm/Makefile b/gnu/usr.bin/binutils/nm/Makefile index d3495552f2a40..6170eef013307 100644 --- a/gnu/usr.bin/binutils/nm/Makefile +++ b/gnu/usr.bin/binutils/nm/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.2 1998/03/12 02:55:34 jdp Exp $ +# $Id: Makefile,v 1.3 1998/06/03 18:00:57 peter Exp $ # .include "../Makefile.inc0" diff --git a/gnu/usr.bin/binutils/objcopy/Makefile b/gnu/usr.bin/binutils/objcopy/Makefile index f9e2a29c8d7da..ecd56d3e024f9 100644 --- a/gnu/usr.bin/binutils/objcopy/Makefile +++ b/gnu/usr.bin/binutils/objcopy/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.2 1998/03/12 02:55:36 jdp Exp $ +# $Id: Makefile,v 1.3 1998/06/03 18:00:58 peter Exp $ # .include "../Makefile.inc0" diff --git a/gnu/usr.bin/binutils/objdump/Makefile b/gnu/usr.bin/binutils/objdump/Makefile index f712f121b0947..4aa4a6fe8a9cd 100644 --- a/gnu/usr.bin/binutils/objdump/Makefile +++ b/gnu/usr.bin/binutils/objdump/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.2 1998/03/12 02:55:38 jdp Exp $ +# $Id: Makefile,v 1.3 1998/06/03 18:00:59 peter Exp $ # .include "../Makefile.inc0" diff --git a/gnu/usr.bin/binutils/ranlib/Makefile b/gnu/usr.bin/binutils/ranlib/Makefile index 3b7d4e13777aa..5d492fb4b05b3 100644 --- a/gnu/usr.bin/binutils/ranlib/Makefile +++ b/gnu/usr.bin/binutils/ranlib/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.2 1998/03/12 02:55:39 jdp Exp $ +# $Id: Makefile,v 1.3 1998/06/03 18:01:00 peter Exp $ # .include "../Makefile.inc0" diff --git a/gnu/usr.bin/binutils/size/Makefile b/gnu/usr.bin/binutils/size/Makefile index e69ac268a62bc..1df9ff2d050d1 100644 --- a/gnu/usr.bin/binutils/size/Makefile +++ b/gnu/usr.bin/binutils/size/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.2 1998/03/12 02:55:40 jdp Exp $ +# $Id: Makefile,v 1.3 1998/06/03 18:01:02 peter Exp $ # .include "../Makefile.inc0" diff --git a/gnu/usr.bin/binutils/strings/Makefile b/gnu/usr.bin/binutils/strings/Makefile index 08d4cbe7fdcdf..e01ad73f3e95d 100644 --- a/gnu/usr.bin/binutils/strings/Makefile +++ b/gnu/usr.bin/binutils/strings/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.2 1998/03/12 02:55:42 jdp Exp $ +# $Id: Makefile,v 1.3 1998/06/03 18:01:03 peter Exp $ # .include "../Makefile.inc0" diff --git a/gnu/usr.bin/binutils/strip/Makefile b/gnu/usr.bin/binutils/strip/Makefile index 13cc895720fdd..847f8065ceedd 100644 --- a/gnu/usr.bin/binutils/strip/Makefile +++ b/gnu/usr.bin/binutils/strip/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.4 1998/06/03 18:01:04 peter Exp $ +# $Id: Makefile,v 1.5 1999/01/08 10:33:12 n_hibma Exp $ # .include "../Makefile.inc0" diff --git a/gnu/usr.bin/bison/Makefile b/gnu/usr.bin/bison/Makefile index 89f0ed5977864..9fc742631aec9 100644 --- a/gnu/usr.bin/bison/Makefile +++ b/gnu/usr.bin/bison/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.3 1997/02/22 15:44:42 peter Exp $ .PATH: ${.CURDIR}/../../../contrib/bison diff --git a/gnu/usr.bin/bison/data/Makefile b/gnu/usr.bin/bison/data/Makefile index 140a6c41a243c..e2203879dcff5 100644 --- a/gnu/usr.bin/bison/data/Makefile +++ b/gnu/usr.bin/bison/data/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.5 1997/02/22 15:44:44 peter Exp $ +# $Id: Makefile,v 1.6 1997/08/21 03:28:07 jmg Exp $ BISONDIR=${.CURDIR}/../../../../contrib/bison diff --git a/gnu/usr.bin/bison/doc/Makefile b/gnu/usr.bin/bison/doc/Makefile index 8e294946993d5..30a2a9fce52ac 100644 --- a/gnu/usr.bin/bison/doc/Makefile +++ b/gnu/usr.bin/bison/doc/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.5 1997/02/22 15:44:45 peter Exp $ INFO = bison INFOSECTION= "Programming & development tools." diff --git a/gnu/usr.bin/cc/Makefile b/gnu/usr.bin/cc/Makefile index 22d967effadef..54f0394b6373a 100644 --- a/gnu/usr.bin/cc/Makefile +++ b/gnu/usr.bin/cc/Makefile @@ -1,5 +1,5 @@ # -# $Id$ +# $Id: Makefile,v 1.9 1997/02/22 15:44:47 peter Exp $ # # The order of some of these are rather important. Some depend on previous diff --git a/gnu/usr.bin/cc/Makefile.inc b/gnu/usr.bin/cc/Makefile.inc index 105c183844220..ff6d18c5801a0 100644 --- a/gnu/usr.bin/cc/Makefile.inc +++ b/gnu/usr.bin/cc/Makefile.inc @@ -1,5 +1,5 @@ # -# $Id: Makefile.inc,v 1.24 1998/10/26 18:27:32 imp Exp $ +# $Id: Makefile.inc,v 1.25 1999/01/16 13:22:35 peter Exp $ # # Sometimes this is .include'd several times... diff --git a/gnu/usr.bin/cc/c++/Makefile b/gnu/usr.bin/cc/c++/Makefile index 0fec07193731b..ae13df5664879 100644 --- a/gnu/usr.bin/cc/c++/Makefile +++ b/gnu/usr.bin/cc/c++/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.8 1998/03/08 12:27:04 obrien Exp $ +# $Id: Makefile,v 1.9 1998/03/18 12:28:09 obrien Exp $ # PROG = c++ diff --git a/gnu/usr.bin/cc/c++filt/Makefile b/gnu/usr.bin/cc/c++filt/Makefile index 34cd99e598a37..448d24ad45226 100644 --- a/gnu/usr.bin/cc/c++filt/Makefile +++ b/gnu/usr.bin/cc/c++filt/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.3 1997/02/22 15:44:50 peter Exp $ +# $Id: Makefile,v 1.4 1998/07/08 00:14:15 bde Exp $ # PROG = c++filt diff --git a/gnu/usr.bin/cc/cc/Makefile b/gnu/usr.bin/cc/cc/Makefile index 91400cc7ea323..6894f07bc10cc 100644 --- a/gnu/usr.bin/cc/cc/Makefile +++ b/gnu/usr.bin/cc/cc/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.12 1997/02/22 15:44:52 peter Exp $ +# $Id: Makefile,v 1.13 1998/03/08 05:29:46 peter Exp $ # PROG = cc diff --git a/gnu/usr.bin/cc/cc1/Makefile b/gnu/usr.bin/cc/cc1/Makefile index 9be4343114591..7a1f58f20b57e 100644 --- a/gnu/usr.bin/cc/cc1/Makefile +++ b/gnu/usr.bin/cc/cc1/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.11 1997/02/22 15:44:53 peter Exp $ +# $Id: Makefile,v 1.12 1997/06/29 06:03:14 pst Exp $ # PROG = cc1 diff --git a/gnu/usr.bin/cc/cc1obj/Makefile b/gnu/usr.bin/cc/cc1obj/Makefile index 05aac08e818fb..14ed562c731a7 100644 --- a/gnu/usr.bin/cc/cc1obj/Makefile +++ b/gnu/usr.bin/cc/cc1obj/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.4 1997/02/22 15:44:54 peter Exp $ +# $Id: Makefile,v 1.5 1997/06/29 06:03:24 pst Exp $ # PROG = cc1obj diff --git a/gnu/usr.bin/cc/cc1plus/Makefile b/gnu/usr.bin/cc/cc1plus/Makefile index 51435074f2c93..2ec4dfe2043f2 100644 --- a/gnu/usr.bin/cc/cc1plus/Makefile +++ b/gnu/usr.bin/cc/cc1plus/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.12 1997/06/29 06:03:27 pst Exp $ +# $Id: Makefile,v 1.13 1997/10/05 09:39:06 jkh Exp $ # #First, so that we get cp/tree.c and cp/expr.c instead of the C version diff --git a/gnu/usr.bin/cc/cc_int/Makefile b/gnu/usr.bin/cc/cc_int/Makefile index 3c0f2e8f2b823..b7d661e991429 100644 --- a/gnu/usr.bin/cc/cc_int/Makefile +++ b/gnu/usr.bin/cc/cc_int/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.14 1997/02/22 15:44:57 peter Exp $ +# $Id: Makefile,v 1.15 1999/01/09 21:50:54 jdp Exp $ # .include "../Makefile.inc" diff --git a/gnu/usr.bin/cc/cc_tools/Makefile b/gnu/usr.bin/cc/cc_tools/Makefile index 72e563c16d80c..b4a0b5a1ebb41 100644 --- a/gnu/usr.bin/cc/cc_tools/Makefile +++ b/gnu/usr.bin/cc/cc_tools/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.13 1998/08/20 21:45:46 jb Exp $ +# $Id: Makefile,v 1.14 1998/10/16 16:53:15 bde Exp $ # # diff --git a/gnu/usr.bin/cc/cpp/Makefile b/gnu/usr.bin/cc/cpp/Makefile index 35efdec4f0634..6db9db9cdc427 100644 --- a/gnu/usr.bin/cc/cpp/Makefile +++ b/gnu/usr.bin/cc/cpp/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.11 1998/05/04 16:58:50 bde Exp $ PROG= cpp SRCS= cccp.c cexp.y obstack.c version.c diff --git a/gnu/usr.bin/cc/doc/Makefile b/gnu/usr.bin/cc/doc/Makefile index 6d3b48c463f63..5afcd16c0c183 100644 --- a/gnu/usr.bin/cc/doc/Makefile +++ b/gnu/usr.bin/cc/doc/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.6 1997/02/22 15:45:03 peter Exp $ +# $Id: Makefile,v 1.7 1997/12/17 19:57:35 bde Exp $ INFO = gcc cpp reno gxxint diff --git a/gnu/usr.bin/cc/f77/Makefile b/gnu/usr.bin/cc/f77/Makefile index 95cc87c70209f..32f2bb4f9e713 100644 --- a/gnu/usr.bin/cc/f77/Makefile +++ b/gnu/usr.bin/cc/f77/Makefile @@ -1,5 +1,5 @@ # -# $Id$ +# $Id: Makefile,v 1.4 1997/02/22 15:45:05 peter Exp $ # PROG = f77 diff --git a/gnu/usr.bin/cc/f77/f77.1 b/gnu/usr.bin/cc/f77/f77.1 index b4e4582182f24..45ec98e5074a6 100644 --- a/gnu/usr.bin/cc/f77/f77.1 +++ b/gnu/usr.bin/cc/f77/f77.1 @@ -1,4 +1,4 @@ -.\" $Id$ +.\" $Id: f77.1,v 1.4 1997/02/22 15:45:06 peter Exp $ .\" .Dd July 22, 1995 .Dt F77 1 diff --git a/gnu/usr.bin/cc/libgcc/Makefile b/gnu/usr.bin/cc/libgcc/Makefile index 260001aaab491..c74b75dc4ed59 100644 --- a/gnu/usr.bin/cc/libgcc/Makefile +++ b/gnu/usr.bin/cc/libgcc/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.18 1998/10/06 11:28:29 peter Exp $ +# $Id: Makefile,v 1.19 1999/01/09 21:50:55 jdp Exp $ # LIB= gcc diff --git a/gnu/usr.bin/cpio/Makefile b/gnu/usr.bin/cpio/Makefile index 3030eee06323f..9995c2e219fa8 100644 --- a/gnu/usr.bin/cpio/Makefile +++ b/gnu/usr.bin/cpio/Makefile @@ -1,7 +1,7 @@ # Note that this files is under a "BSD" copyright (c) by David O'Brien 1997, # even though it may live in src/gnu/... -# $Id: Makefile,v 1.2 1997/03/30 00:23:37 obrien Exp $ +# $Id: Makefile,v 1.6 1997/04/03 11:20:09 obrien Exp $ .PATH: ${.CURDIR}/../../../contrib/cpio diff --git a/gnu/usr.bin/cpio/doc/Makefile b/gnu/usr.bin/cpio/doc/Makefile index e18df63aee7f1..050e0e9e1991e 100644 --- a/gnu/usr.bin/cpio/doc/Makefile +++ b/gnu/usr.bin/cpio/doc/Makefile @@ -1,7 +1,7 @@ # Note that this files is under a "BSD" copyright (c) by David O'Brien 1997, # even though it may live in src/gnu/... -# $Id: Makefile,v 1.1 1997/04/03 11:20:39 obrien Exp $ +# $Id: Makefile,v 1.2 1997/08/21 08:26:55 obrien Exp $ .PATH: ${.CURDIR}/../../../../contrib/cpio diff --git a/gnu/usr.bin/cvs/Makefile b/gnu/usr.bin/cvs/Makefile index 46021395df2d5..8410e85154676 100644 --- a/gnu/usr.bin/cvs/Makefile +++ b/gnu/usr.bin/cvs/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.10 1997/02/22 15:45:10 peter Exp $ +# $Id: Makefile,v 1.11 1998/01/26 04:21:50 peter Exp $ SUBDIR = lib libdiff cvs contrib cvsbug doc tools diff --git a/gnu/usr.bin/cvs/contrib/Makefile b/gnu/usr.bin/cvs/contrib/Makefile index 3451454c66ff6..08b100687fde3 100644 --- a/gnu/usr.bin/cvs/contrib/Makefile +++ b/gnu/usr.bin/cvs/contrib/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.10 1997/05/15 23:00:05 peter Exp $ +# $Id: Makefile,v 1.11 1998/01/26 04:33:03 peter Exp $ .include "${.CURDIR}/../Makefile.inc" diff --git a/gnu/usr.bin/cvs/contrib/easy-import.pl b/gnu/usr.bin/cvs/contrib/easy-import.pl index 4a137148b381e..cac5f7597b630 100644 --- a/gnu/usr.bin/cvs/contrib/easy-import.pl +++ b/gnu/usr.bin/cvs/contrib/easy-import.pl @@ -8,7 +8,7 @@ # # Written by Jörg Wunsch, 95/03/07, and placed in the public domain. # -# $Id: easy-import.pl,v 1.13 1997/06/09 10:08:07 jmg Exp $ +# $Id: easy-import.pl,v 1.14 1997/07/15 16:48:01 itojun Exp $ require "complete.pl"; require "getopts.pl"; @@ -22,7 +22,7 @@ sub scan_opts $dont_do_it = "-n" if $opt_n; if($opt_v) { - print STDERR '$Source: /home/ncvs/src/gnu/usr.bin/cvs/contrib/easy-import.pl,v $ $Revision: 1.13 $' . "\n"; # 'emacs kludge + print STDERR '$Source: /home/ncvs/src/gnu/usr.bin/cvs/contrib/easy-import.pl,v $ $Revision: 1.14 $' . "\n"; # 'emacs kludge exit 0; } die "usage: $0 [-v] [-n] [moduledir]\n" . diff --git a/gnu/usr.bin/cvs/cvs/Makefile b/gnu/usr.bin/cvs/cvs/Makefile index 99e68f64254c1..b2d4f92f4c764 100644 --- a/gnu/usr.bin/cvs/cvs/Makefile +++ b/gnu/usr.bin/cvs/cvs/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.24 1998/08/15 17:26:36 markm Exp $ .include "${.CURDIR}/../Makefile.inc" diff --git a/gnu/usr.bin/cvs/cvsbug/Makefile b/gnu/usr.bin/cvs/cvsbug/Makefile index b7714ace3b0fd..c2e575844057a 100644 --- a/gnu/usr.bin/cvs/cvsbug/Makefile +++ b/gnu/usr.bin/cvs/cvsbug/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.7 1997/02/22 15:45:15 peter Exp $ +# $Id: Makefile,v 1.8 1997/12/18 15:22:12 bde Exp $ .include "${.CURDIR}/../Makefile.inc" diff --git a/gnu/usr.bin/cvs/doc/Makefile b/gnu/usr.bin/cvs/doc/Makefile index 5c6e3655d9709..b61d7438ea06f 100644 --- a/gnu/usr.bin/cvs/doc/Makefile +++ b/gnu/usr.bin/cvs/doc/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.9 1997/02/22 15:45:17 peter Exp $ .include "${.CURDIR}/../Makefile.inc" diff --git a/gnu/usr.bin/cvs/lib/Makefile b/gnu/usr.bin/cvs/lib/Makefile index 0c4905e4359b0..24ab84ff80d75 100644 --- a/gnu/usr.bin/cvs/lib/Makefile +++ b/gnu/usr.bin/cvs/lib/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.14 1997/05/15 23:00:07 peter Exp $ +# $Id: Makefile,v 1.15 1998/05/08 06:41:06 bde Exp $ .include "${.CURDIR}/../Makefile.inc" diff --git a/gnu/usr.bin/cvs/libdiff/Makefile b/gnu/usr.bin/cvs/libdiff/Makefile index 826446f3e30b9..b5b41cc5157f2 100644 --- a/gnu/usr.bin/cvs/libdiff/Makefile +++ b/gnu/usr.bin/cvs/libdiff/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.14 1997/05/15 23:00:07 peter Exp $ +# $Id: Makefile,v 1.1 1998/01/26 04:14:21 peter Exp $ .include "${.CURDIR}/../Makefile.inc" diff --git a/gnu/usr.bin/cvs/tools/Makefile b/gnu/usr.bin/cvs/tools/Makefile index 23e2733020d6a..298578ad91637 100644 --- a/gnu/usr.bin/cvs/tools/Makefile +++ b/gnu/usr.bin/cvs/tools/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.3 1997/02/22 15:45:21 peter Exp $ +# $Id: Makefile,v 1.4 1997/12/17 20:22:34 bde Exp $ FILES= INSTALL NEWS README \ pcl-cvs-lucid.el pcl-cvs-startup.el \ diff --git a/gnu/usr.bin/dc/Makefile b/gnu/usr.bin/dc/Makefile index ddc2f01d57158..e6c0ee3679510 100644 --- a/gnu/usr.bin/dc/Makefile +++ b/gnu/usr.bin/dc/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.9 1998/05/01 12:01:57 bde Exp $ +# $Id: Makefile,v 1.10 1998/05/01 19:20:40 ache Exp $ BCDIR= ${.CURDIR}/../../../contrib/bc diff --git a/gnu/usr.bin/dc/doc/Makefile b/gnu/usr.bin/dc/doc/Makefile index 7dfcd6c1c0a33..2e440fab6ce4b 100644 --- a/gnu/usr.bin/dc/doc/Makefile +++ b/gnu/usr.bin/dc/doc/Makefile @@ -1,6 +1,6 @@ # Makefile copyright Andreas Klemm <andreas@FreeBSD.ORG> 1998 # -# $Id: Makefile,v 1.4 1997/10/14 18:32:38 jraynard Exp $ +# $Id: Makefile,v 1.3 1998/04/29 22:15:01 andreas Exp $ .PATH: ${.CURDIR}/../../../../contrib/bc/doc diff --git a/gnu/usr.bin/dialog/Makefile b/gnu/usr.bin/dialog/Makefile index 12591419728db..e89256d2ed837 100644 --- a/gnu/usr.bin/dialog/Makefile +++ b/gnu/usr.bin/dialog/Makefile @@ -1,5 +1,5 @@ # Makefile for dialog -# $Id$ +# $Id: Makefile,v 1.6 1997/02/22 15:45:23 peter Exp $ PROG= dialog MAN1= dialog.1 diff --git a/gnu/usr.bin/diff/Makefile b/gnu/usr.bin/diff/Makefile index 2aeebb0c95b91..fffc1aae70d83 100644 --- a/gnu/usr.bin/diff/Makefile +++ b/gnu/usr.bin/diff/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.7 1997/02/22 15:45:24 peter Exp $ +# $Id: Makefile,v 1.9 1997/10/29 17:35:54 ache Exp $ .PATH: ${.CURDIR}/../../../contrib/diff diff --git a/gnu/usr.bin/diff/doc/Makefile b/gnu/usr.bin/diff/doc/Makefile index 8910545458ede..ac5c5e43fd83f 100644 --- a/gnu/usr.bin/diff/doc/Makefile +++ b/gnu/usr.bin/diff/doc/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.4 1997/02/22 15:45:26 peter Exp $ +# $Id: Makefile,v 1.5 1997/10/29 16:36:57 ache Exp $ INFO = diff diff --git a/gnu/usr.bin/diff3/Makefile b/gnu/usr.bin/diff3/Makefile index b98c2877a5dc1..f01a09059d2b8 100644 --- a/gnu/usr.bin/diff3/Makefile +++ b/gnu/usr.bin/diff3/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.7 1997/02/22 15:45:24 peter Exp $ +# $Id: Makefile,v 1.5 1997/10/29 16:50:42 ache Exp $ .PATH: ${.CURDIR}/../../../contrib/diff diff --git a/gnu/usr.bin/gdb/Makefile.inc b/gnu/usr.bin/gdb/Makefile.inc index 5e39707ef337b..78a05969d4d4f 100644 --- a/gnu/usr.bin/gdb/Makefile.inc +++ b/gnu/usr.bin/gdb/Makefile.inc @@ -1,4 +1,4 @@ -# $Id: Makefile.inc,v 1.5 1998/10/15 00:15:01 peter Exp $ +# $Id: Makefile.inc,v 1.6 1998/10/15 14:15:09 bde Exp $ CFLAGS+=-I${GDBDIR}/include -I${GDBDIR}/gdb -I${GDBDIR}/bfd CFLAGS+=-I${GDBDIR}/libiberty -I${GDBDIR}/gdb/config diff --git a/gnu/usr.bin/gdb/doc/Makefile b/gnu/usr.bin/gdb/doc/Makefile index 6d7778246c067..63a90eb629ea7 100644 --- a/gnu/usr.bin/gdb/doc/Makefile +++ b/gnu/usr.bin/gdb/doc/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.10 1998/05/01 14:08:30 bde Exp $ INFO= annotate gdb gdbint stabs diff --git a/gnu/usr.bin/gdb/doc/inc-hist.diff b/gnu/usr.bin/gdb/doc/inc-hist.diff new file mode 100644 index 0000000000000..fdd212081cd34 --- /dev/null +++ b/gnu/usr.bin/gdb/doc/inc-hist.diff @@ -0,0 +1,24 @@ +*** hsuser.texinfo Fri May 1 23:48:48 1998 +--- inc-hist.texi Mon Jun 30 22:57:58 1997 +*************** +*** 34,42 **** + @end ifset + @ifclear BashFeatures + This chapter describes how to use the GNU History Library interactively, +! from a user's standpoint. It should be considered a user's guide. For +! information on using the GNU History Library in your own programs, +! @pxref{Programming with GNU History}. + @end ifclear + + @ifset BashFeatures +--- 34,43 ---- + @end ifset + @ifclear BashFeatures + This chapter describes how to use the GNU History Library interactively, +! from a user's standpoint. +! @c It should be considered a user's guide. For +! @c information on using the GNU History Library in your own programs, +! @c @pxref{Programming with GNU History}. + @end ifclear + + @ifset BashFeatures diff --git a/gnu/usr.bin/gdb/gdb/Makefile b/gnu/usr.bin/gdb/gdb/Makefile index bc194ac719263..24b99b949760f 100644 --- a/gnu/usr.bin/gdb/gdb/Makefile +++ b/gnu/usr.bin/gdb/gdb/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.37 1998/09/14 22:49:01 jdp Exp $ +# $Id: Makefile,v 1.38 1998/10/15 14:15:09 bde Exp $ PROG = gdb diff --git a/gnu/usr.bin/gdb/gdb/gdb.1 b/gnu/usr.bin/gdb/gdb/gdb.1 index f07c89135b1d7..ccb707b8e4980 100644 --- a/gnu/usr.bin/gdb/gdb/gdb.1 +++ b/gnu/usr.bin/gdb/gdb/gdb.1 @@ -1,6 +1,6 @@ .\" Copyright (c) 1991 Free Software Foundation .\" See section COPYING for conditions for redistribution -.\" $Id: gdb.1,v 1.3 1991/12/13 22:22:58 pesch Exp $ +.\" $Id: gdb.1,v 1.6 1997/04/27 21:36:49 gj Exp $ .TH gdb 1 "4nov1991" "GNU Tools" "GNU Tools" .SH NAME gdb \- The GNU Debugger diff --git a/gnu/usr.bin/gdb/gdbreplay/Makefile b/gnu/usr.bin/gdb/gdbreplay/Makefile index 1d93cc3875de1..a49386dbd1daa 100644 --- a/gnu/usr.bin/gdb/gdbreplay/Makefile +++ b/gnu/usr.bin/gdb/gdbreplay/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.2 1997/04/26 17:34:04 pst Exp $ +# $Id: Makefile,v 1.3 1998/05/01 14:48:04 bde Exp $ GDBDIR= ${.CURDIR}/../../../../contrib/gdb .PATH: ${GDBDIR}/gdb/gdbserver diff --git a/gnu/usr.bin/gdb/gdbserver/Makefile b/gnu/usr.bin/gdb/gdbserver/Makefile index 366f1b7396b85..6a421b5dab8be 100644 --- a/gnu/usr.bin/gdb/gdbserver/Makefile +++ b/gnu/usr.bin/gdb/gdbserver/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.2 1997/04/26 17:34:05 pst Exp $ +# $Id: Makefile,v 1.3 1998/05/01 14:48:06 bde Exp $ GDBDIR= ${.CURDIR}/../../../../contrib/gdb .PATH: ${GDBDIR}/gdb/gdbserver diff --git a/gnu/usr.bin/genclass/Makefile b/gnu/usr.bin/genclass/Makefile index 93924ef15954d..5ce95fda47c2b 100644 --- a/gnu/usr.bin/genclass/Makefile +++ b/gnu/usr.bin/genclass/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.4 1997/02/22 15:45:31 peter Exp $ +# $Id: Makefile,v 1.5 1997/09/15 19:18:50 wosch Exp $ # GPPDIR= ${.CURDIR}/../../../contrib/libg++ diff --git a/gnu/usr.bin/gperf/Makefile b/gnu/usr.bin/gperf/Makefile index 55c9e84acba06..09dfdbf60fd05 100644 --- a/gnu/usr.bin/gperf/Makefile +++ b/gnu/usr.bin/gperf/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.3 1997/02/22 15:45:35 peter Exp $ .PATH: ${.CURDIR}/../../../contrib/gperf .PATH: ${.CURDIR}/../../../contrib/gperf/src diff --git a/gnu/usr.bin/gperf/doc/Makefile b/gnu/usr.bin/gperf/doc/Makefile index e9ac21d1d5f2a..2e2fa88c0a529 100644 --- a/gnu/usr.bin/gperf/doc/Makefile +++ b/gnu/usr.bin/gperf/doc/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.5 1997/02/22 15:45:38 peter Exp $ INFO = gperf INFOSECTION= "Programming & development tools." diff --git a/gnu/usr.bin/grep/Makefile b/gnu/usr.bin/grep/Makefile index 3657b36769c51..57db6a98f5338 100644 --- a/gnu/usr.bin/grep/Makefile +++ b/gnu/usr.bin/grep/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.13 1998/10/02 07:14:32 obrien Exp $ +# $Id: Makefile,v 1.14 1998/11/14 23:37:32 wosch Exp $ GREP_LIBZ= YES GREP_FTS= YES diff --git a/gnu/usr.bin/groff/Makefile b/gnu/usr.bin/groff/Makefile index 8a94ac08963b0..ea53e880f4c74 100644 --- a/gnu/usr.bin/groff/Makefile +++ b/gnu/usr.bin/groff/Makefile @@ -1,6 +1,6 @@ # Makefile for groff # -# $Id$ +# $Id: Makefile,v 2.3 1997/02/22 15:45:41 peter Exp $ SUBDIR= libgroff libdriver libbib \ addftinfo eqn \ diff --git a/gnu/usr.bin/groff/Makefile.cfg b/gnu/usr.bin/groff/Makefile.cfg index 6ebc6a578c048..8e344eba64044 100644 --- a/gnu/usr.bin/groff/Makefile.cfg +++ b/gnu/usr.bin/groff/Makefile.cfg @@ -1,4 +1,4 @@ -# $Id: Makefile.cfg,v 2.5 1997/03/11 17:57:26 peter Exp $ +# $Id: Makefile.cfg,v 2.6 1998/03/20 11:08:52 bde Exp $ BINDIR?= /usr/bin SHELL= /bin/sh diff --git a/gnu/usr.bin/groff/Makefile.dev b/gnu/usr.bin/groff/Makefile.dev index 2dcbf5ad8f025..c8cd4a4769470 100644 --- a/gnu/usr.bin/groff/Makefile.dev +++ b/gnu/usr.bin/groff/Makefile.dev @@ -2,7 +2,7 @@ # Client Makefiles define DEV and DEVFILES and provide rules for # individual font files # -# $Id: Makefile.dev,v 2.4 1997/02/22 15:45:42 peter Exp $ +# $Id: Makefile.dev,v 2.5 1997/12/17 12:04:46 bde Exp $ .include "../Makefile.cfg" diff --git a/gnu/usr.bin/groff/devX100-12/Makefile b/gnu/usr.bin/groff/devX100-12/Makefile index 70b651a979eb4..b739bf0912ae5 100644 --- a/gnu/usr.bin/groff/devX100-12/Makefile +++ b/gnu/usr.bin/groff/devX100-12/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.6 1997/02/22 15:45:45 peter Exp $ +# $Id: Makefile,v 1.7 1998/02/20 11:18:49 bde Exp $ # # Generic groff font makefile diff --git a/gnu/usr.bin/groff/devX100/Makefile b/gnu/usr.bin/groff/devX100/Makefile index 4474bafb4dc0d..fd3ddeb3c847b 100644 --- a/gnu/usr.bin/groff/devX100/Makefile +++ b/gnu/usr.bin/groff/devX100/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.6 1997/02/22 15:45:44 peter Exp $ +# $Id: Makefile,v 1.7 1998/02/20 11:18:51 bde Exp $ # # Generic groff font makefile diff --git a/gnu/usr.bin/groff/devX75-12/Makefile b/gnu/usr.bin/groff/devX75-12/Makefile index 34dfe1cbacb18..fb8d0243ad19e 100644 --- a/gnu/usr.bin/groff/devX75-12/Makefile +++ b/gnu/usr.bin/groff/devX75-12/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.6 1997/02/22 15:45:48 peter Exp $ +# $Id: Makefile,v 1.7 1998/02/20 11:18:53 bde Exp $ # # Generic groff font makefile diff --git a/gnu/usr.bin/groff/devX75/Makefile b/gnu/usr.bin/groff/devX75/Makefile index ca1e3ce9507e8..b3b3189f5d8a2 100644 --- a/gnu/usr.bin/groff/devX75/Makefile +++ b/gnu/usr.bin/groff/devX75/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.6 1997/02/22 15:45:46 peter Exp $ +# $Id: Makefile,v 1.7 1998/02/20 11:18:55 bde Exp $ # # Generic groff font makefile diff --git a/gnu/usr.bin/groff/eqn/Makefile b/gnu/usr.bin/groff/eqn/Makefile index 5ff6a75850ab1..b8dd5f02eb20c 100644 --- a/gnu/usr.bin/groff/eqn/Makefile +++ b/gnu/usr.bin/groff/eqn/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.10 1998/03/20 12:03:53 bde Exp $ +# $Id: Makefile,v 1.11 1998/04/19 13:25:54 bde Exp $ PROG= eqn SRCS= eqn.cc eqn.tab.h main.cc lex.cc \ diff --git a/gnu/usr.bin/groff/libgroff/Makefile b/gnu/usr.bin/groff/libgroff/Makefile index 1061ea68e1e09..9272f37cf7a0d 100644 --- a/gnu/usr.bin/groff/libgroff/Makefile +++ b/gnu/usr.bin/groff/libgroff/Makefile @@ -1,6 +1,6 @@ # Makefile for libgroff # -# $Id$ +# $Id: Makefile,v 1.6 1997/02/22 15:45:49 peter Exp $ # .include "../Makefile.inc" diff --git a/gnu/usr.bin/groff/pic/Makefile b/gnu/usr.bin/groff/pic/Makefile index e991184722bfb..c6350da80824a 100644 --- a/gnu/usr.bin/groff/pic/Makefile +++ b/gnu/usr.bin/groff/pic/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.6 1998/03/20 12:04:59 bde Exp $ PROG= pic SRCS= lex.cc main.cc object.cc pic.cc pic.tab.h \ diff --git a/gnu/usr.bin/groff/refer/Makefile b/gnu/usr.bin/groff/refer/Makefile index 512deb0756014..c61ae36f866e7 100644 --- a/gnu/usr.bin/groff/refer/Makefile +++ b/gnu/usr.bin/groff/refer/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.6 1998/03/20 12:05:50 bde Exp $ PROG= refer SRCS= command.cc label.cc ref.cc refer.cc token.cc diff --git a/gnu/usr.bin/groff/tmac/Makefile b/gnu/usr.bin/groff/tmac/Makefile index e6de5850c7990..09fc09914051a 100644 --- a/gnu/usr.bin/groff/tmac/Makefile +++ b/gnu/usr.bin/groff/tmac/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.15 1998/03/21 12:12:55 bde Exp $ .include "../Makefile.inc" diff --git a/gnu/usr.bin/groff/troff/Makefile b/gnu/usr.bin/groff/troff/Makefile index 41de42cc57888..91f8bef1f5fa3 100644 --- a/gnu/usr.bin/groff/troff/Makefile +++ b/gnu/usr.bin/groff/troff/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.9 1997/08/23 05:26:32 jmg Exp $ PROG= troff SRCS= env.cc node.cc input.cc div.cc symbol.cc dictionary.cc reg.cc \ diff --git a/gnu/usr.bin/gzip/Makefile b/gnu/usr.bin/gzip/Makefile index b0810774aeb3d..41a4877258218 100644 --- a/gnu/usr.bin/gzip/Makefile +++ b/gnu/usr.bin/gzip/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 5.3 (Berkeley) 5/12/90 -# $Id: Makefile,v 1.19 1998/01/25 09:52:32 jb Exp $ +# $Id: Makefile,v 1.20 1998/03/08 17:25:10 peter Exp $ PROG= gzip SRCS= gzip.c zip.c deflate.c trees.c bits.c unzip.c inflate.c util.c \ diff --git a/gnu/usr.bin/gzip/bits.c b/gnu/usr.bin/gzip/bits.c index 079434a58dbf8..ff272053ef3bb 100644 --- a/gnu/usr.bin/gzip/bits.c +++ b/gnu/usr.bin/gzip/bits.c @@ -60,7 +60,7 @@ #endif #ifdef RCSID -static char rcsid[] = "$Id$"; +static char rcsid[] = "$Id: bits.c,v 1.6 1997/02/22 15:45:54 peter Exp $"; #endif /* =========================================================================== diff --git a/gnu/usr.bin/gzip/crypt.c b/gnu/usr.bin/gzip/crypt.c index 023336812a6c6..e8ab7688f65b2 100644 --- a/gnu/usr.bin/gzip/crypt.c +++ b/gnu/usr.bin/gzip/crypt.c @@ -2,5 +2,5 @@ * Hardly worth copyrighting :-) */ #ifdef RCSID -static char rcsid[] = "$Id$"; +static char rcsid[] = "$Id: crypt.c,v 1.5 1997/02/22 15:45:55 peter Exp $"; #endif diff --git a/gnu/usr.bin/gzip/deflate.c b/gnu/usr.bin/gzip/deflate.c index a544c353c668f..4736dca1e8af2 100644 --- a/gnu/usr.bin/gzip/deflate.c +++ b/gnu/usr.bin/gzip/deflate.c @@ -68,7 +68,7 @@ #include "lzw.h" /* just for consistency checking */ #ifdef RCSID -static char rcsid[] = "$Id$"; +static char rcsid[] = "$Id: deflate.c,v 1.6 1997/02/22 15:45:56 peter Exp $"; #endif /* =========================================================================== diff --git a/gnu/usr.bin/gzip/gzip.c b/gnu/usr.bin/gzip/gzip.c index 7a666baba17e3..9fcaff834a030 100644 --- a/gnu/usr.bin/gzip/gzip.c +++ b/gnu/usr.bin/gzip/gzip.c @@ -45,7 +45,7 @@ static char *license_msg[] = { */ #ifdef RCSID -static char rcsid[] = "$Id: gzip.c,v 1.7 1997/03/15 22:43:58 guido Exp $"; +static char rcsid[] = "$Id: gzip.c,v 1.8 1997/12/27 03:38:39 wosch Exp $"; #endif #include <ctype.h> diff --git a/gnu/usr.bin/gzip/inflate.c b/gnu/usr.bin/gzip/inflate.c index e7416626b91c9..c57b673b62fa5 100644 --- a/gnu/usr.bin/gzip/inflate.c +++ b/gnu/usr.bin/gzip/inflate.c @@ -97,7 +97,7 @@ */ #ifdef RCSID -static char rcsid[] = "$Id: inflate.c,v 1.6 1997/02/22 15:45:58 peter Exp $"; +static char rcsid[] = "$Id: inflate.c,v 1.7 1997/12/26 21:12:26 wosch Exp $"; #endif #include <sys/types.h> diff --git a/gnu/usr.bin/gzip/lzw.c b/gnu/usr.bin/gzip/lzw.c index eb67d46e8b7fc..44671d9659faa 100644 --- a/gnu/usr.bin/gzip/lzw.c +++ b/gnu/usr.bin/gzip/lzw.c @@ -3,7 +3,7 @@ */ #ifdef RCSID -static char rcsid[] = "$Id$"; +static char rcsid[] = "$Id: lzw.c,v 1.5 1997/02/22 15:45:59 peter Exp $"; #endif #include "tailor.h" diff --git a/gnu/usr.bin/gzip/match.S b/gnu/usr.bin/gzip/match.S index c0f933cca09c7..6d6e46c254156 100644 --- a/gnu/usr.bin/gzip/match.S +++ b/gnu/usr.bin/gzip/match.S @@ -9,7 +9,7 @@ * Kristoffer Eriksson <ske@pkmab.se> */ -/* $Id: match.S,v 1.5 1997/02/22 15:45:59 peter Exp $ */ +/* $Id: match.S,v 1.6 1997/08/29 16:14:18 sos Exp $ */ /* Preprocess with -DNO_UNDERLINE if your C compiler does not prefix * external symbols with an underline character '_'. diff --git a/gnu/usr.bin/gzip/revision.h b/gnu/usr.bin/gzip/revision.h index 9bbb5a9ce3ec2..a01deba23a90b 100644 --- a/gnu/usr.bin/gzip/revision.h +++ b/gnu/usr.bin/gzip/revision.h @@ -13,4 +13,4 @@ # undef LZW #endif -/* $Id$ */ +/* $Id: revision.h,v 1.5 1997/02/22 15:46:00 peter Exp $ */ diff --git a/gnu/usr.bin/gzip/tailor.h b/gnu/usr.bin/gzip/tailor.h index 75e4a19bced80..6f9056f6e2928 100644 --- a/gnu/usr.bin/gzip/tailor.h +++ b/gnu/usr.bin/gzip/tailor.h @@ -8,7 +8,7 @@ * The target dependent functions should be defined in tailor.c. */ -/* $Id$ */ +/* $Id: tailor.h,v 1.6 1997/02/22 15:46:01 peter Exp $ */ #if defined(__MSDOS__) && !defined(MSDOS) # define MSDOS diff --git a/gnu/usr.bin/gzip/trees.c b/gnu/usr.bin/gzip/trees.c index 1bad5899302c0..6e1271b6d63f0 100644 --- a/gnu/usr.bin/gzip/trees.c +++ b/gnu/usr.bin/gzip/trees.c @@ -59,7 +59,7 @@ #include "gzip.h" #ifdef RCSID -static char rcsid[] = "$Id: trees.c,v 1.7 1997/08/29 16:14:19 sos Exp $"; +static char rcsid[] = "$Id: trees.c,v 1.8 1998/06/30 20:09:10 bde Exp $"; #endif /* =========================================================================== diff --git a/gnu/usr.bin/gzip/unlzh.c b/gnu/usr.bin/gzip/unlzh.c index f6399115255d1..e65ee135e3f55 100644 --- a/gnu/usr.bin/gzip/unlzh.c +++ b/gnu/usr.bin/gzip/unlzh.c @@ -4,7 +4,7 @@ */ #ifdef RCSID -static char rcsid[] = "$Id$"; +static char rcsid[] = "$Id: unlzh.c,v 1.4 1997/02/22 15:46:03 peter Exp $"; #endif #include <stdio.h> diff --git a/gnu/usr.bin/gzip/unlzw.c b/gnu/usr.bin/gzip/unlzw.c index 470d0edb6a419..57f09f7f6bc4f 100644 --- a/gnu/usr.bin/gzip/unlzw.c +++ b/gnu/usr.bin/gzip/unlzw.c @@ -8,7 +8,7 @@ */ #ifdef RCSID -static char rcsid[] = "$Id$"; +static char rcsid[] = "$Id: unlzw.c,v 1.6 1997/02/22 15:46:06 peter Exp $"; #endif #include <sys/types.h> diff --git a/gnu/usr.bin/gzip/unpack.c b/gnu/usr.bin/gzip/unpack.c index a9bc18e7e1779..0151013a2307c 100644 --- a/gnu/usr.bin/gzip/unpack.c +++ b/gnu/usr.bin/gzip/unpack.c @@ -5,7 +5,7 @@ */ #ifdef RCSID -static char rcsid[] = "$Id$"; +static char rcsid[] = "$Id: unpack.c,v 1.5 1997/02/22 15:46:07 peter Exp $"; #endif #include "tailor.h" diff --git a/gnu/usr.bin/gzip/unzip.c b/gnu/usr.bin/gzip/unzip.c index cd3d50e5a05a2..e4d99b03ed57a 100644 --- a/gnu/usr.bin/gzip/unzip.c +++ b/gnu/usr.bin/gzip/unzip.c @@ -14,7 +14,7 @@ */ #ifdef RCSID -static char rcsid[] = "$Id$"; +static char rcsid[] = "$Id: unzip.c,v 1.5 1997/02/22 15:46:07 peter Exp $"; #endif #include "tailor.h" diff --git a/gnu/usr.bin/gzip/util.c b/gnu/usr.bin/gzip/util.c index 58fef0819aab1..ba50fc4b97aa7 100644 --- a/gnu/usr.bin/gzip/util.c +++ b/gnu/usr.bin/gzip/util.c @@ -5,7 +5,7 @@ */ #ifdef RCSID -static char rcsid[] = "$Id: util.c,v 1.6 1997/02/22 15:46:10 peter Exp $"; +static char rcsid[] = "$Id: util.c,v 1.7 1997/08/29 16:14:20 sos Exp $"; #endif #include <ctype.h> diff --git a/gnu/usr.bin/gzip/zgrep.getopt b/gnu/usr.bin/gzip/zgrep.getopt index 58564b3a5040a..b1daff814f105 100644 --- a/gnu/usr.bin/gzip/zgrep.getopt +++ b/gnu/usr.bin/gzip/zgrep.getopt @@ -26,7 +26,7 @@ # # zgrep - search possibly compressed files for a regular expression # -# $Id: zgrep.getopt,v 1.5 1997/04/19 20:06:57 wosch Exp $ +# $Id: zgrep.getopt,v 1.6 1997/12/07 01:00:56 wosch Exp $ PATH=/bin:/usr/bin:$PATH; export PATH diff --git a/gnu/usr.bin/gzip/zgrep.libz b/gnu/usr.bin/gzip/zgrep.libz index 07d5267fa4a98..b4e0358c5cd70 100644 --- a/gnu/usr.bin/gzip/zgrep.libz +++ b/gnu/usr.bin/gzip/zgrep.libz @@ -5,7 +5,7 @@ # zgrep - Search possibly compressed files for a regular expression. This # version of zgrep(1) depend on a grep(1) linked with libz. # -# $Id$ +# $Id: zgrep.libz,v 1.1 1997/12/20 19:20:33 wosch Exp $ PATH=/bin:/usr/bin; export PATH diff --git a/gnu/usr.bin/gzip/zip.c b/gnu/usr.bin/gzip/zip.c index 145116de1ea62..b68d62ab76a4c 100644 --- a/gnu/usr.bin/gzip/zip.c +++ b/gnu/usr.bin/gzip/zip.c @@ -5,7 +5,7 @@ */ #ifdef RCSID -static char rcsid[] = "$Id$"; +static char rcsid[] = "$Id: zip.c,v 1.5 1997/02/22 15:46:12 peter Exp $"; #endif #include <ctype.h> diff --git a/gnu/usr.bin/ld/Makefile b/gnu/usr.bin/ld/Makefile index 6c9ff07747681..7264ef8035779 100644 --- a/gnu/usr.bin/ld/Makefile +++ b/gnu/usr.bin/ld/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.26 1998/09/07 05:46:09 jb Exp $ +# $Id: Makefile,v 1.27 1998/09/09 11:22:28 kato Exp $ # RTLD= ${.CURDIR}/../../../libexec/rtld-aout diff --git a/gnu/usr.bin/ld/PORTING b/gnu/usr.bin/ld/PORTING index e9f76145e746e..e0ffa49725fea 100644 --- a/gnu/usr.bin/ld/PORTING +++ b/gnu/usr.bin/ld/PORTING @@ -1,4 +1,4 @@ -$Id$ +$Id: PORTING,v 1.4 1997/02/22 15:46:18 peter Exp $ This document describes some of the machine dependent parts in ld(1) and rtld(?) Most of the machine dependencies are a result of different ways in which diff --git a/gnu/usr.bin/ld/ld.1 b/gnu/usr.bin/ld/ld.1 index 7aee4d7f6c98b..1fbd2e4f7808f 100644 --- a/gnu/usr.bin/ld/ld.1 +++ b/gnu/usr.bin/ld/ld.1 @@ -27,7 +27,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $Id: ld.1,v 1.19 1997/08/23 21:59:41 steve Exp $ +.\" $Id: ld.1,v 1.20 1998/07/26 04:16:04 jkoshy Exp $ .\" .Dd October 14, 1993 .Dt LD 1 diff --git a/gnu/usr.bin/ld/ld.1aout b/gnu/usr.bin/ld/ld.1aout index 7aee4d7f6c98b..ef17f9e678ad2 100644 --- a/gnu/usr.bin/ld/ld.1aout +++ b/gnu/usr.bin/ld/ld.1aout @@ -27,7 +27,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $Id: ld.1,v 1.19 1997/08/23 21:59:41 steve Exp $ +.\" $Id: ld.1aout,v 1.20 1998/07/26 04:16:04 jkoshy Exp $ .\" .Dd October 14, 1993 .Dt LD 1 diff --git a/gnu/usr.bin/ld/ld.c b/gnu/usr.bin/ld/ld.c index eafe5e2a7af0a..9ad697280c3fe 100644 --- a/gnu/usr.bin/ld/ld.c +++ b/gnu/usr.bin/ld/ld.c @@ -32,7 +32,7 @@ static char sccsid[] = "@(#)ld.c 6.10 (Berkeley) 5/22/91"; Set, indirect, and warning symbol features added by Randy Smith. */ /* - * $Id: ld.c,v 1.45 1997/05/13 10:23:46 dfr Exp $ + * $Id: ld.c,v 1.46 1998/06/30 20:48:36 bde Exp $ */ /* Define how to initialize system-dependent header fields. */ diff --git a/gnu/usr.bin/ld/ld.h b/gnu/usr.bin/ld/ld.h index 6bd409801c176..f8cd02ebbb4b3 100644 --- a/gnu/usr.bin/ld/ld.h +++ b/gnu/usr.bin/ld/ld.h @@ -1,5 +1,5 @@ /* - * $Id$ + * $Id: ld.h,v 1.20 1997/02/22 15:46:21 peter Exp $ */ /*- * This code is derived from software copyrighted by the Free Software diff --git a/gnu/usr.bin/ld/lib.c b/gnu/usr.bin/ld/lib.c index 1abd974164b95..a4ee3f410b61a 100644 --- a/gnu/usr.bin/ld/lib.c +++ b/gnu/usr.bin/ld/lib.c @@ -30,7 +30,7 @@ Set, indirect, and warning symbol features added by Randy Smith. */ /* - * $Id: lib.c,v 1.21 1997/02/22 15:46:22 peter Exp $ - library routines + * $Id: lib.c,v 1.22 1998/06/30 20:48:39 bde Exp $ - library routines */ #include <sys/param.h> diff --git a/gnu/usr.bin/ld/rrs.c b/gnu/usr.bin/ld/rrs.c index 85688048df479..15c5ff490fe16 100644 --- a/gnu/usr.bin/ld/rrs.c +++ b/gnu/usr.bin/ld/rrs.c @@ -27,7 +27,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: rrs.c,v 1.22 1997/05/13 10:23:47 dfr Exp $ + * $Id: rrs.c,v 1.23 1998/06/30 20:48:40 bde Exp $ */ #include <sys/param.h> diff --git a/gnu/usr.bin/ld/sparc/md-static-funcs.c b/gnu/usr.bin/ld/sparc/md-static-funcs.c index 346bd8fcb7618..ec5ce8819efb1 100644 --- a/gnu/usr.bin/ld/sparc/md-static-funcs.c +++ b/gnu/usr.bin/ld/sparc/md-static-funcs.c @@ -1,6 +1,6 @@ /* - * $Id$ + * $Id: md-static-funcs.c,v 1.4 1997/02/22 15:46:52 peter Exp $ * * Simple SPARC relocations for the benefit of self-relocation of ld.so * avoiding the use of global variables (ie. reloc_bitshift[] et. al.). diff --git a/gnu/usr.bin/ld/sparc/md.c b/gnu/usr.bin/ld/sparc/md.c index b1af3dd87dc5f..d76e2df3cf4a3 100644 --- a/gnu/usr.bin/ld/sparc/md.c +++ b/gnu/usr.bin/ld/sparc/md.c @@ -27,7 +27,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $Id: md.c,v 1.11 1997/02/22 15:46:52 peter Exp $ */ #include <sys/param.h> diff --git a/gnu/usr.bin/ld/sparc/md.h b/gnu/usr.bin/ld/sparc/md.h index ffa5853af41a4..e32a7d9317be4 100644 --- a/gnu/usr.bin/ld/sparc/md.h +++ b/gnu/usr.bin/ld/sparc/md.h @@ -27,7 +27,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $Id: md.h,v 1.10 1997/02/22 15:46:53 peter Exp $ */ /* diff --git a/gnu/usr.bin/ld/sparc/mdprologue.S b/gnu/usr.bin/ld/sparc/mdprologue.S index df146eeb2011b..9309382fcfeed 100644 --- a/gnu/usr.bin/ld/sparc/mdprologue.S +++ b/gnu/usr.bin/ld/sparc/mdprologue.S @@ -27,7 +27,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $Id: mdprologue.S,v 1.6 1997/02/22 15:46:53 peter Exp $ */ /* diff --git a/gnu/usr.bin/ld/symbol.c b/gnu/usr.bin/ld/symbol.c index d37a1a34bac00..0a264b3ab7c70 100644 --- a/gnu/usr.bin/ld/symbol.c +++ b/gnu/usr.bin/ld/symbol.c @@ -31,7 +31,7 @@ /* * symbol table routines - * $Id$ + * $Id: symbol.c,v 1.9 1997/02/22 15:46:26 peter Exp $ */ /* Create the symbol table entries for `etext', `edata' and `end'. */ diff --git a/gnu/usr.bin/ld/symseg.h b/gnu/usr.bin/ld/symseg.h index 116a8b2f87ec1..d40df2f06000e 100644 --- a/gnu/usr.bin/ld/symseg.h +++ b/gnu/usr.bin/ld/symseg.h @@ -4,7 +4,7 @@ * Foundation. * * from: @(#)symseg.h 5.4 (Berkeley) 4/30/91 - * $Id$ + * $Id: symseg.h,v 1.6 1997/02/22 15:46:27 peter Exp $ */ /* GDB symbol table format definitions. diff --git a/gnu/usr.bin/ld/warnings.c b/gnu/usr.bin/ld/warnings.c index ceb303ae911ed..3ee5537dc7656 100644 --- a/gnu/usr.bin/ld/warnings.c +++ b/gnu/usr.bin/ld/warnings.c @@ -30,7 +30,7 @@ Set, indirect, and warning symbol features added by Randy Smith. */ /* - * $Id: warnings.c,v 1.15 1997/02/22 15:46:27 peter Exp $ + * $Id: warnings.c,v 1.16 1998/06/30 20:48:39 bde Exp $ */ #include <sys/param.h> diff --git a/gnu/usr.bin/ld/xbits.c b/gnu/usr.bin/ld/xbits.c index 850c646fa5f0d..9758a401399a3 100644 --- a/gnu/usr.bin/ld/xbits.c +++ b/gnu/usr.bin/ld/xbits.c @@ -27,7 +27,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id$ + * $Id: xbits.c,v 1.6 1997/02/22 15:46:28 peter Exp $ */ /* diff --git a/gnu/usr.bin/man/Makefile.shprog b/gnu/usr.bin/man/Makefile.shprog index 665a194917ff3..d72ffcbfee447 100644 --- a/gnu/usr.bin/man/Makefile.shprog +++ b/gnu/usr.bin/man/Makefile.shprog @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile.shprog,v 1.3 1997/02/22 15:46:56 peter Exp $ # This may become bsd.shprog.mk. The general version would have to handle: # - arbitrary sed substitutions. diff --git a/gnu/usr.bin/man/apropos/Makefile b/gnu/usr.bin/man/apropos/Makefile index d19c28540973f..ededdabad060b 100644 --- a/gnu/usr.bin/man/apropos/Makefile +++ b/gnu/usr.bin/man/apropos/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.13 1997/02/22 15:46:57 peter Exp $ SHPROG= apropos diff --git a/gnu/usr.bin/man/apropos/apropos.sh b/gnu/usr.bin/man/apropos/apropos.sh index 1b548a6d4cafb..cc8149508ad37 100644 --- a/gnu/usr.bin/man/apropos/apropos.sh +++ b/gnu/usr.bin/man/apropos/apropos.sh @@ -15,7 +15,7 @@ # The University of Texas at Austin # Austin, Texas 78712 # -# $Id$ +# $Id: apropos.sh,v 1.9 1997/02/22 15:46:58 peter Exp $ PATH=/bin:/usr/bin:$PATH diff --git a/gnu/usr.bin/man/catman/catman.1 b/gnu/usr.bin/man/catman/catman.1 index aaa0c443d97c0..608269f2e1451 100644 --- a/gnu/usr.bin/man/catman/catman.1 +++ b/gnu/usr.bin/man/catman/catman.1 @@ -24,7 +24,7 @@ .\" .\" /usr/bin/catman - preformat man pages .\" -.\" $Id: catman.1,v 1.14 1998/02/07 05:17:47 alex Exp $ +.\" $Id: catman.1,v 1.15 1998/03/31 06:52:28 charnier Exp $ .Dd Mar 12, 1995 .Dt CATMAN 1 .Os diff --git a/gnu/usr.bin/man/catman/catman.perl b/gnu/usr.bin/man/catman/catman.perl index d94f94927cb57..ba7e2a66144ad 100644 --- a/gnu/usr.bin/man/catman/catman.perl +++ b/gnu/usr.bin/man/catman/catman.perl @@ -26,7 +26,7 @@ # # /usr/bin/catman - preformat man pages # -# $Id: catman.perl,v 1.11 1998/05/01 13:27:27 des Exp $ +# $Id: catman.perl,v 1.12 1998/08/05 03:44:46 thepish Exp $ sub usage { diff --git a/gnu/usr.bin/man/makewhatis/makewhatis.1 b/gnu/usr.bin/man/makewhatis/makewhatis.1 index 1c238b7a9f602..daefd3cccce05 100644 --- a/gnu/usr.bin/man/makewhatis/makewhatis.1 +++ b/gnu/usr.bin/man/makewhatis/makewhatis.1 @@ -22,7 +22,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $Id: makewhatis.1,v 1.11 1997/06/23 04:51:30 steve Exp $ +.\" $Id: makewhatis.1,v 1.12 1998/04/01 06:22:28 charnier Exp $ .Dd January 12, 1995 .Dt MAKEWHATIS 1 .Os FreeBSD 2.1 diff --git a/gnu/usr.bin/man/makewhatis/makewhatis.local.8 b/gnu/usr.bin/man/makewhatis/makewhatis.local.8 index b7fd62f7f3e2d..d68b8a2935b48 100644 --- a/gnu/usr.bin/man/makewhatis/makewhatis.local.8 +++ b/gnu/usr.bin/man/makewhatis/makewhatis.local.8 @@ -22,7 +22,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $Id: makewhatis.local.8,v 1.5 1997/02/22 15:47:02 peter Exp $ +.\" $Id: makewhatis.local.8,v 1.6 1997/06/23 04:51:30 steve Exp $ .Dd April 26, 1996 .Dt MAKEWHATIS.LOCAL 8 .Os FreeBSD 2.2 diff --git a/gnu/usr.bin/man/makewhatis/makewhatis.local.sh b/gnu/usr.bin/man/makewhatis/makewhatis.local.sh index 9ad997b144588..71f6fe1fd9103 100644 --- a/gnu/usr.bin/man/makewhatis/makewhatis.local.sh +++ b/gnu/usr.bin/man/makewhatis/makewhatis.local.sh @@ -33,7 +33,7 @@ # # PS: this wrapper works also for catman(1) # -# $Id$ +# $Id: makewhatis.local.sh,v 1.5 1997/02/22 15:47:03 peter Exp $ PATH=/bin:/usr/bin:$PATH; export PATH opt= dirs= localdirs= diff --git a/gnu/usr.bin/man/makewhatis/makewhatis.perl b/gnu/usr.bin/man/makewhatis/makewhatis.perl index 841c2c0e6e169..8abc1b3c1c478 100644 --- a/gnu/usr.bin/man/makewhatis/makewhatis.perl +++ b/gnu/usr.bin/man/makewhatis/makewhatis.perl @@ -26,7 +26,7 @@ # # makewhatis -- update the whatis database in the man directories. # -# $Id: makewhatis.perl,v 1.17 1997/07/04 22:32:59 wosch Exp $ +# $Id: makewhatis.perl,v 1.18 1998/08/05 03:44:14 thepish Exp $ sub usage { diff --git a/gnu/usr.bin/man/manpath/manpath.config b/gnu/usr.bin/man/manpath/manpath.config index 14c6ce1ab88ab..c8b6cccb1ba1b 100644 --- a/gnu/usr.bin/man/manpath/manpath.config +++ b/gnu/usr.bin/man/manpath/manpath.config @@ -1,4 +1,4 @@ -# $Id$ +# $Id: manpath.config,v 1.8.2.1 1999/02/05 10:43:24 markm Exp $ # # This file is read by manpath to configure the mandatory manpath, to # map each path element to a manpath element and to determine where the diff --git a/gnu/usr.bin/patch/EXTERN.h b/gnu/usr.bin/patch/EXTERN.h index bde49f4be63c5..a13e5842b182a 100644 --- a/gnu/usr.bin/patch/EXTERN.h +++ b/gnu/usr.bin/patch/EXTERN.h @@ -1,6 +1,9 @@ -/* $Header: /home/ncvs/src/gnu/usr.bin/patch/EXTERN.h,v 1.2 1995/05/30 05:02:26 rgrimes Exp $ +/* $Header: /home/ncvs/src/gnu/usr.bin/patch/EXTERN.h,v 1.4 1998/01/21 14:37:12 ache Exp $ * * $Log: EXTERN.h,v $ + * Revision 1.4 1998/01/21 14:37:12 ache + * Resurrect patch 2.1 without FreeBSD Index: hack + * * Revision 1.2 1995/05/30 05:02:26 rgrimes * Remove trailing whitespace. * diff --git a/gnu/usr.bin/patch/INTERN.h b/gnu/usr.bin/patch/INTERN.h index 5f3beab6236c3..5c5c331785298 100644 --- a/gnu/usr.bin/patch/INTERN.h +++ b/gnu/usr.bin/patch/INTERN.h @@ -1,6 +1,9 @@ -/* $Header: /home/ncvs/src/gnu/usr.bin/patch/INTERN.h,v 1.2 1995/05/30 05:02:27 rgrimes Exp $ +/* $Header: /home/ncvs/src/gnu/usr.bin/patch/INTERN.h,v 1.4 1998/01/21 14:37:12 ache Exp $ * * $Log: INTERN.h,v $ + * Revision 1.4 1998/01/21 14:37:12 ache + * Resurrect patch 2.1 without FreeBSD Index: hack + * * Revision 1.2 1995/05/30 05:02:27 rgrimes * Remove trailing whitespace. * diff --git a/gnu/usr.bin/patch/common.h b/gnu/usr.bin/patch/common.h index e58f3f2f2cb9b..ab0c1d3de5b1e 100644 --- a/gnu/usr.bin/patch/common.h +++ b/gnu/usr.bin/patch/common.h @@ -1,6 +1,9 @@ -/* $Header: /home/ncvs/src/gnu/usr.bin/patch/common.h,v 1.3 1995/05/30 05:02:30 rgrimes Exp $ +/* $Header: /home/ncvs/src/gnu/usr.bin/patch/common.h,v 1.5 1998/01/21 14:37:16 ache Exp $ * * $Log: common.h,v $ + * Revision 1.5 1998/01/21 14:37:16 ache + * Resurrect patch 2.1 without FreeBSD Index: hack + * * Revision 1.3 1995/05/30 05:02:30 rgrimes * Remove trailing whitespace. * diff --git a/gnu/usr.bin/patch/inp.c b/gnu/usr.bin/patch/inp.c index 50472cae5ebde..629ce41a60b38 100644 --- a/gnu/usr.bin/patch/inp.c +++ b/gnu/usr.bin/patch/inp.c @@ -1,6 +1,9 @@ -/* $Header: /home/ncvs/src/gnu/usr.bin/patch/inp.c,v 1.6 1997/10/23 02:44:21 ache Exp $ +/* $Header: /home/ncvs/src/gnu/usr.bin/patch/inp.c,v 1.8 1998/01/21 14:37:20 ache Exp $ * * $Log: inp.c,v $ + * Revision 1.8 1998/01/21 14:37:20 ache + * Resurrect patch 2.1 without FreeBSD Index: hack + * * Revision 1.6 1997/10/23 02:44:21 ache * Add (unsigned char) cast to ctype macros * diff --git a/gnu/usr.bin/patch/inp.h b/gnu/usr.bin/patch/inp.h index 40999d5c897c4..570f14be75d54 100644 --- a/gnu/usr.bin/patch/inp.h +++ b/gnu/usr.bin/patch/inp.h @@ -1,6 +1,9 @@ -/* $Header: /home/ncvs/src/gnu/usr.bin/patch/inp.h,v 1.2 1995/05/30 05:02:33 rgrimes Exp $ +/* $Header: /home/ncvs/src/gnu/usr.bin/patch/inp.h,v 1.4 1998/01/21 14:37:20 ache Exp $ * * $Log: inp.h,v $ + * Revision 1.4 1998/01/21 14:37:20 ache + * Resurrect patch 2.1 without FreeBSD Index: hack + * * Revision 1.2 1995/05/30 05:02:33 rgrimes * Remove trailing whitespace. * diff --git a/gnu/usr.bin/patch/patch.1 b/gnu/usr.bin/patch/patch.1 index 51b3b09ce3539..a4702dcf7a125 100644 --- a/gnu/usr.bin/patch/patch.1 +++ b/gnu/usr.bin/patch/patch.1 @@ -1,8 +1,11 @@ .\" -*- nroff -*- .rn '' }` -'\" $Header: /home/ncvs/src/gnu/usr.bin/patch/patch.1,v 1.8 1998/01/21 15:10:13 ache Exp $ +'\" $Header: /home/ncvs/src/gnu/usr.bin/patch/patch.1,v 1.9 1998/01/22 07:44:03 ache Exp $ '\" '\" $Log: patch.1,v $ +'\" Revision 1.9 1998/01/22 07:44:03 ache +'\" Add PATCH_INDEX_FIRST environment variable to do the same as -I option +'\" '\" Revision 1.8 1998/01/21 15:10:13 ache '\" Add -I or --index-first option to take Index: precedence over context diff, '\" as it was in hacked FreeBSD version diff --git a/gnu/usr.bin/patch/patch.c b/gnu/usr.bin/patch/patch.c index e372ad356c05e..5b824cd442715 100644 --- a/gnu/usr.bin/patch/patch.c +++ b/gnu/usr.bin/patch/patch.c @@ -1,5 +1,5 @@ char rcsid[] = - "$Header: /home/ncvs/src/gnu/usr.bin/patch/patch.c,v 1.13 1998/01/21 15:15:39 ache Exp $"; + "$Header: /home/ncvs/src/gnu/usr.bin/patch/patch.c,v 1.14 1998/01/22 07:44:04 ache Exp $"; /* patch - a program to apply diffs to original files * @@ -9,6 +9,9 @@ char rcsid[] = * money off of it, or pretend that you wrote it. * * $Log: patch.c,v $ + * Revision 1.14 1998/01/22 07:44:04 ache + * Add PATCH_INDEX_FIRST environment variable to do the same as -I option + * * Revision 1.13 1998/01/21 15:15:39 ache * Update usage line with new option * diff --git a/gnu/usr.bin/patch/pch.c b/gnu/usr.bin/patch/pch.c index 9021397f52ece..9bf2d507c9118 100644 --- a/gnu/usr.bin/patch/pch.c +++ b/gnu/usr.bin/patch/pch.c @@ -1,6 +1,10 @@ -/* $Header: /home/ncvs/src/gnu/usr.bin/patch/pch.c,v 1.13 1998/01/21 14:37:23 ache Exp $ +/* $Header: /home/ncvs/src/gnu/usr.bin/patch/pch.c,v 1.14 1998/01/21 15:10:14 ache Exp $ * * $Log: pch.c,v $ + * Revision 1.14 1998/01/21 15:10:14 ache + * Add -I or --index-first option to take Index: precedence over context diff, + * as it was in hacked FreeBSD version + * * Revision 1.13 1998/01/21 14:37:23 ache * Resurrect patch 2.1 without FreeBSD Index: hack * @@ -32,6 +36,10 @@ * * Revision 1.8 1996/04/12 11:37:32 markm * Attempt to break a $Log: pch.c,v $ + * Attempt to break a Revision 1.14 1998/01/21 15:10:14 ache + * Attempt to break a Add -I or --index-first option to take Index: precedence over context diff, + * Attempt to break a as it was in hacked FreeBSD version + * Attempt to break a * Attempt to break a Revision 1.13 1998/01/21 14:37:23 ache * Attempt to break a Resurrect patch 2.1 without FreeBSD Index: hack * Attempt to break a diff --git a/gnu/usr.bin/patch/pch.h b/gnu/usr.bin/patch/pch.h index d7f40e1d177f6..07011e14f5a51 100644 --- a/gnu/usr.bin/patch/pch.h +++ b/gnu/usr.bin/patch/pch.h @@ -1,6 +1,9 @@ -/* $Header: /home/ncvs/src/gnu/usr.bin/patch/pch.h,v 1.2 1995/05/30 05:02:36 rgrimes Exp $ +/* $Header: /home/ncvs/src/gnu/usr.bin/patch/pch.h,v 1.4 1998/01/21 14:37:24 ache Exp $ * * $Log: pch.h,v $ + * Revision 1.4 1998/01/21 14:37:24 ache + * Resurrect patch 2.1 without FreeBSD Index: hack + * * Revision 1.2 1995/05/30 05:02:36 rgrimes * Remove trailing whitespace. * diff --git a/gnu/usr.bin/patch/util.h b/gnu/usr.bin/patch/util.h index 49f4246b83df8..59536fd746082 100644 --- a/gnu/usr.bin/patch/util.h +++ b/gnu/usr.bin/patch/util.h @@ -1,6 +1,9 @@ -/* $Header: /home/ncvs/src/gnu/usr.bin/patch/util.h,v 1.3 1997/02/13 21:10:45 jmg Exp $ +/* $Header: /home/ncvs/src/gnu/usr.bin/patch/util.h,v 1.5 1998/01/21 14:37:25 ache Exp $ * * $Log: util.h,v $ + * Revision 1.5 1998/01/21 14:37:25 ache + * Resurrect patch 2.1 without FreeBSD Index: hack + * * Revision 1.3 1997/02/13 21:10:45 jmg * Fix a problem with patch in that is will always default, even when the * controlling terminal is closed. Now the function ask() will return 1 when th diff --git a/gnu/usr.bin/patch/version.c b/gnu/usr.bin/patch/version.c index 740b82d3404cf..b1675fef89adc 100644 --- a/gnu/usr.bin/patch/version.c +++ b/gnu/usr.bin/patch/version.c @@ -1,6 +1,9 @@ -/* $Header: /home/ncvs/src/gnu/usr.bin/patch/version.c,v 1.2 1995/05/30 05:02:39 rgrimes Exp $ +/* $Header: /home/ncvs/src/gnu/usr.bin/patch/version.c,v 1.4 1998/01/21 14:37:26 ache Exp $ * * $Log: version.c,v $ + * Revision 1.4 1998/01/21 14:37:26 ache + * Resurrect patch 2.1 without FreeBSD Index: hack + * * Revision 1.2 1995/05/30 05:02:39 rgrimes * Remove trailing whitespace. * diff --git a/gnu/usr.bin/patch/version.h b/gnu/usr.bin/patch/version.h index 5a57bc5890481..c3cbfd8d30d49 100644 --- a/gnu/usr.bin/patch/version.h +++ b/gnu/usr.bin/patch/version.h @@ -1,6 +1,9 @@ -/* $Header: /home/ncvs/src/gnu/usr.bin/patch/version.h,v 1.2 1995/05/30 05:02:40 rgrimes Exp $ +/* $Header: /home/ncvs/src/gnu/usr.bin/patch/version.h,v 1.4 1998/01/21 14:37:27 ache Exp $ * * $Log: version.h,v $ + * Revision 1.4 1998/01/21 14:37:27 ache + * Resurrect patch 2.1 without FreeBSD Index: hack + * * Revision 1.2 1995/05/30 05:02:40 rgrimes * Remove trailing whitespace. * diff --git a/gnu/usr.bin/perl/Makefile b/gnu/usr.bin/perl/Makefile index eb61dbd4cc97b..8521e12a05969 100644 --- a/gnu/usr.bin/perl/Makefile +++ b/gnu/usr.bin/perl/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.6 1998/09/09 07:20:10 markm Exp $ +# $Id: Makefile,v 1.7 1998/09/30 20:24:59 markm Exp $ .if !defined(NOSUIDPERL) _suidperl= suidperl diff --git a/gnu/usr.bin/perl/Makefile.inc b/gnu/usr.bin/perl/Makefile.inc index fd417c7c714c7..1d7acc3282d10 100644 --- a/gnu/usr.bin/perl/Makefile.inc +++ b/gnu/usr.bin/perl/Makefile.inc @@ -1,4 +1,4 @@ -# $Id: Makefile.inc,v 1.6 1998/10/11 18:13:41 markm Exp $ +# $Id: Makefile.inc,v 1.7 1998/10/12 06:00:30 markm Exp $ PERL5SRC?= ${.CURDIR}/../../../../contrib/perl5 diff --git a/gnu/usr.bin/perl/libperl/Makefile b/gnu/usr.bin/perl/libperl/Makefile index 2d92a903186c6..a3f844de630fb 100644 --- a/gnu/usr.bin/perl/libperl/Makefile +++ b/gnu/usr.bin/perl/libperl/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.4 1998/09/16 17:25:51 markm Exp $ +# $Id: Makefile,v 1.5 1999/01/09 21:50:55 jdp Exp $ # LIB= perl diff --git a/gnu/usr.bin/perl/libperl/config.SH-aout.i386 b/gnu/usr.bin/perl/libperl/config.SH-aout.i386 index aa510e3221a73..d13459cfaee4b 100644 --- a/gnu/usr.bin/perl/libperl/config.SH-aout.i386 +++ b/gnu/usr.bin/perl/libperl/config.SH-aout.i386 @@ -5,12 +5,12 @@ # do not forget to propagate your changes by running "Configure -der". You may # instead choose to run each of the .SH files by yourself, or "Configure -S". # -# $Id: config.SH-aout.i386,v 1.9 1999/01/15 04:14:52 ache Exp $ +# $Id: config.SH-aout.i386,v 1.10 1999/01/17 09:53:34 markm Exp $ # # Package name : perl5 # Source directory : . -# Configuration time: $Date: 1999/01/15 04:14:52 $ +# Configuration time: $Date: 1999/01/17 09:53:34 $ # Configured by : markm # Target system : freebsd 3.0-current #0: @@ -55,7 +55,7 @@ ccdlflags=' ' ccflags='' cf_by='markm' cf_email='markm@freebsd.org' -cf_time='$Date: 1999/01/15 04:14:52 $' +cf_time='$Date: 1999/01/17 09:53:34 $' chgrp='' chmod='' chown='' diff --git a/gnu/usr.bin/perl/libperl/config.SH-elf.alpha b/gnu/usr.bin/perl/libperl/config.SH-elf.alpha index 9d41d8b9afab6..738e15f31c8ac 100644 --- a/gnu/usr.bin/perl/libperl/config.SH-elf.alpha +++ b/gnu/usr.bin/perl/libperl/config.SH-elf.alpha @@ -5,12 +5,12 @@ # do not forget to propagate your changes by running "Configure -der". You may # instead choose to run each of the .SH files by yourself, or "Configure -S". # -# $Id: config.SH-elf.alpha,v 1.10 1999/01/15 04:14:52 ache Exp $ +# $Id: config.SH-elf.alpha,v 1.11 1999/01/17 09:53:34 markm Exp $ # # Package name : perl5 # Source directory : . -# Configuration time: $Date: 1999/01/15 04:14:52 $ +# Configuration time: $Date: 1999/01/17 09:53:34 $ # Configured by : markm # Target system : freebsd 3.0-current #0: @@ -55,7 +55,7 @@ ccdlflags=' ' ccflags='' cf_by='markm' cf_email='markm@freebsd.org' -cf_time='$Date: 1999/01/15 04:14:52 $' +cf_time='$Date: 1999/01/17 09:53:34 $' chgrp='' chmod='' chown='' diff --git a/gnu/usr.bin/perl/libperl/config.SH-elf.i386 b/gnu/usr.bin/perl/libperl/config.SH-elf.i386 index 026bf5b4733be..7a47eb95ae4c2 100644 --- a/gnu/usr.bin/perl/libperl/config.SH-elf.i386 +++ b/gnu/usr.bin/perl/libperl/config.SH-elf.i386 @@ -5,12 +5,12 @@ # do not forget to propagate your changes by running "Configure -der". You may # instead choose to run each of the .SH files by yourself, or "Configure -S". # -# $Id: config.SH-elf.i386,v 1.9 1999/01/15 04:14:52 ache Exp $ +# $Id: config.SH-elf.i386,v 1.10 1999/01/17 09:53:34 markm Exp $ # # Package name : perl5 # Source directory : . -# Configuration time: $Date: 1999/01/15 04:14:52 $ +# Configuration time: $Date: 1999/01/17 09:53:34 $ # Configured by : markm # Target system : freebsd 3.0-current #0: @@ -55,7 +55,7 @@ ccdlflags=' ' ccflags='' cf_by='markm' cf_email='markm@freebsd.org' -cf_time='$Date: 1999/01/15 04:14:52 $' +cf_time='$Date: 1999/01/17 09:53:34 $' chgrp='' chmod='' chown='' diff --git a/gnu/usr.bin/perl/miniperl/Makefile b/gnu/usr.bin/perl/miniperl/Makefile index f72e70bc124a4..69d0c5143f78b 100644 --- a/gnu/usr.bin/perl/miniperl/Makefile +++ b/gnu/usr.bin/perl/miniperl/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.6 1998/09/26 16:17:05 markm Exp $ +# $Id: Makefile,v 1.7 1998/10/11 18:13:41 markm Exp $ # PROG= miniperl diff --git a/gnu/usr.bin/perl/perl/Makefile b/gnu/usr.bin/perl/perl/Makefile index b3a9d3e4a153e..85515725ff594 100644 --- a/gnu/usr.bin/perl/perl/Makefile +++ b/gnu/usr.bin/perl/perl/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.15 1998/10/11 18:13:42 markm Exp $ +# $Id: Makefile,v 1.16 1998/10/15 18:50:04 markm Exp $ # PROG= perl diff --git a/gnu/usr.bin/perl/pod/Makefile b/gnu/usr.bin/perl/pod/Makefile index 949a9992ee7b1..0795797ed44ba 100644 --- a/gnu/usr.bin/perl/pod/Makefile +++ b/gnu/usr.bin/perl/pod/Makefile @@ -1,5 +1,5 @@ # -# $Id$ +# $Id: Makefile,v 1.1 1998/09/09 07:20:26 markm Exp $ # SUBDIR= pod2man pod2html pod2latex pod2text pod diff --git a/gnu/usr.bin/perl/pod/Makefile.inc b/gnu/usr.bin/perl/pod/Makefile.inc index e4e6ca2fdb842..bed3ac645bef6 100644 --- a/gnu/usr.bin/perl/pod/Makefile.inc +++ b/gnu/usr.bin/perl/pod/Makefile.inc @@ -1,5 +1,5 @@ # -# $Id$ +# $Id: Makefile.inc,v 1.1 1998/09/09 07:20:27 markm Exp $ # PERL5SRC?= ${.CURDIR}/../../../../../contrib/perl5 diff --git a/gnu/usr.bin/perl/pod/pod/Makefile b/gnu/usr.bin/perl/pod/pod/Makefile index 92062b80c65ab..e5cfbbda0e7f6 100644 --- a/gnu/usr.bin/perl/pod/pod/Makefile +++ b/gnu/usr.bin/perl/pod/pod/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.1 1998/09/09 07:20:27 markm Exp $ +# $Id: Makefile,v 1.2 1998/10/11 18:13:42 markm Exp $ # PODS= perl.pod perl5004delta.pod perlapio.pod perlbook.pod perlbot.pod \ diff --git a/gnu/usr.bin/perl/pod/pod2html/Makefile b/gnu/usr.bin/perl/pod/pod2html/Makefile index e5f9443e0af18..3ce589d7eb96f 100644 --- a/gnu/usr.bin/perl/pod/pod2html/Makefile +++ b/gnu/usr.bin/perl/pod/pod2html/Makefile @@ -1,5 +1,5 @@ # -# $Id$ +# $Id: Makefile,v 1.1 1998/09/09 07:20:27 markm Exp $ # PROG= pod2html diff --git a/gnu/usr.bin/perl/pod/pod2latex/Makefile b/gnu/usr.bin/perl/pod/pod2latex/Makefile index 547a0bb0b3245..926327da46d92 100644 --- a/gnu/usr.bin/perl/pod/pod2latex/Makefile +++ b/gnu/usr.bin/perl/pod/pod2latex/Makefile @@ -1,5 +1,5 @@ # -# $Id$ +# $Id: Makefile,v 1.1 1998/09/09 07:20:27 markm Exp $ # PROG= pod2latex diff --git a/gnu/usr.bin/perl/pod/pod2man/Makefile b/gnu/usr.bin/perl/pod/pod2man/Makefile index 9a8dbccb84943..76aacc8fb08df 100644 --- a/gnu/usr.bin/perl/pod/pod2man/Makefile +++ b/gnu/usr.bin/perl/pod/pod2man/Makefile @@ -1,5 +1,5 @@ # -# $Id$ +# $Id: Makefile,v 1.1 1998/09/09 07:20:28 markm Exp $ # PROG= pod2man diff --git a/gnu/usr.bin/perl/pod/pod2text/Makefile b/gnu/usr.bin/perl/pod/pod2text/Makefile index 7474a2ab2b5a9..84019d853a0fe 100644 --- a/gnu/usr.bin/perl/pod/pod2text/Makefile +++ b/gnu/usr.bin/perl/pod/pod2text/Makefile @@ -1,5 +1,5 @@ # -# $Id$ +# $Id: Makefile,v 1.1 1998/09/09 07:20:28 markm Exp $ # PROG= pod2text diff --git a/gnu/usr.bin/perl/suidperl/Makefile b/gnu/usr.bin/perl/suidperl/Makefile index 0bf9af5e796a7..8c92b893e81a2 100644 --- a/gnu/usr.bin/perl/suidperl/Makefile +++ b/gnu/usr.bin/perl/suidperl/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.5 1998/10/11 18:13:42 markm Exp $ +# $Id: Makefile,v 1.6 1999/01/12 07:57:01 peter Exp $ # PROG= suidperl diff --git a/gnu/usr.bin/perl/utils/Makefile b/gnu/usr.bin/perl/utils/Makefile index 565cae3b49bf4..19e76dae0622f 100644 --- a/gnu/usr.bin/perl/utils/Makefile +++ b/gnu/usr.bin/perl/utils/Makefile @@ -1,5 +1,5 @@ # -# $Id$ +# $Id: Makefile,v 1.1 1998/09/09 07:20:29 markm Exp $ # SUBDIR= c2ph h2ph h2xs perlbug perlcc perldoc pl2pm splain diff --git a/gnu/usr.bin/perl/utils/Makefile.inc b/gnu/usr.bin/perl/utils/Makefile.inc index 582f377541d4c..8dee735511d0d 100644 --- a/gnu/usr.bin/perl/utils/Makefile.inc +++ b/gnu/usr.bin/perl/utils/Makefile.inc @@ -1,5 +1,5 @@ # -# $Id$ +# $Id: Makefile.inc,v 1.2 1998/09/10 10:51:10 markm Exp $ # PERL5SRC= ${.CURDIR}/../../../../../contrib/perl5 diff --git a/gnu/usr.bin/perl/utils/c2ph/Makefile b/gnu/usr.bin/perl/utils/c2ph/Makefile index f5312f6097965..bbf528e7776e9 100644 --- a/gnu/usr.bin/perl/utils/c2ph/Makefile +++ b/gnu/usr.bin/perl/utils/c2ph/Makefile @@ -1,5 +1,5 @@ # -# $Id$ +# $Id: Makefile,v 1.1 1998/09/09 07:20:29 markm Exp $ # PROG= c2ph diff --git a/gnu/usr.bin/perl/utils/h2ph/Makefile b/gnu/usr.bin/perl/utils/h2ph/Makefile index c22fdb73c0ef6..bc5a5e767a6c3 100644 --- a/gnu/usr.bin/perl/utils/h2ph/Makefile +++ b/gnu/usr.bin/perl/utils/h2ph/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.1 1998/09/09 07:20:29 markm Exp $ +# $Id: Makefile,v 1.2 1998/10/11 18:13:42 markm Exp $ # PROG= h2ph diff --git a/gnu/usr.bin/perl/utils/h2xs/Makefile b/gnu/usr.bin/perl/utils/h2xs/Makefile index b1c23f3690266..e622c81716627 100644 --- a/gnu/usr.bin/perl/utils/h2xs/Makefile +++ b/gnu/usr.bin/perl/utils/h2xs/Makefile @@ -1,5 +1,5 @@ # -# $Id$ +# $Id: Makefile,v 1.1 1998/09/09 07:20:30 markm Exp $ # PROG= h2xs diff --git a/gnu/usr.bin/perl/utils/perlbug/Makefile b/gnu/usr.bin/perl/utils/perlbug/Makefile index d8cc174798ed4..ba96cd85d2a68 100644 --- a/gnu/usr.bin/perl/utils/perlbug/Makefile +++ b/gnu/usr.bin/perl/utils/perlbug/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.1 1998/09/09 07:20:30 markm Exp $ +# $Id: Makefile,v 1.2 1998/09/22 12:00:58 markm Exp $ # PROG= perlbug diff --git a/gnu/usr.bin/perl/utils/perlcc/Makefile b/gnu/usr.bin/perl/utils/perlcc/Makefile index 095ae85115535..74de26d6f1d13 100644 --- a/gnu/usr.bin/perl/utils/perlcc/Makefile +++ b/gnu/usr.bin/perl/utils/perlcc/Makefile @@ -1,5 +1,5 @@ # -# $Id$ +# $Id: Makefile,v 1.1 1998/09/09 07:20:30 markm Exp $ # PROG= perlcc diff --git a/gnu/usr.bin/perl/utils/perldoc/Makefile b/gnu/usr.bin/perl/utils/perldoc/Makefile index 75931562a764d..9c7d65888c45a 100644 --- a/gnu/usr.bin/perl/utils/perldoc/Makefile +++ b/gnu/usr.bin/perl/utils/perldoc/Makefile @@ -1,5 +1,5 @@ # -# $Id$ +# $Id: Makefile,v 1.1 1998/09/09 07:20:31 markm Exp $ # PROG= perldoc diff --git a/gnu/usr.bin/perl/utils/pl2pm/Makefile b/gnu/usr.bin/perl/utils/pl2pm/Makefile index 18ef0df81d72e..56e32453860d0 100644 --- a/gnu/usr.bin/perl/utils/pl2pm/Makefile +++ b/gnu/usr.bin/perl/utils/pl2pm/Makefile @@ -1,5 +1,5 @@ # -# $Id$ +# $Id: Makefile,v 1.1 1998/09/09 07:20:31 markm Exp $ # PROG= pl2pm diff --git a/gnu/usr.bin/perl/utils/splain/Makefile b/gnu/usr.bin/perl/utils/splain/Makefile index 5dd9c2b36b75a..40e6d5f5674fb 100644 --- a/gnu/usr.bin/perl/utils/splain/Makefile +++ b/gnu/usr.bin/perl/utils/splain/Makefile @@ -1,5 +1,5 @@ # -# $Id$ +# $Id: Makefile,v 1.1 1998/09/09 07:20:32 markm Exp $ # PROG= splain diff --git a/gnu/usr.bin/perl/x2p/Makefile b/gnu/usr.bin/perl/x2p/Makefile index d4d322fbb4b73..a3d3361b2c562 100644 --- a/gnu/usr.bin/perl/x2p/Makefile +++ b/gnu/usr.bin/perl/x2p/Makefile @@ -1,5 +1,5 @@ # -# $Id$ +# $Id: Makefile,v 1.17 1998/09/09 07:20:32 markm Exp $ # SUBDIR= a2pl s2pl find2pl diff --git a/gnu/usr.bin/perl/x2p/Makefile.inc b/gnu/usr.bin/perl/x2p/Makefile.inc index 29639b1917fd0..f22586768ceaa 100644 --- a/gnu/usr.bin/perl/x2p/Makefile.inc +++ b/gnu/usr.bin/perl/x2p/Makefile.inc @@ -1,5 +1,5 @@ # -# $Id$ +# $Id: Makefile.inc,v 1.2 1998/09/10 10:51:10 markm Exp $ # PERL5SRC= ${.CURDIR}/../../../../../contrib/perl5 diff --git a/gnu/usr.bin/perl/x2p/a2pl/Makefile b/gnu/usr.bin/perl/x2p/a2pl/Makefile index 1ae1b74b78b4d..9d95f4b9ce559 100644 --- a/gnu/usr.bin/perl/x2p/a2pl/Makefile +++ b/gnu/usr.bin/perl/x2p/a2pl/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.5 1998/09/16 17:25:52 markm Exp $ +# $Id: Makefile,v 1.6 1998/09/22 12:00:59 markm Exp $ # PROG= a2p diff --git a/gnu/usr.bin/perl/x2p/find2pl/Makefile b/gnu/usr.bin/perl/x2p/find2pl/Makefile index 84951ccff5e70..c503801b32075 100644 --- a/gnu/usr.bin/perl/x2p/find2pl/Makefile +++ b/gnu/usr.bin/perl/x2p/find2pl/Makefile @@ -1,5 +1,5 @@ # -# $Id$ +# $Id: Makefile,v 1.2 1998/09/10 10:51:11 markm Exp $ # PROG= find2perl diff --git a/gnu/usr.bin/perl/x2p/s2pl/Makefile b/gnu/usr.bin/perl/x2p/s2pl/Makefile index 79bd46b1a2f24..a9a836ffe3f6a 100644 --- a/gnu/usr.bin/perl/x2p/s2pl/Makefile +++ b/gnu/usr.bin/perl/x2p/s2pl/Makefile @@ -1,5 +1,5 @@ # -# $Id$ +# $Id: Makefile,v 1.2 1998/09/10 10:51:11 markm Exp $ # PROG= s2p diff --git a/gnu/usr.bin/rcs/CREDITS b/gnu/usr.bin/rcs/CREDITS index e0fb955b3bbd3..30f7b780a9b67 100644 --- a/gnu/usr.bin/rcs/CREDITS +++ b/gnu/usr.bin/rcs/CREDITS @@ -21,4 +21,4 @@ Brendan Kehoe of Cygnus Support suggested rlog's -N option. Paul D. Smith of Data General suggested improvements in option and error processing. Adam Hammer of Purdue QAed. -$Id$ +$Id: CREDITS,v 1.4 1997/02/22 15:47:11 peter Exp $ diff --git a/gnu/usr.bin/rcs/NEWS b/gnu/usr.bin/rcs/NEWS index cda484eb4517d..5693f9167a49a 100644 --- a/gnu/usr.bin/rcs/NEWS +++ b/gnu/usr.bin/rcs/NEWS @@ -1,6 +1,6 @@ Recent changes to RCS (and possible future changes) - $Id$ + $Id: NEWS,v 1.4 1997/02/22 15:47:11 peter Exp $ Copyright 1991, 1992, 1993, 1994, 1995 Paul Eggert Distributed under license by the Free Software Foundation, Inc. diff --git a/gnu/usr.bin/rcs/REFS b/gnu/usr.bin/rcs/REFS index 8f326f9737d52..a4a43947eccd3 100644 --- a/gnu/usr.bin/rcs/REFS +++ b/gnu/usr.bin/rcs/REFS @@ -2,7 +2,7 @@ Here are references to RCS and related free software and documentation. Some of this information changes often; see the Frequently Asked Questions for more up-to-date references. - $Id$ + $Id: REFS,v 1.4 1997/02/22 15:47:12 peter Exp $ Frequently Asked Questions (FAQs) diff --git a/gnu/usr.bin/rcs/ci/ci.1 b/gnu/usr.bin/rcs/ci/ci.1 index 64e90efd6ca94..21824c9ca0114 100644 --- a/gnu/usr.bin/rcs/ci/ci.1 +++ b/gnu/usr.bin/rcs/ci/ci.1 @@ -2,7 +2,7 @@ .ds Rv \\$3 .ds Dt \\$4 .. -.Id $Id$ +.Id $Id: ci.1,v 1.5 1997/02/22 15:47:18 peter Exp $ .ds i \&\s-1ISO\s0 .ds r \&\s-1RCS\s0 .ds u \&\s-1UTC\s0 diff --git a/gnu/usr.bin/rcs/ci/ci.c b/gnu/usr.bin/rcs/ci/ci.c index b5cf156064610..a77464efb3710 100644 --- a/gnu/usr.bin/rcs/ci/ci.c +++ b/gnu/usr.bin/rcs/ci/ci.c @@ -274,7 +274,7 @@ static struct hshentry newdelta; /* new delta to be inserted */ static struct stat workstat; static struct Symrev *assoclst, **nextassoc; -mainProg(ciId, "ci", "$Id$") +mainProg(ciId, "ci", "$Id: ci.c,v 1.6 1997/02/22 15:47:19 peter Exp $") { static char const cmdusage[] = "\nci usage: ci -{fIklMqru}[rev] -d[date] -mmsg -{nN}name -sstate -ttext -T -Vn -wwho -xsuff -zzone file ..."; diff --git a/gnu/usr.bin/rcs/co/co.1 b/gnu/usr.bin/rcs/co/co.1 index 5bc62a45f5268..317661fbfcc10 100644 --- a/gnu/usr.bin/rcs/co/co.1 +++ b/gnu/usr.bin/rcs/co/co.1 @@ -2,7 +2,7 @@ .ds Rv \\$3 .ds Dt \\$4 .. -.Id $Id$ +.Id $Id: co.1,v 1.5 1997/02/22 15:47:21 peter Exp $ .ds i \&\s-1ISO\s0 .ds r \&\s-1RCS\s0 .ds u \&\s-1UTC\s0 diff --git a/gnu/usr.bin/rcs/co/co.c b/gnu/usr.bin/rcs/co/co.c index 4165df2c02c00..60bc5572f25b3 100644 --- a/gnu/usr.bin/rcs/co/co.c +++ b/gnu/usr.bin/rcs/co/co.c @@ -191,7 +191,7 @@ static struct hshentries *gendeltas; /* deltas to be generated */ static struct hshentry *targetdelta; /* final delta to be generated */ static struct stat workstat; -mainProg(coId, "co", "$Id: co.c,v 1.8 1997/02/22 15:47:21 peter Exp $") +mainProg(coId, "co", "$Id: co.c,v 1.9 1997/05/11 05:33:03 peter Exp $") { static char const cmdusage[] = "\nco usage: co -{fIlMpqru}[rev] -ddate -jjoins -ksubst -sstate -T -w[who] -Vn -xsuff -zzone file ..."; diff --git a/gnu/usr.bin/rcs/doc/rcs.ms b/gnu/usr.bin/rcs/doc/rcs.ms index e89ae70df0516..95323e402362a 100644 --- a/gnu/usr.bin/rcs/doc/rcs.ms +++ b/gnu/usr.bin/rcs/doc/rcs.ms @@ -18,7 +18,7 @@ .de Id .ND \\$4 .. -.Id $Id$ +.Id $Id: rcs.ms,v 1.4 1997/02/22 15:47:25 peter Exp $ .RP .TL RCS\*-A System for Version Control diff --git a/gnu/usr.bin/rcs/ident/ident.1 b/gnu/usr.bin/rcs/ident/ident.1 index 004db3aa7deb6..0e93cf4d218fd 100644 --- a/gnu/usr.bin/rcs/ident/ident.1 +++ b/gnu/usr.bin/rcs/ident/ident.1 @@ -3,7 +3,7 @@ .ds Dt \\$4 .ds iD \\$3 \\$4 \\$5 \\$6 \\$7 .. -.Id $Id$ +.Id $Id: ident.1,v 1.4 1997/02/22 15:47:27 peter Exp $ .ds r \&\s-1RCS\s0 .ds u \&\s-1UTC\s0 .if n .ds - \%-- diff --git a/gnu/usr.bin/rcs/ident/ident.c b/gnu/usr.bin/rcs/ident/ident.c index 2f1bbd4ab21e9..3a1dd7bf731a8 100644 --- a/gnu/usr.bin/rcs/ident/ident.c +++ b/gnu/usr.bin/rcs/ident/ident.c @@ -102,7 +102,7 @@ static int match P((FILE*)); static int scanfile P((FILE*,char const*,int)); static void reportError P((char const*)); -mainProg(identId, "ident", "$Id$") +mainProg(identId, "ident", "$Id: ident.c,v 1.6 1997/02/22 15:47:28 peter Exp $") /* Ident searches the named files for all occurrences * of the pattern $@: text $ where @ is a keyword. */ diff --git a/gnu/usr.bin/rcs/lib/conf.h b/gnu/usr.bin/rcs/lib/conf.h index 907c9f8e837bd..bd6420004a6df 100644 --- a/gnu/usr.bin/rcs/lib/conf.h +++ b/gnu/usr.bin/rcs/lib/conf.h @@ -1,6 +1,6 @@ /* RCS compile-time configuration */ - /* $Id$ */ + /* $Id: conf.h,v 1.7 1997/02/22 15:47:30 peter Exp $ */ /* * This file is generated automatically. diff --git a/gnu/usr.bin/rcs/lib/maketime.c b/gnu/usr.bin/rcs/lib/maketime.c index 697929d0ded7d..6d7185dae77a5 100644 --- a/gnu/usr.bin/rcs/lib/maketime.c +++ b/gnu/usr.bin/rcs/lib/maketime.c @@ -43,7 +43,7 @@ Report problems and direct all questions to: #include "maketime.h" char const maketId[] - = "$Id$"; + = "$Id: maketime.c,v 1.6 1997/02/22 15:47:31 peter Exp $"; static int isleap P((int)); static int month_days P((struct tm const*)); diff --git a/gnu/usr.bin/rcs/lib/merger.c b/gnu/usr.bin/rcs/lib/merger.c index abd7c9bb92379..dd5847a7b4de2 100644 --- a/gnu/usr.bin/rcs/lib/merger.c +++ b/gnu/usr.bin/rcs/lib/merger.c @@ -28,7 +28,7 @@ Report problems and direct all questions to: #include "rcsbase.h" -libId(mergerId, "$Id$") +libId(mergerId, "$Id: merger.c,v 1.4 1997/02/22 15:47:32 peter Exp $") static char const *normalize_arg P((char const*,char**)); static char const * diff --git a/gnu/usr.bin/rcs/lib/partime.c b/gnu/usr.bin/rcs/lib/partime.c index cb27bceb3e6d2..5d6c7ebf0ebb4 100644 --- a/gnu/usr.bin/rcs/lib/partime.c +++ b/gnu/usr.bin/rcs/lib/partime.c @@ -46,7 +46,7 @@ Report problems and direct all questions to: #include "partime.h" char const partimeId[] - = "$Id$"; + = "$Id: partime.c,v 1.5 1997/02/22 15:47:33 peter Exp $"; /* Lookup tables for names of months, weekdays, time zones. */ diff --git a/gnu/usr.bin/rcs/lib/rcsbase.h b/gnu/usr.bin/rcs/lib/rcsbase.h index 918f1b9a470db..344dfe4dcbc17 100644 --- a/gnu/usr.bin/rcs/lib/rcsbase.h +++ b/gnu/usr.bin/rcs/lib/rcsbase.h @@ -1,6 +1,6 @@ /* RCS common definitions and data structures */ -#define RCSBASE "$Id: rcsbase.h,v 1.8 1997/02/22 15:47:33 peter Exp $" +#define RCSBASE "$Id: rcsbase.h,v 1.9 1997/05/11 05:33:04 peter Exp $" /* Copyright 1982, 1988, 1989 Walter Tichy Copyright 1990, 1991, 1992, 1993, 1994, 1995 Paul Eggert diff --git a/gnu/usr.bin/rcs/lib/rcsedit.c b/gnu/usr.bin/rcs/lib/rcsedit.c index e3f714bc840f3..72463b789de94 100644 --- a/gnu/usr.bin/rcs/lib/rcsedit.c +++ b/gnu/usr.bin/rcs/lib/rcsedit.c @@ -201,7 +201,7 @@ Report problems and direct all questions to: #include "rcsbase.h" -libId(editId, "$Id: rcsedit.c,v 1.8 1997/02/22 15:47:35 peter Exp $") +libId(editId, "$Id: rcsedit.c,v 1.9 1997/05/11 05:33:05 peter Exp $") static void editEndsPrematurely P((void)) exiting; static void editLineNumberOverflow P((void)) exiting; diff --git a/gnu/usr.bin/rcs/lib/rcsfcmp.c b/gnu/usr.bin/rcs/lib/rcsfcmp.c index 588756faa8ade..52ed0fb48cc87 100644 --- a/gnu/usr.bin/rcs/lib/rcsfcmp.c +++ b/gnu/usr.bin/rcs/lib/rcsfcmp.c @@ -118,7 +118,7 @@ Report problems and direct all questions to: #include "rcsbase.h" -libId(fcmpId, "$Id$") +libId(fcmpId, "$Id: rcsfcmp.c,v 1.6 1997/02/22 15:47:36 peter Exp $") static int discardkeyval P((int,RILE*)); static int diff --git a/gnu/usr.bin/rcs/lib/rcsfnms.c b/gnu/usr.bin/rcs/lib/rcsfnms.c index 2de1c13e6e9c9..50df702d96ffc 100644 --- a/gnu/usr.bin/rcs/lib/rcsfnms.c +++ b/gnu/usr.bin/rcs/lib/rcsfnms.c @@ -177,7 +177,7 @@ Report problems and direct all questions to: #include "rcsbase.h" -libId(fnmsId, "$Id: rcsfnms.c,v 1.8 1997/08/19 11:17:37 peter Exp $") +libId(fnmsId, "$Id: rcsfnms.c,v 1.9 1997/08/22 06:59:08 peter Exp $") static char const *bindex P((char const*,int)); static int fin2open P((char const*, size_t, char const*, size_t, char const*, size_t, RILE*(*)P((struct buf*,struct stat*,int)), int)); diff --git a/gnu/usr.bin/rcs/lib/rcsgen.c b/gnu/usr.bin/rcs/lib/rcsgen.c index 4301de749e3cd..9e8b4306f88d4 100644 --- a/gnu/usr.bin/rcs/lib/rcsgen.c +++ b/gnu/usr.bin/rcs/lib/rcsgen.c @@ -140,7 +140,7 @@ Report problems and direct all questions to: #include "rcsbase.h" -libId(genId, "$Id$") +libId(genId, "$Id: rcsgen.c,v 1.6 1997/02/22 15:47:37 peter Exp $") int interactiveflag; /* Should we act as if stdin is a tty? */ struct buf curlogbuf; /* buffer for current log message */ diff --git a/gnu/usr.bin/rcs/lib/rcskeep.c b/gnu/usr.bin/rcs/lib/rcskeep.c index ebc369e3a0432..e40ba543ab97d 100644 --- a/gnu/usr.bin/rcs/lib/rcskeep.c +++ b/gnu/usr.bin/rcs/lib/rcskeep.c @@ -98,7 +98,7 @@ Report problems and direct all questions to: #include "rcsbase.h" -libId(keepId, "$Id: rcskeep.c,v 1.6 1997/02/22 15:47:38 peter Exp $") +libId(keepId, "$Id: rcskeep.c,v 1.7 1997/05/11 05:33:07 peter Exp $") static int badly_terminated P((void)); static int checknum P((char const*)); diff --git a/gnu/usr.bin/rcs/lib/rcskeys.c b/gnu/usr.bin/rcs/lib/rcskeys.c index 6d0afb3284896..f1f18e3c036cb 100644 --- a/gnu/usr.bin/rcs/lib/rcskeys.c +++ b/gnu/usr.bin/rcs/lib/rcskeys.c @@ -63,7 +63,7 @@ Report problems and direct all questions to: #include "rcsbase.h" -libId(keysId, "$Id: rcskeys.c,v 1.10 1997/02/22 15:47:38 peter Exp $") +libId(keysId, "$Id: rcskeys.c,v 1.11 1997/05/11 05:33:07 peter Exp $") char const *Keyword[] = { diff --git a/gnu/usr.bin/rcs/lib/rcslex.c b/gnu/usr.bin/rcs/lib/rcslex.c index 95c96c23612da..40e94e0852529 100644 --- a/gnu/usr.bin/rcs/lib/rcslex.c +++ b/gnu/usr.bin/rcs/lib/rcslex.c @@ -168,7 +168,7 @@ Report problems and direct all questions to: #include "rcsbase.h" -libId(lexId, "$Id$") +libId(lexId, "$Id: rcslex.c,v 1.7 1997/02/22 15:47:39 peter Exp $") static char *checkidentifier P((char*,int,int)); static void errsay P((char const*)); diff --git a/gnu/usr.bin/rcs/lib/rcsmap.c b/gnu/usr.bin/rcs/lib/rcsmap.c index 0d6d64d448cac..eef6960794540 100644 --- a/gnu/usr.bin/rcs/lib/rcsmap.c +++ b/gnu/usr.bin/rcs/lib/rcsmap.c @@ -29,7 +29,7 @@ Report problems and direct all questions to: #include "rcsbase.h" -libId(mapId, "$Id$") +libId(mapId, "$Id: rcsmap.c,v 1.4 1997/02/22 15:47:40 peter Exp $") /* map of character types */ /* ISO 8859/1 (Latin-1) */ diff --git a/gnu/usr.bin/rcs/lib/rcsrev.c b/gnu/usr.bin/rcs/lib/rcsrev.c index 8881648ed0cb8..c73a53bd90344 100644 --- a/gnu/usr.bin/rcs/lib/rcsrev.c +++ b/gnu/usr.bin/rcs/lib/rcsrev.c @@ -105,7 +105,7 @@ Report problems and direct all questions to: #include "rcsbase.h" -libId(revId, "$Id$") +libId(revId, "$Id: rcsrev.c,v 1.7 1997/02/22 15:47:40 peter Exp $") static char const *branchtip P((char const*)); static char const *lookupsym P((char const*)); diff --git a/gnu/usr.bin/rcs/lib/rcssyn.c b/gnu/usr.bin/rcs/lib/rcssyn.c index e6ccb25bdb1e1..64e981df0b1e4 100644 --- a/gnu/usr.bin/rcs/lib/rcssyn.c +++ b/gnu/usr.bin/rcs/lib/rcssyn.c @@ -153,7 +153,7 @@ Report problems and direct all questions to: #include "rcsbase.h" -libId(synId, "$Id$") +libId(synId, "$Id: rcssyn.c,v 1.6 1997/02/22 15:47:41 peter Exp $") static char const *getkeyval P((char const*,enum tokens,int)); static int getdelta P((void)); diff --git a/gnu/usr.bin/rcs/lib/rcstime.c b/gnu/usr.bin/rcs/lib/rcstime.c index 70a013b347b61..37ed6790d545e 100644 --- a/gnu/usr.bin/rcs/lib/rcstime.c +++ b/gnu/usr.bin/rcs/lib/rcstime.c @@ -30,7 +30,7 @@ Report problems and direct all questions to: #include "partime.h" #include "maketime.h" -libId(rcstimeId, "$Id$") +libId(rcstimeId, "$Id: rcstime.c,v 1.4 1997/02/22 15:47:42 peter Exp $") static long zone_offset; /* seconds east of UTC, or TM_LOCAL_ZONE */ static int use_zone_offset; /* if zero, use UTC without zone indication */ diff --git a/gnu/usr.bin/rcs/lib/rcsutil.c b/gnu/usr.bin/rcs/lib/rcsutil.c index 3b2a46fcdb394..89652eed7d5c7 100644 --- a/gnu/usr.bin/rcs/lib/rcsutil.c +++ b/gnu/usr.bin/rcs/lib/rcsutil.c @@ -186,7 +186,7 @@ Report problems and direct all questions to: #include "rcsbase.h" -libId(utilId, "$Id: rcsutil.c,v 1.6 1997/02/22 15:47:43 peter Exp $") +libId(utilId, "$Id: rcsutil.c,v 1.7 1997/05/11 05:33:08 peter Exp $") #if !has_memcmp int diff --git a/gnu/usr.bin/rcs/merge/merge.1 b/gnu/usr.bin/rcs/merge/merge.1 index 73ae65cec38b3..a076e48b7f46b 100644 --- a/gnu/usr.bin/rcs/merge/merge.1 +++ b/gnu/usr.bin/rcs/merge/merge.1 @@ -2,7 +2,7 @@ .ds Rv \\$3 .ds Dt \\$4 .. -.Id $Id: merge.1,v 1.4 1997/02/22 15:47:50 peter Exp $ +.Id $Id: merge.1,v 1.5 1997/08/23 15:50:53 steve Exp $ .ds r \&\s-1RCS\s0 .TH MERGE 1 \*(Dt GNU .SH NAME diff --git a/gnu/usr.bin/rcs/merge/merge.c b/gnu/usr.bin/rcs/merge/merge.c index fabd622bd3007..a3035825933f3 100644 --- a/gnu/usr.bin/rcs/merge/merge.c +++ b/gnu/usr.bin/rcs/merge/merge.c @@ -41,7 +41,7 @@ badoption(a) } -mainProg(mergeId, "merge", "$Id$") +mainProg(mergeId, "merge", "$Id: merge.c,v 1.4 1997/02/22 15:47:51 peter Exp $") { register char const *a; char const *arg[3], *label[3], *edarg = 0; diff --git a/gnu/usr.bin/rcs/rcs/rcs.1 b/gnu/usr.bin/rcs/rcs/rcs.1 index 97dec20c643f6..19fc992b98a8d 100644 --- a/gnu/usr.bin/rcs/rcs/rcs.1 +++ b/gnu/usr.bin/rcs/rcs/rcs.1 @@ -2,7 +2,7 @@ .ds Rv \\$3 .ds Dt \\$4 .. -.Id $Id$ +.Id $Id: rcs.1,v 1.4 1997/02/22 15:47:53 peter Exp $ .ds r \&\s-1RCS\s0 .if n .ds - \%-- .if t .ds - \(em diff --git a/gnu/usr.bin/rcs/rcs/rcs.c b/gnu/usr.bin/rcs/rcs/rcs.c index b46bdf4b29a5b..d960d90b95924 100644 --- a/gnu/usr.bin/rcs/rcs/rcs.c +++ b/gnu/usr.bin/rcs/rcs/rcs.c @@ -275,7 +275,7 @@ static struct delrevpair delrev; static struct hshentry *cuthead, *cuttail, *delstrt; static struct hshentries *gendeltas; -mainProg(rcsId, "rcs", "$Id$") +mainProg(rcsId, "rcs", "$Id: rcs.c,v 1.6 1997/02/22 15:47:54 peter Exp $") { static char const cmdusage[] = "\nrcs usage: rcs -{ae}logins -Afile -{blu}[rev] -cstring -{iILqTU} -ksubst -mrev:msg -{nN}name[:[rev]] -orange -sstate[:rev] -t[text] -Vn -xsuff -zzone file ..."; diff --git a/gnu/usr.bin/rcs/rcs/rcsfile.5 b/gnu/usr.bin/rcs/rcs/rcsfile.5 index f3be6c5490e7e..71f266428280f 100644 --- a/gnu/usr.bin/rcs/rcs/rcsfile.5 +++ b/gnu/usr.bin/rcs/rcs/rcsfile.5 @@ -5,7 +5,7 @@ .ds Rv \\$3 .ds Dt \\$4 .. -.Id $Id$ +.Id $Id: rcsfile.5,v 1.4 1997/02/22 15:47:55 peter Exp $ .ds r \s-1RCS\s0 .if n .ds - \%-- .if t .ds - \(em diff --git a/gnu/usr.bin/rcs/rcs/rcsintro.1 b/gnu/usr.bin/rcs/rcs/rcsintro.1 index 715e03b21ece3..97f61d86a991a 100644 --- a/gnu/usr.bin/rcs/rcs/rcsintro.1 +++ b/gnu/usr.bin/rcs/rcs/rcsintro.1 @@ -2,7 +2,7 @@ .ds Rv \\$3 .ds Dt \\$4 .. -.Id $Id$ +.Id $Id: rcsintro.1,v 1.4 1997/02/22 15:47:55 peter Exp $ .ds r \&\s-1RCS\s0 .if n .ds - \%-- .if t .ds - \(em diff --git a/gnu/usr.bin/rcs/rcsclean/rcsclean.1 b/gnu/usr.bin/rcs/rcsclean/rcsclean.1 index e671a5eccecfb..168acf8bf2ff4 100644 --- a/gnu/usr.bin/rcs/rcsclean/rcsclean.1 +++ b/gnu/usr.bin/rcs/rcsclean/rcsclean.1 @@ -2,7 +2,7 @@ .ds Rv \\$3 .ds Dt \\$4 .. -.Id $Id$ +.Id $Id: rcsclean.1,v 1.4 1997/02/22 15:47:57 peter Exp $ .ds r \&\s-1RCS\s0 .if n .ds - \%-- .if t .ds - \(em diff --git a/gnu/usr.bin/rcs/rcsclean/rcsclean.c b/gnu/usr.bin/rcs/rcsclean/rcsclean.c index c321270bed3e3..f3d4778aa29c5 100644 --- a/gnu/usr.bin/rcs/rcsclean/rcsclean.c +++ b/gnu/usr.bin/rcs/rcsclean/rcsclean.c @@ -38,7 +38,7 @@ static void cleanup P((void)); static RILE *workptr; static int exitstatus; -mainProg(rcscleanId, "rcsclean", "$Id$") +mainProg(rcscleanId, "rcsclean", "$Id: rcsclean.c,v 1.4 1997/02/22 15:47:58 peter Exp $") { static char const usage[] = "\nrcsclean: usage: rcsclean -ksubst -{nqru}[rev] -T -Vn -xsuff -zzone file ..."; diff --git a/gnu/usr.bin/rcs/rcsdiff/rcsdiff.1 b/gnu/usr.bin/rcs/rcsdiff/rcsdiff.1 index 5dff7d9f2e8a0..6b1fed06a6c96 100644 --- a/gnu/usr.bin/rcs/rcsdiff/rcsdiff.1 +++ b/gnu/usr.bin/rcs/rcsdiff/rcsdiff.1 @@ -2,7 +2,7 @@ .ds Rv \\$3 .ds Dt \\$4 .. -.Id $Id$ +.Id $Id: rcsdiff.1,v 1.4 1997/02/22 15:48:00 peter Exp $ .ds r \&\s-1RCS\s0 .if n .ds - \%-- .if t .ds - \(em diff --git a/gnu/usr.bin/rcs/rcsdiff/rcsdiff.c b/gnu/usr.bin/rcs/rcsdiff/rcsdiff.c index 371dd735667ea..fa6c12756532c 100644 --- a/gnu/usr.bin/rcs/rcsdiff/rcsdiff.c +++ b/gnu/usr.bin/rcs/rcsdiff/rcsdiff.c @@ -151,7 +151,7 @@ static int exitstatus; static RILE *workptr; static struct stat workstat; -mainProg(rcsdiffId, "rcsdiff", "$Id$") +mainProg(rcsdiffId, "rcsdiff", "$Id: rcsdiff.c,v 1.7 1997/02/22 15:48:01 peter Exp $") { static char const cmdusage[] = "\nrcsdiff usage: rcsdiff -ksubst -q -rrev1 [-rrev2] -Vn -xsuff -zzone [diff options] file ..."; diff --git a/gnu/usr.bin/rcs/rcsfreeze/rcsfreeze.1 b/gnu/usr.bin/rcs/rcsfreeze/rcsfreeze.1 index 69ca60b0b304a..de2f273872fdd 100644 --- a/gnu/usr.bin/rcs/rcsfreeze/rcsfreeze.1 +++ b/gnu/usr.bin/rcs/rcsfreeze/rcsfreeze.1 @@ -2,7 +2,7 @@ .ds Rv \\$3 .ds Dt \\$4 .. -.Id $Id$ +.Id $Id: rcsfreeze.1,v 1.4 1997/02/22 15:48:03 peter Exp $ .ds r \s-1RCS\s0 .TH RCSFREEZE 1 \*(Dt GNU .SH NAME diff --git a/gnu/usr.bin/rcs/rcsfreeze/rcsfreeze.sh b/gnu/usr.bin/rcs/rcsfreeze/rcsfreeze.sh index 4c3945e25d60b..c86a7c381f8e9 100644 --- a/gnu/usr.bin/rcs/rcsfreeze/rcsfreeze.sh +++ b/gnu/usr.bin/rcs/rcsfreeze/rcsfreeze.sh @@ -2,7 +2,7 @@ # rcsfreeze - assign a symbolic revision number to a configuration of RCS files -# $Id$ +# $Id: rcsfreeze.sh,v 1.7 1997/02/22 15:48:04 peter Exp $ # The idea is to run rcsfreeze each time a new version is checked # in. A unique symbolic revision number (C_[number], where number diff --git a/gnu/usr.bin/rcs/rcsmerge/rcsmerge.1 b/gnu/usr.bin/rcs/rcsmerge/rcsmerge.1 index d962c2240daa2..a1a9d386b46d5 100644 --- a/gnu/usr.bin/rcs/rcsmerge/rcsmerge.1 +++ b/gnu/usr.bin/rcs/rcsmerge/rcsmerge.1 @@ -2,7 +2,7 @@ .ds Rv \\$3 .ds Dt \\$4 .. -.Id $Id$ +.Id $Id: rcsmerge.1,v 1.4 1997/02/22 15:48:06 peter Exp $ .ds r \&\s-1RCS\s0 .if n .ds - \%-- .if t .ds - \(em diff --git a/gnu/usr.bin/rcs/rcsmerge/rcsmerge.c b/gnu/usr.bin/rcs/rcsmerge/rcsmerge.c index 7555343f33379..c84dae911c280 100644 --- a/gnu/usr.bin/rcs/rcsmerge/rcsmerge.c +++ b/gnu/usr.bin/rcs/rcsmerge/rcsmerge.c @@ -117,7 +117,7 @@ Report problems and direct all questions to: static char const co[] = CO; -mainProg(rcsmergeId, "rcsmerge", "$Id$") +mainProg(rcsmergeId, "rcsmerge", "$Id: rcsmerge.c,v 1.6 1997/02/22 15:48:07 peter Exp $") { static char const cmdusage[] = "\nrcsmerge usage: rcsmerge -rrev1 [-rrev2] -ksubst -{pq}[rev] -Vn -xsuff -zzone file"; diff --git a/gnu/usr.bin/rcs/rcstest b/gnu/usr.bin/rcs/rcstest index 36b63e619fc03..d557694a17239 100755 --- a/gnu/usr.bin/rcs/rcstest +++ b/gnu/usr.bin/rcs/rcstest @@ -15,7 +15,7 @@ # The current directory and ./RCS must be readable, writable, and searchable. -# $Id$ +# $Id: rcstest,v 1.4 1997/02/22 15:47:15 peter Exp $ # Copyright 1990, 1991, 1992, 1993, 1994, 1995 Paul Eggert diff --git a/gnu/usr.bin/rcs/rlog/rlog.1 b/gnu/usr.bin/rcs/rlog/rlog.1 index 953617cecdc88..bc0b0c1797a5c 100644 --- a/gnu/usr.bin/rcs/rlog/rlog.1 +++ b/gnu/usr.bin/rcs/rlog/rlog.1 @@ -2,7 +2,7 @@ .ds Rv \\$3 .ds Dt \\$4 .. -.Id $Id$ +.Id $Id: rlog.1,v 1.7 1997/02/22 15:48:10 peter Exp $ .ds i \&\s-1ISO\s0 .ds r \&\s-1RCS\s0 .ds u \&\s-1UTC\s0 diff --git a/gnu/usr.bin/rcs/rlog/rlog.c b/gnu/usr.bin/rcs/rlog/rlog.c index 75e68c320d24c..ce9115417e2df 100644 --- a/gnu/usr.bin/rcs/rlog/rlog.c +++ b/gnu/usr.bin/rcs/rlog/rlog.c @@ -218,7 +218,7 @@ static struct rcslockers *lockerlist; static struct stateattri *statelist; -mainProg(rlogId, "rlog", "$Id$") +mainProg(rlogId, "rlog", "$Id: rlog.c,v 1.12 1997/02/22 15:48:11 peter Exp $") { static char const cmdusage[] = "\nrlog usage: rlog -{bhLNRt} -v[string] -ddates -l[lockers] -r[revs] -sstates -Vn -w[logins] -xsuff -zzone file ..."; diff --git a/gnu/usr.bin/sdiff/Makefile b/gnu/usr.bin/sdiff/Makefile index 9443fe5019a92..c8a2e74d72411 100644 --- a/gnu/usr.bin/sdiff/Makefile +++ b/gnu/usr.bin/sdiff/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.7 1997/02/22 15:45:24 peter Exp $ +# $Id: Makefile,v 1.4 1997/10/29 16:58:20 ache Exp $ .PATH: ${.CURDIR}/../../../contrib/diff diff --git a/gnu/usr.bin/send-pr/send-pr.sh b/gnu/usr.bin/send-pr/send-pr.sh index fb2f95300db0f..4bf1a5fe23c3c 100644 --- a/gnu/usr.bin/send-pr/send-pr.sh +++ b/gnu/usr.bin/send-pr/send-pr.sh @@ -20,7 +20,7 @@ # along with GNU GNATS; see the file COPYING. If not, write to # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. # -# $Id: send-pr.sh,v 1.8 1997/02/22 15:48:14 peter Exp $ +# $Id: send-pr.sh,v 1.9 1997/06/07 23:46:48 paul Exp $ # The version of this send-pr. VERSION=3.2 diff --git a/gnu/usr.bin/tar/getdate.y b/gnu/usr.bin/tar/getdate.y index 63ac7f7c942bd..49f43a1ced7eb 100644 --- a/gnu/usr.bin/tar/getdate.y +++ b/gnu/usr.bin/tar/getdate.y @@ -1,5 +1,5 @@ %{ -/* $Revision: 1.2.8.3 $ +/* $Revision: 1.5 $ ** ** Originally written by Steven M. Bellovin <smb@research.att.com> while ** at the University of North Carolina at Chapel Hill. Later tweaked by @@ -98,7 +98,7 @@ extern struct tm *localtime(); #if !defined(lint) && !defined(SABER) static char RCS[] = - "$Header: /home/ncvs/src/gnu/usr.bin/tar/getdate.y,v 1.2.8.3 1999/01/13 06:27:34 danny Exp $"; + "$Header: /home/ncvs/src/gnu/usr.bin/tar/getdate.y,v 1.5 1999/01/13 06:31:55 danny Exp $"; #endif /* !defined(lint) && !defined(SABER) */ diff --git a/gnu/usr.bin/tar/tar.1 b/gnu/usr.bin/tar/tar.1 index 3bf0711d8b3fa..95018cc9fbfff 100644 --- a/gnu/usr.bin/tar/tar.1 +++ b/gnu/usr.bin/tar/tar.1 @@ -4,7 +4,7 @@ .\" Written by John F. Woods <jfw@jfwhome.funhouse.com> .\" Updated by Robert Eckardt <roberte@mep.ruhr-uni-bochum.de> .\" -.\" $Id: tar.1,v 1.17 1998/09/09 03:04:53 jkoshy Exp $ +.\" $Id: tar.1,v 1.18 1998/09/22 09:55:09 roberto Exp $ .\" .Dd 25 August 1997 .Os FreeBSD diff --git a/gnu/usr.bin/texinfo/Makefile b/gnu/usr.bin/texinfo/Makefile index bd696f27ef04b..f8908b90e182d 100644 --- a/gnu/usr.bin/texinfo/Makefile +++ b/gnu/usr.bin/texinfo/Makefile @@ -1,5 +1,5 @@ # -# $Id$ +# $Id: Makefile,v 1.7 1999/01/14 20:00:26 markm Exp $ # SUBDIR= libtxi libintl makeinfo info install-info doc diff --git a/gnu/usr.bin/texinfo/Makefile.inc b/gnu/usr.bin/texinfo/Makefile.inc index 08a475c92413f..09bd48a68a93b 100644 --- a/gnu/usr.bin/texinfo/Makefile.inc +++ b/gnu/usr.bin/texinfo/Makefile.inc @@ -1,4 +1,4 @@ -# $Id: Makefile.inc,v 1.8 1999/01/14 20:00:26 markm Exp $ +# $Id: Makefile.inc,v 1.9 1999/01/20 02:08:07 bde Exp $ TXIDIR= ${.CURDIR}/../../../../contrib/texinfo diff --git a/gnu/usr.bin/texinfo/doc/Makefile b/gnu/usr.bin/texinfo/doc/Makefile index 65e8fa6a621aa..65e2b0eecf22a 100644 --- a/gnu/usr.bin/texinfo/doc/Makefile +++ b/gnu/usr.bin/texinfo/doc/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.9 1999/01/14 20:00:43 markm Exp $ +# $Id: Makefile,v 1.10 1999/01/19 23:36:05 bde Exp $ INFO= info info-stnd texinfo diff --git a/gnu/usr.bin/texinfo/info/Makefile b/gnu/usr.bin/texinfo/info/Makefile index 2e291d6a2c7fb..aabe78648db72 100644 --- a/gnu/usr.bin/texinfo/info/Makefile +++ b/gnu/usr.bin/texinfo/info/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.7 1999/01/14 20:00:44 markm Exp $ PROG= info NOMAN= yes diff --git a/gnu/usr.bin/texinfo/install-info/Makefile b/gnu/usr.bin/texinfo/install-info/Makefile index 114baaab228fe..610ad36eb69f8 100644 --- a/gnu/usr.bin/texinfo/install-info/Makefile +++ b/gnu/usr.bin/texinfo/install-info/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.8 1999/01/14 20:00:44 markm Exp $ PROG= install-info diff --git a/gnu/usr.bin/texinfo/install-info/install-info.1 b/gnu/usr.bin/texinfo/install-info/install-info.1 index d9ea5f8d19740..ab6f75ea87fa0 100644 --- a/gnu/usr.bin/texinfo/install-info/install-info.1 +++ b/gnu/usr.bin/texinfo/install-info/install-info.1 @@ -23,7 +23,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $Id: install-info.1,v 1.1 1997/08/29 09:10:22 obrien Exp $ +.\" $Id: install-info.1,v 1.2 1998/04/01 06:29:16 charnier Exp $ .\" .\" .TH install-info 1 .Dd August 29, 1997 diff --git a/gnu/usr.bin/texinfo/libintl/Makefile b/gnu/usr.bin/texinfo/libintl/Makefile index 0bce892fccdd9..2f41fc0bd887e 100644 --- a/gnu/usr.bin/texinfo/libintl/Makefile +++ b/gnu/usr.bin/texinfo/libintl/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.1 1999/01/14 20:00:45 markm Exp $ LIB= intl INTERNALLIB= true diff --git a/gnu/usr.bin/texinfo/libtxi/Makefile b/gnu/usr.bin/texinfo/libtxi/Makefile index 5e83853a11b16..837a88c05f20a 100644 --- a/gnu/usr.bin/texinfo/libtxi/Makefile +++ b/gnu/usr.bin/texinfo/libtxi/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.5 1999/01/14 20:00:45 markm Exp $ LIB= txi INTERNALLIB= true diff --git a/gnu/usr.bin/texinfo/makeinfo/Makefile b/gnu/usr.bin/texinfo/makeinfo/Makefile index 2037f4c090112..15df52b2d96b9 100644 --- a/gnu/usr.bin/texinfo/makeinfo/Makefile +++ b/gnu/usr.bin/texinfo/makeinfo/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.8 1999/01/14 20:00:46 markm Exp $ +# $Id: Makefile,v 1.9 1999/01/15 12:27:02 peter Exp $ PROG= makeinfo NOMAN= yes |