automake error

2004-01-20 Thread Matthias Pfisterer
Hi, I'm trying to build classpath from the CVS (checked out today). I encounter an error when running automake: --- artemis:~/java/classpathautomake --version automake (GNU automake) 1.6.3 Written by Tom Tromey [EMAIL PROTECTED]. Copyright 2002 Free Software Foundation, Inc. This is free

small compilation problem fix

2004-01-20 Thread David Bélanger
Hi, Small bug fix. Some gtk code does not compile since it is not official C standard code: variable declaration after statements. The patch attached fixes it. FYI, we just updated SableVM ( http://www.sablevm.org/ ) with a yesterday Classpath CVS snapshot in our staging branch.

Re: automake error

2004-01-20 Thread Matthias Pfisterer
Michael Koch wrote: On Tue, Jan 20, 2004 at 12:08:21PM +0100, Matthias Pfisterer wrote: Hi, I'm trying to build classpath from the CVS (checked out today). I encounter an error when running automake: --- artemis:~/java/classpathautomake --version automake (GNU automake) 1.6.3 Written by Tom

error with old kaffe version

2004-01-20 Thread Matthias Pfisterer
Hi, another note for the HACKING file: I tried to build the CVS of classpath with kjc as compiler and kaffe as JVM to execute kjc. When using kaffe 1.0.5, I get the following error: --- artemis:~/java/classpathjava -version Kaffe Virtual Machine Copyright (c) 1996-1999 Transvirtual Technologies,

Re: small compilation problem fix

2004-01-20 Thread Tom Tromey
David == David Bélanger [EMAIL PROTECTED] writes: David Small bug fix. Some gtk code does not compile since it is David not official C standard code: variable declaration after statements. Actually this is a new feature in C99. Still, we can easily support older versions of C. Here's an

more diffs

2004-01-20 Thread Matthias Pfisterer
Hi, another couple of fixes (attached). Matthias -- Matthias Pfisterer mailto:[EMAIL PROTECTED] Reuchlinstrasse 28 phone ++49-711-62 87 12 D-70176 Stuttgart (in Deutschland 0711-62 87 12) GERMANY Work like you don't need the money. Love like you've never been hurt. Dance like

bug in java.util.Map

2004-01-20 Thread Matthias Pfisterer
Hi, I found a minor bug in java.util.Map: the inner class Entry has to be public. Diff is attached. Matthias -- Matthias Pfisterer mailto:[EMAIL PROTECTED] Reuchlinstrasse 28 phone ++49-711-62 87 12 D-70176 Stuttgart (in Deutschland 0711-62 87 12) GERMANY Work like you don't

RE: bug in java.util.Map

2004-01-20 Thread David Holmes
I found a minor bug in java.util.Map: the inner class Entry has to be public. Diff is attached. All interface members are implicitly public. The preferred style is to not explicitly define them as public. David Holmes ___ Classpath mailing list

Re: bug in java.util.Map

2004-01-20 Thread Eric Blake
[Shoot, I hit send too early.] For that matter, you should delete the static modifier. Inner classes declared in an interface are implicitly 'public static'. Matthias Pfisterer wrote: Hi, I found a minor bug in java.util.Map: the inner class Entry has to be public. Diff is attached.