[cp-patches] FYI: Fix allocator problem in GdkFontPeer.c

2006-04-03 Thread Roman Kennke
I fixed a problem with the allocator in the new Gnome that showed up in GdkFontPeer.c (causing crash when running GdkGraphics2D in the new Gnome). We used to g_free() an object that has been created by Pango. This object is actually a PangoItem and should therefore be freed by pango_item_free()

Re: [cp-patches] Patch: FYI: speed up split-for-gcj

2006-04-03 Thread Andrew Haley
Mark Wielaard writes: Hi Tom, On Sat, 2006-04-01 at 12:11 -0700, Tom Tromey wrote: Mark == Mark Wielaard [EMAIL PROTECTED] writes: Mark Unfortunately it seems to trigger some gcj bug with the svn trunk Mark development version on builder (see below). I checked against 4.0.3

[cp-patches] FYI: jarsigner cleanup

2006-04-03 Thread Raif S. Naffah
hello there, the attached patch --already committed-- mainly cleans up the jarsigner code. 2006-04-03 Raif S. Naffah [EMAIL PROTECTED] * tools/gnu/classpath/tools/jarsigner/Main.java: Removed unused imports. (provider): Made it protected. (providerInstalled): New

Re: [cp-patches] Patch: FYI: speed up split-for-gcj

2006-04-03 Thread Mark Wielaard
Hi Andrew, On Mon, 2006-04-03 at 11:08 +0100, Andrew Haley wrote: After generating the list files in classpath/lib you can trigger the compile error by: This one is unrepro for me on x86_64. This is 32-bit x86, right? Yes it is. See also the builder.classpath.org classpath-testresults:

Re: [cp-patches] RFC: Path canonicalizer

2006-04-03 Thread Mark Wielaard
Hi Gary, On Wed, 2006-03-29 at 09:54 +0100, Gary Benson wrote: This patch makes Classpath do the right thing on GNU/Posix systems. Cool. But where is the ChangeLog entry!? It does look good to me. But in theory the usage of PATH_MAX might be a problem. According to the glibc manual it might

Re: [cp-patches] FYI: RMIC compiler and IOR parser are now GPL.

2006-04-03 Thread Thomas Fitzsimmons
On Sun, 2006-04-02 at 19:01 +0200, Audrius Meskauskas wrote: I change the license of these tools into GPL. I leave the linking exception for GIOP and RMI naming services and for the RMI activator, because at the moment it is not clear for me if they cannot be treated as the remote,

[cp-patches] FYI: Improve clipboard image support

2006-04-03 Thread Sven de Marothy
2006-04-03 Sven de Marothy [EMAIL PROTECTED] * gnu/java/awt/peer/gtk/GtkClipboard.java: Add support for non-GtkImage images. -- Sven de Marothy [EMAIL PROTECTED] Index: gnu/java/awt/peer/gtk/GtkClipboard.java ===

[cp-patches] Patch: FYI: (most of) javax.security.auth.kerberos

2006-04-03 Thread Tom Tromey
I'm checking this in. This implements mosts of javax.security.auth.kerberos. There are a few missing bits and oddities. I marked these either with FIXME comments or with NotImplementedException as appropriate. To be fully complete this needs a connection to a real kerberos implementation in at

Re: [cp-patches] FYI: Generating jarsigner script

2006-04-03 Thread Tom Tromey
Mark == Mark Wielaard [EMAIL PROTECTED] writes: Mark Attached is the simplest way I saw to fix this for now. It Mark does mean that the resulting script is called jarsigner.sh, not Mark jarsigner. Two ways to fix this: 1. Name the file 'jarsigner' in the source tree. 2. Have a 'jarsigner'

Re: [cp-patches] FYI: RMIC compiler and IOR parser are now GPL.

2006-04-03 Thread Tom Tromey
Tom == Thomas Fitzsimmons [EMAIL PROTECTED] writes: Tom Build tools like ant use tools.jar to avoid exec'ing tool binaries. My Tom concern is that that would no longer be allowed if the tools become GPL. Tom In any case, if the tools remained GPL+exception then I would be sure Tom that such a

Re: [cp-patches] FYI: RMIC compiler and IOR parser are now GPL.

2006-04-03 Thread Dalibor Topic
On Mon, 2006-04-03 at 13:30 -0600, Tom Tromey wrote: Tom == Thomas Fitzsimmons [EMAIL PROTECTED] writes: Tom Build tools like ant use tools.jar to avoid exec'ing tool binaries. My Tom concern is that that would no longer be allowed if the tools become GPL. Tom In any case, if the tools

[cp-patches] Patch: FYI: PR 26971

2006-04-03 Thread Tom Tromey
I'm checking this in. This fixes PR 26971. The mauve test is already in. Tom 2006-04-03 Tom Tromey [EMAIL PROTECTED] PR classpath/26971: * javax/naming/directory/BasicAttribute.java: Added missing @since. (BasicAttributeEnumeration.where): Initialize to 0.

[cp-patches] Patch: ZipFile fix

2006-04-03 Thread Lillian Angel
This patch fixes bug #24596 and #26930. For ZipFile.getInputStream(), Sun returns an InflatorInputStream (as do we) and returns the size of the ZipEntry for that instance's available() function. Despite what the API says for InflatorInputStream.available(), Sun has overridden this function for

[cp-patches] Patch: FYI: JPEGImageWriteParam

2006-04-03 Thread Thomas Fitzsimmons
Hi, I committed this patch to implement JPEGImageWriteParam. See mauve-patches for the corresponding Mauve test. Tom 2006-04-03 Thomas Fitzsimmons [EMAIL PROTECTED] * javax/imageio/plugins/jpeg/JPEGImageWriteParam.java: New file. *

Re: [cp-patches] Patch: ZipFile fix

2006-04-03 Thread Tom Tromey
Lillian == Lillian Angel [EMAIL PROTECTED] writes: I like the idea of this patch, but I am not sure it is correct. Lillian - return new InflaterInputStream(inp, new Inflater(true)); Lillian +final int sz = (int) entry.getSize(); Lillian +return new InflaterInputStream(inp,