Commit 8512bbd7 by Joseph Myers Committed by Joseph Myers

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
parent 46af757b
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> 2002-01-31 Richard Sandiford <rsandifo@redhat.com>
* ifcvt.c (noce_process_if_block): Make a copy of the destination * ifcvt.c (noce_process_if_block): Make a copy of the destination
......
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> 2002-01-30 Richard Henderson <rth@redhat.com>
* ste.c (ffeste_begin_iterdo_): Use expand_exit_loop_top_cond. * ste.c (ffeste_begin_iterdo_): Use expand_exit_loop_top_cond.
......
...@@ -374,7 +374,7 @@ lang_specific_driver (in_argc, in_argv, in_added_libraries) ...@@ -374,7 +374,7 @@ lang_specific_driver (in_argc, in_argv, in_added_libraries)
case OPTION_version: case OPTION_version:
printf ("\ printf ("\
GNU Fortran %s (Fortran Frontend version %s)\n\ GNU Fortran (GCC %s) %s\n\
Copyright (C) 2002 Free Software Foundation, Inc.\n\ Copyright (C) 2002 Free Software Foundation, Inc.\n\
\n\ \n\
GNU Fortran comes with NO WARRANTY, to the extent permitted by law.\n\ GNU Fortran comes with NO WARRANTY, to the extent permitted by law.\n\
......
#!/bin/sh #!/bin/sh
# Submit a problem report to a GNATS site. # 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 # Contributed by Brendan Kehoe (brendan@cygnus.com), based on a
# version written by Heinz G. Seidl (hgs@cygnus.com). # version written by Heinz G. Seidl (hgs@cygnus.com).
# #
...@@ -183,7 +183,14 @@ while [ $# -gt 0 ]; do ...@@ -183,7 +183,14 @@ while [ $# -gt 0 ]; do
-l | -CL | --lisp) FORMAT=lisp ;; -l | -CL | --lisp) FORMAT=lisp ;;
--request-id) REQUEST_ID=true ;; --request-id) REQUEST_ID=true ;;
-h | --help) echo "$USAGE"; $REMOVE_TEMP; exit 0 ;; -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 ;;
*) echo "$USAGE" ; $REMOVE_TEMP; exit 1 *) echo "$USAGE" ; $REMOVE_TEMP; exit 1
esac esac
......
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> 2002-01-28 Tom Tromey <tromey@redhat.com>
* expr.c (build_jni_stub): Ensure storage for `meth' is * expr.c (build_jni_stub): Ensure storage for `meth' is
......
...@@ -2185,8 +2185,8 @@ help () ...@@ -2185,8 +2185,8 @@ help ()
static void static void
version () version ()
{ {
printf ("gcjh (%s)\n\n", version_string); printf ("gcjh (GCC) %s\n\n", version_string);
printf ("Copyright (C) 2001 Free Software Foundation, Inc.\n"); 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 ("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"); printf ("warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n");
exit (0); exit (0);
......
/* Program to dump out a Java(TM) .class file. /* Program to dump out a Java(TM) .class file.
Functionally similar to Sun's javap. 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 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 it under the terms of the GNU General Public License as published by
...@@ -822,8 +822,8 @@ help () ...@@ -822,8 +822,8 @@ help ()
static void static void
version () version ()
{ {
printf ("jcf-dump (%s)\n\n", version_string); printf ("jcf-dump (GCC) %s\n\n", version_string);
printf ("Copyright (C) 2001 Free Software Foundation, Inc.\n"); 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 ("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"); printf ("warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n");
exit (0); exit (0);
......
/* Main for jv-scan /* 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) Contributed by Alexandre Petit-Bianco (apbianco@cygnus.com)
This file is part of GNU CC. This file is part of GNU CC.
...@@ -118,8 +118,8 @@ help () ...@@ -118,8 +118,8 @@ help ()
static void static void
version () version ()
{ {
printf ("jv-scan (%s)\n\n", version_string); printf ("jv-scan (GCC) %s\n\n", version_string);
printf ("Copyright (C) 2001 Free Software Foundation, Inc.\n"); 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 ("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"); printf ("warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n");
exit (0); exit (0);
......
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> 2002-01-30 Tom Tromey <tromey@redhat.com>
* java/net/natPlainSocketImpl.cc (_Jv_recv): Added template * java/net/natPlainSocketImpl.cc (_Jv_recv): Added template
......
...@@ -45,7 +45,7 @@ public class Convert ...@@ -45,7 +45,7 @@ public class Convert
+ ") " + ") "
+ System.getProperty("java.vm.version")); + System.getProperty("java.vm.version"));
System.out.println(); 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("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.out.println("warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.");
System.exit(0); System.exit(0);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment