[cp-patches] FYI: small isnan fix

2006-04-02 Thread Dalibor Topic
Hi all, the attached patch fixes an isnan problem that's exposed in Kaffe, where fdlibm is compiled with warnings enabled. We may not be able to include the prototype for isnan if it is a function, since fdlibm defines symbols from math.h. Using the macro is always safe, though. This fixes a

Moving tools (Was: [cp-patches] FYI: Comitting the RMI daemod (RMID))

2006-04-02 Thread Mark Wielaard
Hi, [Per/Julian could you take a look at this and give your opinion on gnu bytecode/gjdoc?] On Wed, 2006-03-29 at 12:20 -0700, Tom Tromey wrote: I think moving stuff to a separate module was probably a mistake, in retrospect. I'd like to propose moving the remaining tools back into

Re: Moving tools (Was: [cp-patches] FYI: Comitting the RMI daemod (RMID))

2006-04-02 Thread Dalibor Topic
On Sun, 2006-04-02 at 16:27 +0200, Mark Wielaard wrote: Any opinions on antlr/jay and/or asm/gnu.bytecode? We should probably also implement a fallback mode (not build all tools) if either dependency isn't available. Antlr seems to be well maintained, and the last published version worked

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

2006-04-02 Thread Mark Wielaard
Hi, On Sun, 2006-04-02 at 12:34 +1100, Raif S. Naffah wrote: 2006-04-02 Raif S. Naffah [EMAIL PROTECTED] * configure.ac: Added tools/jarsigner.sh to AC_CONFIG_FILES. * tools/Makefile.am: Generate jarsigner shell script. * tools/jarsigner.sh.in: New template. *

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

2006-04-02 Thread Audrius Meskauskas
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, dynamically linked libraries. If they could, the license should match

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

2006-04-02 Thread Audrius Meskauskas
Sorry, I have forgotten to attach the patch in the previous message. 2006-04-02 Audrius Meskauskas [EMAIL PROTECTED] tools/gnu/classpath/tools/giop/GRMIC.java, tools/gnu/classpath/tools/giop/IorParser.java, tools/gnu/classpath/tools/giop/grmic/CompilationError.java,

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

2006-04-02 Thread Mark Wielaard
Hi Tom, On Fri, 2006-03-31 at 15:30 -0700, Tom Tromey wrote: Index: ChangeLog from Tom Tromey [EMAIL PROTECTED] * lib/split-for-gcj.sh: Updated for multi-field format. * lib/Makefile.am (CLEANFILES): Added classes.2. * lib/gen-classlist.sh.in (GCJ): Removed. Create

Re: Moving tools (Was: [cp-patches] FYI: Comitting the RMI daemod (RMID))

2006-04-02 Thread Per Bothner
Dalibor Topic wrote: As for bytecode libraries, I'd prefer ASM, again since it seems to be already packaged by Debian, while oddly enough neither Kawa not gnu bytecode seem to be, so I'd go with the more ubiquitous option. Well, Kawa is packaged by Fedora 5 now ... There is no inherent reason

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

2006-04-02 Thread Mark Wielaard
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 and Mark 4.1 and they both seem fine.

[cp-patches] FYI: Added option to use prebuilt glibj.zip

2006-04-02 Thread Dalibor Topic
Hi all, the attached patch adds the possibility to use a prebuilt glibj.zip, rather than rebuilding it. This is handy when you are building Classpath on a platform where the shell scripts using during the build of the class library fall appart due to use of shell constructs like test -ef. Then

[cp-patches] FYI: (yet) another WrappedPlainView fix

2006-04-02 Thread Robert Schuster
Hi, this patch fixes a problem which occured to JTextAreas which wrap at word boundaries after applying my patches from last night. An exception was thrown because the loop in WrappedPlainView.WrappedLine.determineNumLines() increased the loop variable when a utility function returned the same

Re: [cp-patches] FYI: Added option to use prebuilt glibj.zip

2006-04-02 Thread Robert Schuster
Dalibor, could you put this explanation in INSTALL or README? cya Robert Dalibor Topic wrote: Hi all, the attached patch adds the possibility to use a prebuilt glibj.zip, rather than rebuilding it. This is handy when you are building Classpath on a platform where the shell scripts using

[cp-patches] [generics] FYI: Add enum serialization support

2006-04-02 Thread Andrew John Hughes
I'm committing the attached patch which adds enum serialization support to ObjectOutputStream. Changelog: 2006-04-02 Andrew John Hughes [EMAIL PROTECTED] * java/io/ObjectOutputStream.java: (writeObject(Object)): Added enum support.

[cp-patches] [generics] FYI: Fixed signatures in java.util.Collections reported by JAPI.

2006-04-02 Thread Andrew John Hughes
I'm committing the attached patch which fixes the types of some signatures in java.util.Collections reported by JAPI. Changelog: 2006-04-02 Andrew John Hughes [EMAIL PROTECTED] * java/util/Collections.java: (binarySearch(List, T)): Fixed signature.