aboutsummaryrefslogtreecommitdiff
path: root/gcc/java
diff options
context:
space:
mode:
authorJoseph Myers <jsm28@cam.ac.uk>2002-01-31 19:36:28 +0000
committerJoseph Myers <jsm28@gcc.gnu.org>2002-01-31 19:36:28 +0000
commit8512bbd75204223137ec839744ac3a1b8f4a0a90 (patch)
treeb33f399f7505440e425c660bf1c7aa2b6023128d /gcc/java
parent46af757b0625e7365e791ec910609206de7d8b07 (diff)
downloadgcc-8512bbd75204223137ec839744ac3a1b8f4a0a90.zip
gcc-8512bbd75204223137ec839744ac3a1b8f4a0a90.tar.gz
gcc-8512bbd75204223137ec839744ac3a1b8f4a0a90.tar.bz2
gccbug.in: Follow GNU Coding Standards for --version.
gcc: * gccbug.in: Follow GNU Coding Standards for --version. Use GCC version rather than GNATS version in --version output. gcc/f: * g77spec.c (lang_specific_driver): Follow GNU Coding Standards for --version. gcc/java: * gjavah.c (version), jcf-dump.c (version), jv-scan.c (version): Follow GNU Coding Standards for --version. libjava: * gnu/gcj/convert/Convert.java: Only include one copyright year in --version output. From-SVN: r49372
Diffstat (limited to 'gcc/java')
-rw-r--r--gcc/java/ChangeLog5
-rw-r--r--gcc/java/gjavah.c4
-rw-r--r--gcc/java/jcf-dump.c6
-rw-r--r--gcc/java/jv-scan.c6
4 files changed, 13 insertions, 8 deletions
diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog
index 8e434f2..a4fec09 100644
--- a/gcc/java/ChangeLog
+++ b/gcc/java/ChangeLog
@@ -1,3 +1,8 @@
+2002-01-31 Joseph S. Myers <jsm28@cam.ac.uk>
+
+ * gjavah.c (version), jcf-dump.c (version), jv-scan.c (version):
+ Follow GNU Coding Standards for --version.
+
2002-01-28 Tom Tromey <tromey@redhat.com>
* expr.c (build_jni_stub): Ensure storage for `meth' is
diff --git a/gcc/java/gjavah.c b/gcc/java/gjavah.c
index b128ab7..9b205f4 100644
--- a/gcc/java/gjavah.c
+++ b/gcc/java/gjavah.c
@@ -2185,8 +2185,8 @@ help ()
static void
version ()
{
- printf ("gcjh (%s)\n\n", version_string);
- printf ("Copyright (C) 2001 Free Software Foundation, Inc.\n");
+ printf ("gcjh (GCC) %s\n\n", version_string);
+ printf ("Copyright (C) 2002 Free Software Foundation, Inc.\n");
printf ("This is free software; see the source for copying conditions. There is NO\n");
printf ("warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n");
exit (0);
diff --git a/gcc/java/jcf-dump.c b/gcc/java/jcf-dump.c
index 16fce90..fefee03 100644
--- a/gcc/java/jcf-dump.c
+++ b/gcc/java/jcf-dump.c
@@ -1,7 +1,7 @@
/* Program to dump out a Java(TM) .class file.
Functionally similar to Sun's javap.
- Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
+ Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -822,8 +822,8 @@ help ()
static void
version ()
{
- printf ("jcf-dump (%s)\n\n", version_string);
- printf ("Copyright (C) 2001 Free Software Foundation, Inc.\n");
+ printf ("jcf-dump (GCC) %s\n\n", version_string);
+ printf ("Copyright (C) 2002 Free Software Foundation, Inc.\n");
printf ("This is free software; see the source for copying conditions. There is NO\n");
printf ("warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n");
exit (0);
diff --git a/gcc/java/jv-scan.c b/gcc/java/jv-scan.c
index 4120a2f..343655e 100644
--- a/gcc/java/jv-scan.c
+++ b/gcc/java/jv-scan.c
@@ -1,5 +1,5 @@
/* Main for jv-scan
- Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
+ Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
Contributed by Alexandre Petit-Bianco (apbianco@cygnus.com)
This file is part of GNU CC.
@@ -118,8 +118,8 @@ help ()
static void
version ()
{
- printf ("jv-scan (%s)\n\n", version_string);
- printf ("Copyright (C) 2001 Free Software Foundation, Inc.\n");
+ printf ("jv-scan (GCC) %s\n\n", version_string);
+ printf ("Copyright (C) 2002 Free Software Foundation, Inc.\n");
printf ("This is free software; see the source for copying conditions. There is NO\n");
printf ("warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n");
exit (0);