[kaffe] Re: Planning for 1.1.3 release

2003-12-02 Thread Nicolas Le Sommer
Dalibor Topic a écrit : Hi Hakon, Hakon Gunsen wrote: Hi! I don't know if this is a blocker, but I'm unable to compile Kaffe - both 1.1.2 and cvs, on the new Fedora Core distribution. There are some differences, but when compiling cvs it breaks in the make process with this message: /bin/sh ./

[kaffe] Compilation failed

2003-10-31 Thread Nicolas Le Sommer
Hi all, The compilation of the current Kaffe CVS version because the file gnu/java/net/content/text/plain.java does not exist in Kaffe. This file is declared in Makefile.am of kaffe/libraries/javalib Best regards, Nicolas ___ kaffe mailing list [EMAIL

[kaffe] Bug in thread-impl.c

2003-06-01 Thread Nicolas Le Sommer
Hi all, I am trying to install the current CVS version of Kaffe and I have the following problems : thread-impl.c: In function `tDumpList': thread-impl.c:194: `stat_act' undeclared (first use in this function) thread-impl.c:194: (Each undeclared identifier is reported only once thread-impl.c:194:

[kaffe] patch correcting awt bug

2002-10-29 Thread Nicolas Le Sommer
Hi, Please find attached a patch correcting a bug in the java/awt/image/DirectColorModel.java Best regards, Nico 55c55 < if ( bshift != 0 ) { --- > if ( bmask != 0 ) { 121c121 < for ( i=0; (mask & 1) == 0; i++ ) --- > for ( i=0; ((mask & 1) == 0

[kaffe] Problem with defineClass in a user-ClassLoader

2002-05-07 Thread Nicolas Le Sommer
Hi, I would like to build a classLoader that permits to load classes without delegating the class loading to the SystemClassLoader. Seen from this point of view, I read the classes from the file system (readClassFile method) and then I called the defineClass method as following : byte []

[kaffe] ClassLoader & defineClass

2002-05-07 Thread Nicolas Le Sommer
Hi, I would like to build a classLoader that permits to load classes without delegating the class loading to the SystemClassLoader. Seen from this point of view, I read the classes from the file system (readClassFile method) and then I called the defineClass method as following : byte []