[cp-patches] Patch: Window focus lost/gained fix

2006-05-26 Thread Lillian Angel
This patch fixes the focus lost/gained notification for all windows. 2006-05-25 Lillian Angel [EMAIL PROTECTED] PR 26174 * java/awt/Window.java (Window): Moved code to helper. (addWindowFocusListener): New function. Handles focus listener code. Added

[cp-patches] FYI: fix make distcheck

2006-05-26 Thread Thomas Fitzsimmons
Hi, I committed this patch to fix make distcheck. It removes the Makefile.am reference to gtkcairopeer.h. Tom 2006-05-26 Thomas Fitzsimmons [EMAIL PROTECTED] * native/jni/gtk-peer/Makefile.am (libgtkpeer_la_SOURCES): Remove gtkcairopeer.h. Index:

[cp-patches] FYI: rename libjawtgnu.so to libjawt.so

2006-05-26 Thread Thomas Fitzsimmons
Hi, applications that use the AWT Native Interface refer to libjawt.so. For binary compatibility with other AWT Native Interface implementations our .so must be named the same. Note to packagers: libjawt.so should be installed in VM-specific directory rather than directly in /usr/lib.

Re: [cp-patches] FYI: rename libjawtgnu.so to libjawt.so

2006-05-26 Thread Michael Koch
On Fri, May 26, 2006 at 01:50:10PM -0400, Thomas Fitzsimmons wrote: Hi, applications that use the AWT Native Interface refer to libjawt.so. For binary compatibility with other AWT Native Interface implementations our .so must be named the same. Note to packagers: libjawt.so should be

[cp-patches] [patch] qtpeers, silence some warnings with gcc-4.2

2006-05-26 Thread Andreas Tobler
Hello all, the below patch silences this warnings: classpath/native/jni/qt-peer/eventmethods.h:111: warning: deprecated conversion from string constant to 'char*'' There are quite a lot of them. And they pop up in gcc-head. Ok to commit? Andreas 2006-05-26 Andreas Tobler [EMAIL

Re: [cp-patches] [patch] qtpeers, silence some warnings with gcc-4.2

2006-05-26 Thread Tom Tromey
Andreas == Andreas Tobler [EMAIL PROTECTED] writes: Andreas classpath/native/jni/qt-peer/eventmethods.h:111: warning: deprecated Andreas conversion from string constant to 'char*'' Andreas There are quite a lot of them. And they pop up in gcc-head. Andreas Ok to commit? I think it is ok.

Re: [cp-patches] [patch] qtpeers, silence some warnings with gcc-4.2

2006-05-26 Thread Sven de Marothy
On Fri, 2006-05-26 at 15:23 -0600, Tom Tromey wrote: Andreas == Andreas Tobler [EMAIL PROTECTED] writes: Andreas classpath/native/jni/qt-peer/eventmethods.h:111: warning: deprecated Andreas conversion from string constant to 'char*'' Andreas There are quite a lot of them. And they pop up

[cp-patches] RFA: tools.zip compatibility classes

2006-05-26 Thread Thomas Fitzsimmons
Hi, These wrapper classes come from java-gcj-compat. Some applications, ant in particular, use these classes to invoke compilers in-process. I've also included java.c from java-gcj-compat which I think may be useful to VMs that bundle GNU Classpath. I plan to merge its functionality

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

2006-05-26 Thread Tom Tromey
I'm checking this in. This fixes PR 27685, a bug in BigInteger.modPow. I've put a test case in Mauve. Tom 2006-05-26 Tom Tromey [EMAIL PROTECTED] PR classpath/27685: * java/math/BigInteger.java (modPow): Correctly handle negative exponent. Index: