[kaffe] CVS kaffe (robilad): Fixlet to make Kaffe detectable by NetBeans4
Kaffe CVS
cvs-commits at kaffe.org
Sun Apr 17 05:37:12 PDT 2005
PatchSet 5679
Date: 2005/04/17 12:32:42
Author: robilad
Branch: HEAD
Tag: (none)
Log:
Fixlet to make Kaffe detectable by NetBeans4
2005-04-17 Dalibor Topic <robilad at kaffe.org>
* kaffe/kaffe/version.c (printShortVersion): Changed first string
to something more like JDK to make Kaffe useable from within
NetBeans 4.0 as a runtime.
* libraries/javalib/gnu/classpath/VMSystemProperties.java: (preInit)
Set java.vm.version to 1.1.5+cvs.
Members:
ChangeLog:1.3845->1.3846
kaffe/kaffe/version.c:1.11->1.12
libraries/javalib/gnu/classpath/VMSystemProperties.java:1.4->1.5
Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.3845 kaffe/ChangeLog:1.3846
--- kaffe/ChangeLog:1.3845 Sat Apr 16 15:13:43 2005
+++ kaffe/ChangeLog Sun Apr 17 12:32:42 2005
@@ -1,3 +1,12 @@
+2005-04-17 Dalibor Topic <robilad at kaffe.org>
+
+ * kaffe/kaffe/version.c (printShortVersion): Changed first string
+ to something more like JDK to make Kaffe useable from within
+ NetBeans 4.0 as a runtime.
+
+ * libraries/javalib/gnu/classpath/VMSystemProperties.java: (preInit)
+ Set java.vm.version to 1.1.5+cvs.
+
2005-04-16 Kurt Roeckx <kurt at roeckx.be>
* kaffe/kaffevm/kaffe-gc/gc-incremental.c
Index: kaffe/kaffe/kaffe/version.c
diff -u kaffe/kaffe/kaffe/version.c:1.11 kaffe/kaffe/kaffe/version.c:1.12
--- kaffe/kaffe/kaffe/version.c:1.11 Fri Apr 15 06:45:40 2005
+++ kaffe/kaffe/kaffe/version.c Sun Apr 17 12:32:45 2005
@@ -40,7 +40,7 @@
{
if (!versionfd)
versionfd = stderr;
- fprintf(versionfd, "%s\n\n", PACKAGE_NAME);
+ fprintf(versionfd, "%s VM \"%s\"\n\n", PACKAGE, PACKAGE_VERSION);
fprintf(versionfd,
_("Copyright (c) 1996-2004 Kaffe.org project contributors (please see\n"
" the source code for a full list of contributors). All rights reserved.\n"
Index: kaffe/libraries/javalib/gnu/classpath/VMSystemProperties.java
diff -u kaffe/libraries/javalib/gnu/classpath/VMSystemProperties.java:1.4 kaffe/libraries/javalib/gnu/classpath/VMSystemProperties.java:1.5
--- kaffe/libraries/javalib/gnu/classpath/VMSystemProperties.java:1.4 Tue Mar 22 00:20:09 2005
+++ kaffe/libraries/javalib/gnu/classpath/VMSystemProperties.java Sun Apr 17 12:32:45 2005
@@ -96,7 +96,7 @@
properties.setProperty("java.vm.specification.version", "1.0");
properties.setProperty("java.vm.specification.vendor", "Sun Microsystems Inc.");
properties.setProperty("java.vm.specification.name", "Java Virtual Machine Specification");
- properties.setProperty("java.vm.version", "1.1.4+cvs");
+ properties.setProperty("java.vm.version", "1.1.5+cvs");
properties.setProperty("java.vm.vendor", "Kaffe.org project");
properties.setProperty("java.vm.name", "Kaffe");
properties.setProperty("java.specification.version", "1.2");
More information about the kaffe
mailing list