You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by hi...@apache.org on 2010/03/10 11:15:25 UTC

svn commit: r921282 - /harmony/enhanced/drlvm/trunk/vm/vmcore/src/init/vm_properties.cpp

Author: hindessm
Date: Wed Mar 10 10:15:25 2010
New Revision: 921282

URL: http://svn.apache.org/viewvc?rev=921282&view=rev
Log:
Change DRLVM java.vm.version property to something more meaningful.

Modified:
    harmony/enhanced/drlvm/trunk/vm/vmcore/src/init/vm_properties.cpp

Modified: harmony/enhanced/drlvm/trunk/vm/vmcore/src/init/vm_properties.cpp
URL: http://svn.apache.org/viewvc/harmony/enhanced/drlvm/trunk/vm/vmcore/src/init/vm_properties.cpp?rev=921282&r1=921281&r2=921282&view=diff
==============================================================================
--- harmony/enhanced/drlvm/trunk/vm/vmcore/src/init/vm_properties.cpp (original)
+++ harmony/enhanced/drlvm/trunk/vm/vmcore/src/init/vm_properties.cpp Wed Mar 10 10:15:25 2010
@@ -163,7 +163,8 @@ static void init_java_properties(Propert
     properties.set_new("java.vm.specification.version", "1.0");
     properties.set_new("java.vm.specification.vendor", "Sun Microsystems Inc.");
     properties.set_new("java.vm.specification.name", "Java Virtual Machine Specification");
-    properties.set_new("java.vm.version", "11.2.0");
+    properties.set_new("java.vm.version",
+                       JAVA_RUNTIME_VERSION "-r" VERSION_SVN_TAG);
     properties.set_new("java.vm.vendor", "Apache Software Foundation");
     properties.set_new("java.vm.name", "DRLVM");
     properties.set_new("java.runtime.name", "Apache Harmony");