[kaffe] CVS kaffe (guilhem): First bug fix of the year ! :)
Kaffe CVS
cvs-commits at kaffe.org
Sat Jan 1 00:50:37 PST 2005
PatchSet 5737
Date: 2005/01/01 08:45:57
Author: guilhem
Branch: HEAD
Tag: (none)
Log:
First bug fix of the year ! :)
* kaffe/kaffevm/external.c: Adapted error handling to darwin's and
openbsd's messages.
* libraries/clib/classpath/Makefile.am: Added useful link flags
for libclasspath.
* libraries/clib/classpath/Makefile.in: Regenerated.
Members:
ChangeLog:1.3281->1.3282
kaffe/kaffevm/external.c:1.76->1.77
libraries/clib/classpath/Makefile.am:1.2->1.3
libraries/clib/classpath/Makefile.in:1.5->1.6
Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.3281 kaffe/ChangeLog:1.3282
--- kaffe/ChangeLog:1.3281 Fri Dec 31 16:58:33 2004
+++ kaffe/ChangeLog Sat Jan 1 08:45:57 2005
@@ -1,3 +1,15 @@
+2005-01-01 Guilhem Lavaux <guilhem at kaffe.org>
+
+ First bug fix of the year ! :)
+
+ * kaffe/kaffevm/external.c: Adapted error handling to darwin's and
+ openbsd's messages.
+
+ * libraries/clib/classpath/Makefile.am: Added useful link flags
+ for libclasspath.
+
+ * libraries/clib/classpath/Makefile.in: Regenerated.
+
2004-12-31 Dalibor Topic <robilad at kaffe.org>
* test/internal/Makefile.am (NativeMethodCall.class): Merged
Index: kaffe/kaffe/kaffevm/external.c
diff -u kaffe/kaffe/kaffevm/external.c:1.76 kaffe/kaffe/kaffevm/external.c:1.77
--- kaffe/kaffe/kaffevm/external.c:1.76 Wed Dec 22 00:22:03 2004
+++ kaffe/kaffe/kaffevm/external.c Sat Jan 1 08:45:58 2005
@@ -275,8 +275,9 @@
"Unknown error",
errsiz);
}
- else if( (strstr(err, "ile not found") ||
- strstr(err, "annot open")) )
+ else if( (strstr(err, " not found") ||
+ strstr(err, "annot open") ||
+ strstr(err, "an't open")) )
{
char *last_sep = strrchr (path, file_separator[0]);
#ifdef HAVE_SNPRINTF
Index: kaffe/libraries/clib/classpath/Makefile.am
diff -u kaffe/libraries/clib/classpath/Makefile.am:1.2 kaffe/libraries/clib/classpath/Makefile.am:1.3
--- kaffe/libraries/clib/classpath/Makefile.am:1.2 Wed Dec 1 16:15:03 2004
+++ kaffe/libraries/clib/classpath/Makefile.am Sat Jan 1 08:45:59 2005
@@ -8,4 +8,6 @@
jnilink.c jnilink.h \
native_state.c native_state.h
-libclasspath_la_LDFLAGS = @CLASSPATH_MODULE@
+libclasspath_la_LDFLAGS = \
+ $(KLIBFLAGS) \
+ -release $(PACKAGE_VERSION)
Index: kaffe/libraries/clib/classpath/Makefile.in
diff -u kaffe/libraries/clib/classpath/Makefile.in:1.5 kaffe/libraries/clib/classpath/Makefile.in:1.6
--- kaffe/libraries/clib/classpath/Makefile.in:1.5 Wed Dec 22 19:05:16 2004
+++ kaffe/libraries/clib/classpath/Makefile.in Sat Jan 1 08:45:59 2005
@@ -377,7 +377,9 @@
jnilink.c jnilink.h \
native_state.c native_state.h
-libclasspath_la_LDFLAGS = @CLASSPATH_MODULE@
+libclasspath_la_LDFLAGS = \
+ -release $(PACKAGE_VERSION)
+
all: all-am
.SUFFIXES:
More information about the kaffe
mailing list