OSX port of classpath

2003-10-12 Thread Chris Hoffmann
I've been working on an OSX port of JikesRVM (http://oss.software.ibm.com/developerworks/oss/jikesrvm/?origin=jikes), which uses classpath 0.06. Is there an official port of classpath to OSX? If not, I've attached a patch file showing the changes I had to make to get classpath working on OSX.

Re: dotnet platform support / gnu config.sub (long)

2003-10-12 Thread Guido Draheim
Jim Pick wrote: Anyways, the config.sub name is just going to be used to define a target - so it makes sense to call the target Java, since it's only going to be used by tools generating Java byte code, which will run on Sun's JVM. Of course it will still run on other virtual machines that

Re: Where to stay in Saarbruecken

2003-10-12 Thread Chris Gray
On Wednesday 08 October 2003 17:59, Dalibor Topic wrote: In any case, if you're coming down, send me a private e-mail, and I'll send you my contact details, so you can get in touch with me on my mobile, etc. And in any case, we should all meet on monday evening for a couple of drinks ;)

Re: Where to stay in Saarbruecken

2003-10-12 Thread Dalibor Topic
Chris Gray wrote: On Wednesday 08 October 2003 17:59, Dalibor Topic wrote: In any case, if you're coming down, send me a private e-mail, and I'll send you my contact details, so you can get in touch with me on my mobile, etc. And in any case, we should all meet on monday evening for a couple of

RE: [really patch] Re: HashMap putAll/putAllInternal bug

2003-10-12 Thread David Holmes
Stuart Ballard wrote: My requirement is for a map which holds references to two other maps, front and back. The keySet() of my map is the union of front.keySet() and back.keySet(). The value corresponding to a given key is 'front.containsKey(key) ? front.get(key) : back.get(key)'. Both front

Re: [really patch] Re: HashMap putAll/putAllInternal bug

2003-10-12 Thread Stephen Crawley
David Holmes [EMAIL PROTECTED] wrote: If you can't provide a valid implementation for any concrete method that you are supposed to implement, then it seems quite unreasonable of you to expect any inherited methods to work for you. I think it quite reasonable for a method like putAll to expect