gcc:
authorjsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 31 Jan 2002 19:36:28 +0000 (19:36 +0000)
committerjsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 31 Jan 2002 19:36:28 +0000 (19:36 +0000)
* 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.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@49372 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/f/ChangeLog
gcc/f/g77spec.c
gcc/gccbug.in
gcc/java/ChangeLog
gcc/java/gjavah.c
gcc/java/jcf-dump.c
gcc/java/jv-scan.c
libjava/ChangeLog
libjava/gnu/gcj/convert/Convert.java

index 410e1b0..f7ea229 100644 (file)
@@ -1,3 +1,8 @@
+2002-01-31  Joseph S. Myers  <jsm28@cam.ac.uk>
+
+       * gccbug.in: Follow GNU Coding Standards for --version.  Use GCC
+       version rather than GNATS version in --version output.
+
 2002-01-31  Richard Sandiford  <rsandifo@redhat.com>
 
        * ifcvt.c (noce_process_if_block): Make a copy of the destination
index ee4afd7..7cec89c 100644 (file)
@@ -1,3 +1,8 @@
+2002-01-31  Joseph S. Myers  <jsm28@cam.ac.uk>
+
+       * g77spec.c (lang_specific_driver): Follow GNU Coding Standards
+       for --version.
+
 2002-01-30  Richard Henderson  <rth@redhat.com>
 
        * ste.c (ffeste_begin_iterdo_): Use expand_exit_loop_top_cond.
index 7ba0756..2e094d9 100644 (file)
@@ -374,7 +374,7 @@ lang_specific_driver (in_argc, in_argv, in_added_libraries)
 
        case OPTION_version:
          printf ("\
-GNU Fortran %s (Fortran Frontend version %s)\n\
+GNU Fortran (GCC %s) %s\n\
 Copyright (C) 2002 Free Software Foundation, Inc.\n\
 \n\
 GNU Fortran comes with NO WARRANTY, to the extent permitted by law.\n\
index 5b085b4..9619e61 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 # Submit a problem report to a GNATS site.
-# Copyright (C) 1993, 2000, 2001 Free Software Foundation, Inc.
+# Copyright (C) 1993, 2000, 2001, 2002 Free Software Foundation, Inc.
 # Contributed by Brendan Kehoe (brendan@cygnus.com), based on a
 # version written by Heinz G. Seidl (hgs@cygnus.com).
 #
@@ -183,7 +183,14 @@ while [ $# -gt 0 ]; do
     -l | -CL | --lisp) FORMAT=lisp ;;
     --request-id) REQUEST_ID=true ;;
     -h | --help) echo "$USAGE"; $REMOVE_TEMP; exit 0 ;;
-    -V | --version) echo "$VERSION"; $REMOVE_TEMP; exit 0 ;;
+    -V | --version) cat <<EOF
+gccbug (GCC) $DEFAULT_RELEASE
+Copyright (C) 2002 Free Software Foundation, Inc.
+This is free software; see the source for copying conditions.  There is NO
+warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+
+EOF
+       $REMOVE_TEMP; exit 0 ;;
     -*) echo "$USAGE" ; $REMOVE_TEMP; exit 1 ;;
     *) echo "$USAGE" ; $REMOVE_TEMP; exit 1
  esac
index 8e434f2..a4fec09 100644 (file)
@@ -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
index b128ab7..9b205f4 100644 (file)
@@ -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);
index 16fce90..fefee03 100644 (file)
@@ -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);
index 4120a2f..343655e 100644 (file)
@@ -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);
index 1c192d7..ffdf432 100644 (file)
@@ -1,3 +1,8 @@
+2002-01-31  Joseph S. Myers  <jsm28@cam.ac.uk>
+
+       * gnu/gcj/convert/Convert.java: Only include one copyright year in
+       --version output.
+
 2002-01-30  Tom Tromey  <tromey@redhat.com>
 
        * java/net/natPlainSocketImpl.cc (_Jv_recv): Added template
index fe18a67..1858a5f 100644 (file)
@@ -45,7 +45,7 @@ public class Convert
                       + ") "
                       + System.getProperty("java.vm.version"));
     System.out.println();
-    System.out.println("Copyright 1999, 2002 Free Software Foundation");
+    System.out.println("Copyright (C) 2002 Free Software Foundation");
     System.out.println("This is free software; see the source for copying conditions.  There is NO");
     System.out.println("warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.");
     System.exit(0);