You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by ap...@apache.org on 2007/07/12 13:32:23 UTC

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

Author: apetrenko
Date: Thu Jul 12 04:32:22 2007
New Revision: 555585

URL: http://svn.apache.org/viewvc?view=rev&rev=555585
Log:
Patch for HARMONY-4421 "[drlvm][properties] Harmony does not provide java.runtime.version property"

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?view=diff&rev=555585&r1=555584&r2=555585
==============================================================================
--- harmony/enhanced/drlvm/trunk/vm/vmcore/src/init/vm_properties.cpp (original)
+++ harmony/enhanced/drlvm/trunk/vm/vmcore/src/init/vm_properties.cpp Thu Jul 12 04:32:22 2007
@@ -158,6 +158,8 @@
     properties.set_new("java.vm.version", "11.2.0");
     properties.set_new("java.vm.vendor", "Apache Software Foundation");
     properties.set_new("java.vm.name", "DRLVM");
+    properties.set_new("java.runtime.name", "Apache Harmony");
+    properties.set_new("java.runtime.version", "1.5.0");
     properties.set_new("java.specification.version", "1.5");
     properties.set_new("java.specification.vendor", "Sun Microsystems Inc.");
     properties.set_new("java.specification.name", "Java Platform API Specification");