This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
[ecj] Patch: FYI: update java.class.version
- From: Tom Tromey <tromey at redhat dot com>
- To: Java Patch List <java-patches at gcc dot gnu dot org>
- Date: 21 Jun 2006 17:01:32 -0600
- Subject: [ecj] Patch: FYI: update java.class.version
- Reply-to: tromey at redhat dot com
I'm checking this in on the gcj-eclipse branch.
This is like Bryce's patch for svn trunk, but ups the class version
to 49 -- aka java 5.
Tom
2006-06-20 Tom Tromey <tromey@redhat.com>
* gnu/classpath/natSystemProperties.cc (insertSystemProperties):
Set java.class.version to 49.
Index: gnu/classpath/natSystemProperties.cc
===================================================================
--- gnu/classpath/natSystemProperties.cc (revision 114828)
+++ gnu/classpath/natSystemProperties.cc (working copy)
@@ -1,7 +1,7 @@
// natSystemProperties.cc - Implementation of native side of
// SystemProperties class.
-/* Copyright (C) 2005 Free Software Foundation
+/* Copyright (C) 2005, 2006 Free Software Foundation
This file is part of libgcj.
@@ -156,7 +156,7 @@
SET ("java.runtime.version", JV_VERSION);
SET ("java.vendor", "Free Software Foundation, Inc.");
SET ("java.vendor.url", "http://gcc.gnu.org/java/");
- SET ("java.class.version", "46.0");
+ SET ("java.class.version", "49.0");
SET ("java.vm.specification.version", "1.0");
SET ("java.vm.specification.name", "Java(tm) Virtual Machine Specification");
SET ("java.vm.specification.vendor", "Sun Microsystems Inc.");