[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 code to handle focus lost/gained
from the window.

Index: java/awt/Window.java
===
RCS file: /cvsroot/classpath/classpath/java/awt/Window.java,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- java/awt/Window.java	16 May 2006 16:39:00 -	1.70
+++ java/awt/Window.java	26 May 2006 15:36:04 -	1.71
@@ -42,6 +42,7 @@
 
 import java.awt.event.ComponentEvent;
 import java.awt.event.FocusEvent;
+import java.awt.event.FocusListener;
 import java.awt.event.WindowAdapter;
 import java.awt.event.WindowEvent;
 import java.awt.event.WindowFocusListener;
@@ -132,33 +133,7 @@
 // cycle roots.
 focusCycleRoot = true;
 setLayout(new BorderLayout());
-
-addWindowFocusListener (new WindowAdapter ()
-  {
-public void windowGainedFocus (WindowEvent event)
-{
-  if (windowFocusOwner != null)
-{
-  // FIXME: move this section and the other similar
-  // sections in Component into a separate method.
-  EventQueue eq = Toolkit.getDefaultToolkit ().getSystemEventQueue ();
-  synchronized (eq)
-{
-  KeyboardFocusManager manager = KeyboardFocusManager.getCurrentKeyboardFocusManager ();
-  Component currentFocusOwner = manager.getGlobalPermanentFocusOwner ();
-  if (currentFocusOwner != null)
-{
-  eq.postEvent (new FocusEvent (currentFocusOwner, FocusEvent.FOCUS_LOST,
-false, windowFocusOwner));
-  eq.postEvent (new FocusEvent (windowFocusOwner, FocusEvent.FOCUS_GAINED,
-false, currentFocusOwner));
-}
-  else
-eq.postEvent (new FocusEvent (windowFocusOwner, FocusEvent.FOCUS_GAINED, false));
-}
-}
-}
-  });
+addWindowFocusListener();
 
 GraphicsEnvironment g = GraphicsEnvironment.getLocalGraphicsEnvironment();
 graphicsConfiguration = g.getDefaultScreenDevice().getDefaultConfiguration();
@@ -169,7 +144,68 @@
 this();
 graphicsConfiguration = gc;
   }
+  
+  private void addWindowFocusListener()
+  {
+addWindowFocusListener(new WindowAdapter()
+{
+  public void windowGainedFocus(WindowEvent event)
+  {
+EventQueue eq = Toolkit.getDefaultToolkit().getSystemEventQueue();
+if (windowFocusOwner != null)
+  {
+synchronized (eq)
+  {
+KeyboardFocusManager manager = KeyboardFocusManager.getCurrentKeyboardFocusManager();
+Component currentFocusOwner = manager.getGlobalPermanentFocusOwner();
+if (currentFocusOwner != null)
+  {
+eq.postEvent(new FocusEvent(currentFocusOwner,
+FocusEvent.FOCUS_LOST, false,
+windowFocusOwner));
+eq.postEvent(new FocusEvent(windowFocusOwner,
+FocusEvent.FOCUS_GAINED, false,
+currentFocusOwner));
+  }
+else
+  eq.postEvent(new FocusEvent(windowFocusOwner,
+  FocusEvent.FOCUS_GAINED, false));
+  }
+  }
+else
+  eq.postEvent(new FocusEvent(Window.this, FocusEvent.FOCUS_GAINED,
+  false));
+  }
 
+  public void windowLostFocus(WindowEvent event)
+  {
+EventQueue eq = Toolkit.getDefaultToolkit().getSystemEventQueue();
+if (windowFocusOwner != null)
+  {
+synchronized (eq)
+  {
+KeyboardFocusManager manager = KeyboardFocusManager.getCurrentKeyboardFocusManager();
+Component currentFocusOwner = manager.getGlobalPermanentFocusOwner();
+if (currentFocusOwner != null)
+  {
+eq.postEvent(new FocusEvent(currentFocusOwner,
+FocusEvent.FOCUS_GAINED, false,
+windowFocusOwner));
+eq.postEvent(new FocusEvent(windowFocusOwner,
+FocusEvent.FOCUS_LOST, false,
+currentFocusOwner));
+  }
+else
+  

[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: native/jni/gtk-peer/Makefile.am
===
RCS file: /sources/classpath/classpath/native/jni/gtk-peer/Makefile.am,v
retrieving revision 1.37
diff -u -r1.37 Makefile.am
--- native/jni/gtk-peer/Makefile.am	25 May 2006 15:29:36 -	1.37
+++ native/jni/gtk-peer/Makefile.am	26 May 2006 16:12:25 -
@@ -39,7 +39,6 @@
 			gthread-jni.c \
 			gdkfont.h \
 			gthread-jni.h \
-			gtkcairopeer.h \
 			gtk_jawt.c \
 			gtkpeer.h
 


[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.  Proprietary VMs put their 
libjawt.so implementations in VM-specific directories but search 
/usr/lib first.  If GNU Classpath's libjawt.so is installed in /usr/lib 
it will create problems for people using a proprietary VM to run AWT 
Native Interface apps.


I committed the attached patch.

Tom

2006-05-26  Thomas Fitzsimmons  [EMAIL PROTECTED]

* native/jawt/Makefile.am (nativeexeclib_LTLIBRARIES): Rename
libjawtgnu.la libjawt.la.
Index: native/jawt/Makefile.am
===
RCS file: /sources/classpath/classpath/native/jawt/Makefile.am,v
retrieving revision 1.5
diff -u -r1.5 Makefile.am
--- native/jawt/Makefile.am	25 May 2006 15:29:36 -	1.5
+++ native/jawt/Makefile.am	26 May 2006 16:12:00 -
@@ -1,11 +1,7 @@
-nativeexeclib_LTLIBRARIES = libjawtgnu.la
+nativeexeclib_LTLIBRARIES = libjawt.la
 
-libjawtgnu_la_SOURCES = jawt.c
-libjawtgnu_la_LIBADD = $(top_builddir)/native/jni/gtk-peer/libgtkpeer.la
-# FIXME: libtool doesn't allow overriding SONAME, but we need to set
-# it to libjawt.so for binary compatibility.
-#
-# libjawtgnu_la_LDFLAGS = -Wl,-soname -Wl,libjawt.so
+libjawt_la_SOURCES = jawt.c
+libjawt_la_LIBADD = $(top_builddir)/native/jni/gtk-peer/libgtkpeer.la
 
 AM_LDFLAGS = @CLASSPATH_MODULE@ @GTK_LIBS@ @PANGOFT2_LIBS@ @X_LIBS@ -lXtst
 AM_CPPFLAGS = @CLASSPATH_INCLUDES@


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 installed in VM-specific 
 directory rather than directly in /usr/lib.  Proprietary VMs put their 
 libjawt.so implementations in VM-specific directories but search 
 /usr/lib first.  If GNU Classpath's libjawt.so is installed in /usr/lib 
 it will create problems for people using a proprietary VM to run AWT 
 Native Interface apps.

This should also be mentioned in the NEWS file.


Cheers,
Michael
-- 
Escape the Java Trap with GNU Classpath!
http://www.gnu.org/philosophy/java-trap.html

Join the community at http://planet.classpath.org/



[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 PROTECTED]

* native/jni/qt-peer/eventmethods.h (callVoidMethod): Silence warning.
(callMouseMethod): Likewise.
Index: native/jni/qt-peer/eventmethods.h
===
RCS file: /cvsroot/classpath/classpath/native/jni/qt-peer/eventmethods.h,v
retrieving revision 1.3
diff -u -r1.3 eventmethods.h
--- native/jni/qt-peer/eventmethods.h   23 Aug 2005 02:13:48 -  1.3
+++ native/jni/qt-peer/eventmethods.h   26 May 2006 19:10:00 -
@@ -1,5 +1,5 @@
 /* eventmethods.cpp --
-   Copyright (C)  2005  Free Software Foundation, Inc.
+   Copyright (C)  2005, 2006  Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -62,7 +62,7 @@
 env-DeleteGlobalRef(componentCls);
   }
 
-  void callVoidMethod(char *methodName)
+  void callVoidMethod(const char *methodName)
   {
 JNIEnv *env;
 vm-GetEnv((void **)env, JNI_VERSION_1_1);
@@ -72,7 +72,7 @@
 env-CallVoidMethod( target, fireEventID );
   }
 
-  void callMouseMethod(char *methodName, 
+  void callMouseMethod(const char *methodName,
   int modifiers, int x, int y, int clickCount)
   {
 JNIEnv *env;


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.  However, let's wait a couple days in case Sven
wants to respond; this is all his code.

Tom



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 in gcc-head.
 
 Andreas Ok to commit?
 
 I think it is ok.  However, let's wait a couple days in case Sven
 wants to respond; this is all his code.

Looks fine by me, thanks.

/Sven




[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 directly into gij, and other VMs should do the same, but I 
thought it would be a good reference for how the java command is 
supposed to work.  Like the other wrappers, I haven't added build logic 
for java.c yet.


To test this, untar tools-compat.tar.gz in classpath/ and apply 
tools-compat.patch.  I'm posting the patch in this form to make sure it 
is acceptable before CVS add'ing all the directories.


OK to commit?

Tom

2006-05-26  Thomas Fitzsimmons  [EMAIL PROTECTED]

* tools/Makefile.am (TOOLS_JAVA_FILES): Add
com/sun/tools/javac/Main.java and sun/rmi/rmic/Main.java.
* tools/sun/rmi/rmic/Main.java: New file.
* tools/com/sun/tools/javac/Main.java: New file.
* tools/java.c.in: New file.
Index: tools/Makefile.am
===
RCS file: /sources/classpath/classpath/tools/Makefile.am,v
retrieving revision 1.15
diff -u -r1.15 Makefile.am
--- tools/Makefile.am	14 May 2006 08:20:19 -	1.15
+++ tools/Makefile.am	26 May 2006 22:54:13 -
@@ -24,9 +24,13 @@
 bin_SCRIPTS = appletviewer jarsigner keytool
 EXTRA_DIST = appletviewer.in appletviewer.c jarsigner.in keytool.in
 
-# All our example java source files
-TOOLS_JAVA_FILES = $(srcdir)/gnu/classpath/tools/*.java $(srcdir)/gnu/classpath/tools/*/*.java $(srcdir)/gnu/classpath/tools/*/*/*.java
-
+# All our tool source files
+TOOLS_JAVA_FILES = \
+	$(srcdir)/gnu/classpath/tools/*.java \
+	$(srcdir)/gnu/classpath/tools/*/*.java \
+	$(srcdir)/gnu/classpath/tools/*/*/*.java \
+	$(srcdir)/com/sun/tools/javac/*.java \
+	$(srcdir)/sun/rmi/rmic/*.java
 
 # The zip files with classes we want to produce.
 TOOLS_ZIP = tools.zip


tools-compat.tar.gz
Description: GNU Zip compressed data


[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: java/math/BigInteger.java
===
RCS file: /cvsroot/classpath/classpath/java/math/BigInteger.java,v
retrieving revision 1.27
diff -u -r1.27 BigInteger.java
--- java/math/BigInteger.java   28 Feb 2006 18:04:37 -  1.27
+++ java/math/BigInteger.java   27 May 2006 02:08:21 -
@@ -1168,7 +1168,7 @@
   throw new ArithmeticException(non-positive modulo);
 
 if (exponent.isNegative())
-  return modInverse(m);
+  return modInverse(m).modPow(exponent.negate(), m);
 if (exponent.isOne())
   return mod(m);
 



[cp-testresults] FAIL: gcc build on Fri May 26 06:46:41 UTC 2006

2006-05-26 Thread cpdev
gcc -c   -g -DIN_GCC   -W -Wall -Wwrite-strings -Wstrict-prototypes 
-Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute 
-fno-common   -DHAVE_CONFIG_H -I. -I. -I../../trunk/gcc -I../../trunk/gcc/. 
-I../../trunk/gcc/../include -I../../trunk/gcc/../libcpp/include  
-I../../trunk/gcc/../libdecnumber -I../libdecnumber -g   -I. -I. 
-I../../trunk/gcc -I../../trunk/gcc/. -I../../trunk/gcc/../include 
-I../../trunk/gcc/../libcpp/include  -I../../trunk/gcc/../libdecnumber 
-I../libdecnumber \
../../trunk/gcc/config/host-linux.c
gcc -c   -g -DIN_GCC   -W -Wall -Wwrite-strings -Wstrict-prototypes 
-Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute 
-fno-common   -DHAVE_CONFIG_H -I. -I. -I../../trunk/gcc -I../../trunk/gcc/. 
-I../../trunk/gcc/../include -I../../trunk/gcc/../libcpp/include  
-I../../trunk/gcc/../libdecnumber -I../libdecnumber -g   
../../trunk/gcc/tree-inline.c -o tree-inline.o
gcc -c   -g -DIN_GCC   -W -Wall -Wwrite-strings -Wstrict-prototypes 
-Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute 
-fno-common   -DHAVE_CONFIG_H -I. -I. -I../../trunk/gcc -I../../trunk/gcc/. 
-I../../trunk/gcc/../include -I../../trunk/gcc/../libcpp/include  
-I../../trunk/gcc/../libdecnumber -I../libdecnumber -g   
../../trunk/gcc/cgraph.c -o cgraph.o
gcc -c   -g -DIN_GCC   -W -Wall -Wwrite-strings -Wstrict-prototypes 
-Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute 
-fno-common   -DHAVE_CONFIG_H -I. -I. -I../../trunk/gcc -I../../trunk/gcc/. 
-I../../trunk/gcc/../include -I../../trunk/gcc/../libcpp/include  
-I../../trunk/gcc/../libdecnumber -I../libdecnumber -g   
../../trunk/gcc/cgraphunit.c -o cgraphunit.o
gcc -c   -g -DIN_GCC   -W -Wall -Wwrite-strings -Wstrict-prototypes 
-Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute 
-fno-common   -DHAVE_CONFIG_H -I. -I. -I../../trunk/gcc -I../../trunk/gcc/. 
-I../../trunk/gcc/../include -I../../trunk/gcc/../libcpp/include  
-I../../trunk/gcc/../libdecnumber -I../libdecnumber -g   
../../trunk/gcc/tree-nomudflap.c -o tree-nomudflap.o
gcc -c   -g -DIN_GCC   -W -Wall -Wwrite-strings -Wstrict-prototypes 
-Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute 
-fno-common   -DHAVE_CONFIG_H -I. -I. -I../../trunk/gcc -I../../trunk/gcc/. 
-I../../trunk/gcc/../include -I../../trunk/gcc/../libcpp/include  
-I../../trunk/gcc/../libdecnumber -I../libdecnumber -g   ../../trunk/gcc/ipa.c 
-o ipa.o
gcc -c   -g -DIN_GCC   -W -Wall -Wwrite-strings -Wstrict-prototypes 
-Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute 
-fno-common   -DHAVE_CONFIG_H -I. -I. -I../../trunk/gcc -I../../trunk/gcc/. 
-I../../trunk/gcc/../include -I../../trunk/gcc/../libcpp/include  
-I../../trunk/gcc/../libdecnumber -I../libdecnumber -g   
../../trunk/gcc/ipa-inline.c -o ipa-inline.o
gcc -c   -g -DIN_GCC   -W -Wall -Wwrite-strings -Wstrict-prototypes 
-Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute 
-fno-common   -DHAVE_CONFIG_H -I. -I. -I../../trunk/gcc -I../../trunk/gcc/. 
-I../../trunk/gcc/../include -I../../trunk/gcc/../libcpp/include  
-I../../trunk/gcc/../libdecnumber -I../libdecnumber -g   
../../trunk/gcc/ipa-utils.c -o ipa-utils.o
gcc -c   -g -DIN_GCC   -W -Wall -Wwrite-strings -Wstrict-prototypes 
-Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute 
-fno-common   -DHAVE_CONFIG_H -I. -I. -I../../trunk/gcc -I../../trunk/gcc/. 
-I../../trunk/gcc/../include -I../../trunk/gcc/../libcpp/include  
-I../../trunk/gcc/../libdecnumber -I../libdecnumber -g   
../../trunk/gcc/ipa-reference.c -o ipa-reference.o
gcc -c   -g -DIN_GCC   -W -Wall -Wwrite-strings -Wstrict-prototypes 
-Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute 
-fno-common   -DHAVE_CONFIG_H -I. -I. -I../../trunk/gcc -I../../trunk/gcc/. 
-I../../trunk/gcc/../include -I../../trunk/gcc/../libcpp/include  
-I../../trunk/gcc/../libdecnumber -I../libdecnumber -g   
../../trunk/gcc/ipa-pure-const.c -o ipa-pure-const.o
gcc -c   -g -DIN_GCC   -W -Wall -Wwrite-strings -Wstrict-prototypes 
-Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute 
-fno-common   -DHAVE_CONFIG_H -I. -I. -I../../trunk/gcc -I../../trunk/gcc/. 
-I../../trunk/gcc/../include -I../../trunk/gcc/../libcpp/include  
-I../../trunk/gcc/../libdecnumber -I../libdecnumber -g   
../../trunk/gcc/ipa-type-escape.c -o ipa-type-escape.o
gcc -c   -g -DIN_GCC   -W -Wall -Wwrite-strings -Wstrict-prototypes 
-Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute 
-fno-common   -DHAVE_CONFIG_H -I. -I. -I../../trunk/gcc -I../../trunk/gcc/. 
-I../../trunk/gcc/../include -I../../trunk/gcc/../libcpp/include  
-I../../trunk/gcc/../libdecnumber -I../libdecnumber -g   
../../trunk/gcc/ipa-prop.c -o ipa-prop.o
gcc -c   -g -DIN_GCC   -W -Wall -Wwrite-strings -Wstrict-prototypes 
-Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute 
-fno-common   

[cp-testresults] FAIL: regressions for libgcj on Sat May 27 04:53:00 UTC 2006

2006-05-26 Thread cpdev
Baseline from: Thu May 25 04:00:26 UTC 2006

Regressions:
FAIL: Thread_Sleep -O3 output - source compiled test

New fails:

Totals:
PASS: 4799
XPASS: 0
FAIL: 1
XFAIL: 12


___
Classpath-testresults mailing list
Classpath-testresults@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-testresults


Re: GTK 2.8

2006-05-26 Thread Mark Wielaard
Hi,

On Thu, 2006-05-25 at 11:36 -0400, Thomas Fitzsimmons wrote:
 I just committed my patch to make GdkGraphics2D the default Java2D backend.  
 Now 
 GTK-2.8 or higher is required to build the GNU Classpath GTK peers.

Cool. But note that there are still some issues with make distcheck.
unfortunately I killed our autobuilder (builder.classpath.org) trying to
upgrade to the new dependencies (don't ask) so there will not be new
test results for a couple of days. I will be travalling for 2 days and
we need Jim for restoring the image on builder before we can resurrect
the machine. My apologies.

If someone could do some make distchecks and see if everything can be
made to build out of the box again that would be appreciated.

Cheers,

Mark




Re: GTK 2.8

2006-05-26 Thread Thomas Fitzsimmons

Hi,

Mark Wielaard wrote:


If someone could do some make distchecks and see if everything can be
made to build out of the box again that would be appreciated.


I fixed one problem with make distcheck but now the tools are failing to run 
because they can't find a VM.  I'm not sure how to locate a suitable VM binary. 
 A guess-and-check approach seems hacky since make distcheck should be 
totally self-contained and reproducible.  Perhaps we should disable these tests 
until GNU Classpath has a proper bootstrap VM?


Tom




[commit-cp] classpath ./ChangeLog java/awt/Window.java

2006-05-26 Thread Lillian Angel
CVSROOT:/cvsroot/classpath
Module name:classpath
Branch: 
Changes by: Lillian Angel [EMAIL PROTECTED]   06/05/26 15:36:04

Modified files:
.  : ChangeLog 
java/awt   : Window.java 

Log message:
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 code to handle focus lost/gained
from the window.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/classpath/classpath/ChangeLog.diff?tr1=1.7547tr2=1.7548r1=textr2=text
http://cvs.savannah.gnu.org/viewcvs/classpath/classpath/java/awt/Window.java.diff?tr1=1.70tr2=1.71r1=textr2=text




[commit-cp] classpath ./ChangeLog native/jni/gtk-peer/Makef...

2006-05-26 Thread Thomas Fitzsimmons
CVSROOT:/sources/classpath
Module name:classpath
Branch: 
Changes by: Thomas Fitzsimmons [EMAIL PROTECTED]  06/05/26 16:14:03

Modified files:
.  : ChangeLog 
native/jni/gtk-peer: Makefile.am 

Log message:
2006-05-26  Thomas Fitzsimmons  [EMAIL PROTECTED]

* native/jni/gtk-peer/Makefile.am (libgtkpeer_la_SOURCES): Remove
gtkcairopeer.h.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/classpath/classpath/ChangeLog.diff?tr1=1.7548tr2=1.7549r1=textr2=text
http://cvs.savannah.gnu.org/viewcvs/classpath/classpath/native/jni/gtk-peer/Makefile.am.diff?tr1=1.37tr2=1.38r1=textr2=text




[commit-cp] classpath ./ChangeLog native/jawt/Makefile.am

2006-05-26 Thread Thomas Fitzsimmons
CVSROOT:/sources/classpath
Module name:classpath
Branch: 
Changes by: Thomas Fitzsimmons [EMAIL PROTECTED]  06/05/26 17:41:18

Modified files:
.  : ChangeLog 
native/jawt: Makefile.am 

Log message:
2006-05-26  Thomas Fitzsimmons  [EMAIL PROTECTED]

* native/jawt/Makefile.am (nativeexeclib_LTLIBRARIES): Rename
libjawtgnu.la libjawt.la.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/classpath/classpath/ChangeLog.diff?tr1=1.7549tr2=1.7550r1=textr2=text
http://cvs.savannah.gnu.org/viewcvs/classpath/classpath/native/jawt/Makefile.am.diff?tr1=1.5tr2=1.6r1=textr2=text




[commit-cp] classpath ./ChangeLog tools/Makefile.am

2006-05-26 Thread Thomas Fitzsimmons
CVSROOT:/sources/classpath
Module name:classpath
Branch: 
Changes by: Thomas Fitzsimmons [EMAIL PROTECTED]  06/05/27 01:26:30

Modified files:
.  : ChangeLog 
tools  : Makefile.am 

Log message:
2006-05-26  Thomas Fitzsimmons  [EMAIL PROTECTED]

* tools/Makefile.am (installcheck-binSCRIPTS): Do nothing.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/classpath/classpath/ChangeLog.diff?tr1=1.7550tr2=1.7551r1=textr2=text
http://cvs.savannah.gnu.org/viewcvs/classpath/classpath/tools/Makefile.am.diff?tr1=1.15tr2=1.16r1=textr2=text




[commit-cp] classpath native/jni/java-net/Makefile.am ./Cha...

2006-05-26 Thread Tom Tromey
CVSROOT:/cvsroot/classpath
Module name:classpath
Branch: 
Changes by: Tom Tromey [EMAIL PROTECTED]  06/05/27 02:05:44

Modified files:
native/jni/java-net: Makefile.am 
.  : ChangeLog configure.ac 
include: Makefile.am 
java/net   : URLConnection.java 
Added files:
native/jni/java-net: java_net_VMURLConnection.c 
vm/reference/java/net: VMURLConnection.java 
include: java_net_VMURLConnection.h 

Log message:
* configure.ac: Check for magic.h and -lmagic.
* vm/reference/java/net/VMURLConnection.java: New file.
* include/java_net_VMURLConnection.h: New file.
* include/Makefile.am (H_FILES): Add VMURLConnection.h.
($(top_srcdir)/include/java_net_VMURLConnection.h): New target.
* native/jni/java-net/Makefile.am (libjavanet_la_SOURCES):
Mention new file.
(libjavanet_la_LIBADD): Add $(LIBMAGIC).
* native/jni/java-net/java_net_VMURLConnection.c: New file.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/classpath/classpath/native/jni/java-net/java_net_VMURLConnection.c?rev=1.1
http://cvs.savannah.gnu.org/viewcvs/classpath/classpath/native/jni/java-net/Makefile.am.diff?tr1=1.16tr2=1.17r1=textr2=text
http://cvs.savannah.gnu.org/viewcvs/classpath/classpath/vm/reference/java/net/VMURLConnection.java?rev=1.1
http://cvs.savannah.gnu.org/viewcvs/classpath/classpath/ChangeLog.diff?tr1=1.7551tr2=1.7552r1=textr2=text
http://cvs.savannah.gnu.org/viewcvs/classpath/classpath/configure.ac.diff?tr1=1.151tr2=1.152r1=textr2=text
http://cvs.savannah.gnu.org/viewcvs/classpath/classpath/include/java_net_VMURLConnection.h?rev=1.1
http://cvs.savannah.gnu.org/viewcvs/classpath/classpath/include/Makefile.am.diff?tr1=1.57tr2=1.58r1=textr2=text
http://cvs.savannah.gnu.org/viewcvs/classpath/classpath/java/net/URLConnection.java.diff?tr1=1.42tr2=1.43r1=textr2=text