Re: [cp-patches] [generics] RFC: instrumentation for defineClasses

2005-12-14 Thread Nicolas Geoffray
I'm committing this in since I had no objection. 2005-12-14 Nicolas Geoffray [EMAIL PROTECTED] * java/lang/ClassLoader (defineClass(String,byte[],int,int,ProtectionDomain)): Calls VMClassLoader.defineClassWithTransformers instead of VMClassLoader.defineClass. *

Re: [cp-patches] Re: [commit-cp] classpath ./ChangeLog lib/Makefile.am m4/acincl...

2005-12-14 Thread Dalibor Topic
Mark Wielaard wrote: Hi Dalibor, On Tue, 2005-12-13 at 01:20 +, Dalibor Topic wrote: Log message: Build breakage fix for jikes 1.19 2005-12-12 Dalibor Topic [EMAIL PROTECTED] Fixes bug #25353 * m4/acinclude.m4: Added JIKESWARNINGS

[cp-patches] Patch: FYI: fix PR 25389

2005-12-14 Thread Tom Tromey
I'm checking this in to Classpath and libgcj 4.1 and trunk. This fixes PR 25389, which was discovered by OO.o. We were throwing an NPE when we saw a non-hierarchical URI in the File constructor. Instead we should be throwing an IllegalArgumentException. I've updated the Mauve test to reflect

[cp-patches] FYI: Container fix

2005-12-14 Thread Roman Kennke
Hi, I'm checking this in on behalf of Ingo Prötel. Basically this makes Container.visitChild more safe by protecting the Graphics context from beeing irrevocably changed by the child component. This is similar to what we do in Swing's painting mechanism and it actually does matter a little even

Re: [cp-patches] Re: RFC: Patch for duplicate entries in serialPersistentFields

2005-12-14 Thread Guilhem Lavaux
Hi, I have just commited the attached patch which is just a slight modification of what I have already sent with some documentation. Mark, actually I don't see what benefit we could get of moving some Array.sort copy to getSerialPersistentFields. So I have not done it for the moment.

[cp-patches] FYI: Fix for BIG_ENDIAN detection in fdlibm.h

2005-12-14 Thread Guilhem Lavaux
Hi, Here is a small patch to fix a bug detected by Riccardo Mottola. It appears that big endian must be detected by also checking __powerpc__ and __BIG_ENDIAN__ in ieeefp.h Cheers, Guilhem. ChangeLog: 2005-12-14 Riccardo Mottola [EMAIL PROTECTED] * native/fdlibm/ieeefp.h: Fixed

[cp-patches] RFC: fdlibm namespace protection

2005-12-14 Thread Guilhem Lavaux
Hi, Here is a patch to fix some problem we met on darwin5 where apparently the same library is used for math operations. The linker was failing because of duplicated symbols between fdlibm and libm. So this patch adds a generated file called namespace.h which renames all the necessary

[cp-patches] FYI: GdkGraphics optimization

2005-12-14 Thread Roman Kennke
Hi all, I checked in a little caching for the GdkGraphics.create() method. Let me first explain the problem that we have with this method and then the approach how to fix this: In Swing painting we do a Graphics.create() for each component that is painted, this is to protect the rest of the