classpath-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[cp-patches] FYI: Last build fixes and NEWS entries


From: Mark Wielaard
Subject: [cp-patches] FYI: Last build fixes and NEWS entries
Date: Sun, 01 May 2005 16:00:49 +0200

Hi,

These are the last build fixes, NEWS entries and the setting of the
final release number.

2005-05-01  Mark Wielaard  <address@hidden>

       * NEWS: Add 0.15 release date and new features.
       * configure.ac: Set version to 0.15.

       * native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkWindowPeer.c:
       (window_delete_cb): Don't use C++ style comments.

       * doc/api/Makefile.am (clean): Renamed.
       (clean-local): Renamed from clean.

CVS now tagged as classpath-0_15-release.

Cheers,

Mark
Index: ChangeLog
===================================================================
RCS file: /cvsroot/classpath/classpath/ChangeLog,v
retrieving revision 1.3560
diff -u -r1.3560 ChangeLog
--- ChangeLog   30 Apr 2005 13:53:29 -0000      1.3560
+++ ChangeLog   1 May 2005 13:51:02 -0000
@@ -1,3 +1,14 @@
+2005-05-01  Mark Wielaard  <address@hidden>
+
+       * NEWS: Add 0.15 release date and new features.
+       * configure.ac: Set version to 0.15.
+
+       * native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkWindowPeer.c:
+       (window_delete_cb): Don't use C++ style comments.
+
+       * doc/api/Makefile.am (clean): Renamed.
+       (clean-local): Renamed from clean.
+
 2005-04-30  Mark Wielaard  <address@hidden>
 
        * java/io/ObjectInputStream.java
@@ -1749,7 +1760,7 @@
 2005-03-18  Robert Schuster  <address@hidden>
 
        * native/jni/java-nio/gnu_java_nio_VMSelector.c: Implemented
-    Java_gnu_java_nio_VMSelector_select.
+       Java_gnu_java_nio_VMSelector_select.
        * configure.ac: Added check for sys/select.h and strerro_r().
 
 2005-03-17  Mark Wielaard  <address@hidden>
Index: NEWS
===================================================================
RCS file: /cvsroot/classpath/classpath/NEWS,v
retrieving revision 1.76
diff -u -r1.76 NEWS
--- NEWS        30 Apr 2005 13:53:29 -0000      1.76
+++ NEWS        1 May 2005 13:51:02 -0000
@@ -28,10 +28,31 @@
 enabling or disabling the IconvProvider by default results in the
 highest speedups.
 
+* Free swing metal and pluggable look and feels have been improved.
+The GNU Classpath free swing example can now be run with different
+"skins" by setting the system property swing.defaultlaf to the GNU,
+Basic or Metal look and feel.
+
+* Some of the org.omg.CORBA classes and packages have now been
+implemented. The Savannah bug tracker contains additional tasks for
+which we are seeking help.
+
+* Fixed compatibility problems in the java.beans which affected
+Eclipse's Visual Editor Project.
+
+* New completely lock free (Inheritable)ThreadLocal implementation.
+
+* javax.swing.text.rtf framework added which can handle simple (plain)
+text tokens.
+
+* Support for parsing html files into Level 2 Document Object Model
+(org.w3c.dom.html2 and javax.swing.text.html.parser). And a start of
+javax.swing.text.html framework added.
+
 Runtime interface changes:
 
-* jni.h changed to better support more VMs; see VM integration guide
-  for details.
+* jni.h changed to better support compiling runtimes implementing jni;
+  see VM integration guide for details.
 * New --enable-default-toolkit option to configure can be used to set
   the fully qualified class name of the default AWT toolkit to use.
   If not given, the old default of gnu.java.awt.peerk.gtk.GtkToolkit
@@ -46,12 +67,22 @@
 * The helper methods currentLoader() and allocateObject() for
   java.io.ObjectInputStream have been moved to a VMObjectInputStream class.
   Reference implementations are provided.
+* java.net.InetAddress now uses VMInetAddress for runtime/platform
+  specific methods getLocalHostname(), getHostByAddr() and
+  getHostByName(). java.net.NetworkInterface now uses VMNetworkInterface
+  for runtime/platform specific getInterfaces() support. Default
+  (Posix/GNU JNI) implementations are provided.
+* VMClass has a new method getModifiers(Class, boolean) which can be
+  used to get the real modifiers for an inner class or the ones
+  specified by the InnerClasses attribute.
+* All (possible) runtime specific methods of Object and Double are now
+  in VMObject and VMDouble. Where possible generic reference
+  implementations are provided.
+* The reference implementation of VMClassLoader now handles zip files
+  on the boot loader class path in getResources().
 
 Other changes:
 
-* Fixed compatibility problems in the Java Beans API which affected Eclipse's
-  Visual Editor Project.
-
 New in release 0.14 (Feb 25, 2005)
 
 * Character encoders and decoders have been added for:
Index: configure.ac
===================================================================
RCS file: /cvsroot/classpath/classpath/configure.ac,v
retrieving revision 1.83
diff -u -r1.83 configure.ac
--- configure.ac        26 Apr 2005 00:20:12 -0000      1.83
+++ configure.ac        1 May 2005 13:51:02 -0000
@@ -6,7 +6,7 @@
 dnl define([AC_CACHE_LOAD], )dnl
 dnl define([AC_CACHE_SAVE], )dnl
 
-AC_INIT([GNU Classpath],[0.14+cvs],address@hidden,[classpath])
+AC_INIT([GNU Classpath],[0.15],address@hidden,[classpath])
 AC_CONFIG_SRCDIR(java/lang/System.java)
 
 AC_CANONICAL_TARGET
Index: doc/api/Makefile.am
===================================================================
RCS file: /cvsroot/classpath/classpath/doc/api/Makefile.am,v
retrieving revision 1.16
diff -u -r1.16 Makefile.am
--- doc/api/Makefile.am 2 Mar 2005 08:37:34 -0000       1.16
+++ doc/api/Makefile.am 1 May 2005 13:51:02 -0000
@@ -29,7 +29,7 @@
 
 html: create_html
 
-clean:
+clean-local:
        -rm -rf html create_html gjdoc_rawcomment.cache
 
 create_html:
Index: native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkWindowPeer.c
===================================================================
RCS file: 
/cvsroot/classpath/classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkWindowPeer.c,v
retrieving revision 1.46
diff -u -r1.46 gnu_java_awt_peer_gtk_GtkWindowPeer.c
--- native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkWindowPeer.c   30 Apr 2005 
00:58:53 -0000      1.46
+++ native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkWindowPeer.c   1 May 2005 
13:51:04 -0000
@@ -477,10 +477,10 @@
                              (jobject) NULL, (jint) 0);
   gdk_threads_enter ();
 
-  // Prevents that the Window dissappears ("destroy"
-  // not being signalled). This is necessary because it
-  // should be up to a WindowListener implementation
-  // how the AWT Frame responds to close requests.
+  /* Prevents that the Window dissappears ("destroy"
+     not being signalled). This is necessary because it
+     should be up to a WindowListener implementation
+     how the AWT Frame responds to close requests. */
   return TRUE;
 }
 

Attachment: signature.asc
Description: This is a digitally signed message part


reply via email to

[Prev in Thread] Current Thread [Next in Thread]