This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Patch: FYI: copyright update
- From: Tom Tromey <tromey at redhat dot com>
- To: Java Patch List <java-patches at gcc dot gnu dot org>
- Date: 06 Feb 2006 15:31:43 -0700
- Subject: Patch: FYI: copyright update
- Reply-to: tromey at redhat dot com
I'm checking this in on the 4.0 branch. I have similar patches for
the 4.1 branch and the trunk which I will also commit; I won't repost
these as only the path names differ.
This updates the copyright date printed by --version for all the
executables created as part of libgcj.
I've put a similar patch into GNU Classpath.
Tom
Index: ChangeLog
from Tom Tromey <tromey@redhat.com>
* gnu/java/rmi/registry/RegistryImpl.java (version): Use 2006.
* gnu/gcj/tools/gcj_dbtool/Main.java (main): Use 2006.
* gij.cc (version): Use 2006.
* gnu/gcj/convert/Convert.java (version): Use 2006.
* gnu/java/rmi/rmic/RMIC.java (parseOptions): Use 2006.
Index: gnu/java/rmi/registry/RegistryImpl.java
===================================================================
--- gnu/java/rmi/registry/RegistryImpl.java (revision 110667)
+++ gnu/java/rmi/registry/RegistryImpl.java (working copy)
@@ -1,5 +1,5 @@
/*
- Copyright (c) 1996, 1997, 1998, 1999, 2002, 2005
+ Copyright (c) 1996, 1997, 1998, 1999, 2002, 2005, 2006
Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -110,7 +110,7 @@
+ System.getProperty("java.vm.name")
+ ") "
+ System.getProperty("java.vm.version"));
- System.out.println("Copyright 2005 Free Software Foundation, Inc.");
+ System.out.println("Copyright 2006 Free Software Foundation, Inc.");
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);
Index: gnu/java/rmi/rmic/RMIC.java
===================================================================
--- gnu/java/rmi/rmic/RMIC.java (revision 110667)
+++ gnu/java/rmi/rmic/RMIC.java (working copy)
@@ -1,5 +1,5 @@
/* RMIC.java --
- Copyright (c) 1996, 1997, 1998, 1999, 2001, 2002, 2003, 2004, 2005
+ Copyright (c) 1996, 1997, 1998, 1999, 2001, 2002, 2003, 2004, 2005, 2006
Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -978,7 +978,7 @@
System.out.println("rmic (" + System.getProperty("java.vm.name")
+ ") " + System.getProperty("java.vm.version"));
System.out.println();
- System.out.println("Copyright 2005 Free Software Foundation, Inc.");
+ System.out.println("Copyright 2006 Free Software Foundation, Inc.");
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);
Index: gnu/gcj/convert/Convert.java
===================================================================
--- gnu/gcj/convert/Convert.java (revision 110667)
+++ gnu/gcj/convert/Convert.java (working copy)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1999, 2002, 2005 Free Software Foundation
+/* Copyright (C) 1999, 2002, 2005, 2006 Free Software Foundation
This file is part of libgcj.
@@ -45,7 +45,7 @@
+ ") "
+ System.getProperty("java.vm.version"));
System.out.println();
- System.out.println("Copyright (C) 2005 Free Software Foundation, Inc.");
+ System.out.println("Copyright (C) 2006 Free Software Foundation, Inc.");
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);
Index: gnu/gcj/tools/gcj_dbtool/Main.java
===================================================================
--- gnu/gcj/tools/gcj_dbtool/Main.java (revision 110667)
+++ gnu/gcj/tools/gcj_dbtool/Main.java (working copy)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2004, 2005 Free Software Foundation
+/* Copyright (C) 2004, 2005, 2006 Free Software Foundation
This file is part of libgcj.
@@ -46,7 +46,7 @@
+ ") "
+ System.getProperty("java.vm.version"));
System.out.println();
- System.out.println("Copyright 2005 Free Software Foundation, Inc.");
+ System.out.println("Copyright 2006 Free Software Foundation, Inc.");
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.");
return;
Index: gij.cc
===================================================================
--- gij.cc (revision 110667)
+++ gij.cc (working copy)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1999-2005 Free Software Foundation
+/* Copyright (C) 1999-2006 Free Software Foundation
This file is part of libgcj.
@@ -42,7 +42,7 @@
{
printf ("java version \"" JV_VERSION "\"\n");
printf ("gij (GNU libgcj) version %s\n\n", __VERSION__);
- printf ("Copyright (C) 2005 Free Software Foundation, Inc.\n");
+ printf ("Copyright (C) 2006 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");
}