This is the mail archive of the java@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Importing new GNU Classpath release


Andreas Tobler wrote:


I'll try by tomorrow and report.

Okey,


=== libjava Summary ===

# of expected passes            52906
# of unexpected failures        749
# of unexpected successes       2
# of expected failures          799
# of untested testcases         11


As of last night's cvs cp. with mauve and jacks updated. mauve-libgcj has only this:

!javax.rmi.CORBA.
!org.omg.
!java.io.InputStreamReader.getEncoding

The attached patch is just for completeness, it is diffed from the previous cp in libgcj.

Tom, could you confirm the bits from the diff ?

Andreas
--- /Volumes/export/gcc/classpath/Makefile.am	2005-09-08 21:14:49.000000000 +0200
+++ classpath/Makefile.am	2005-11-14 09:49:02.000000000 +0100
@@ -4,7 +4,8 @@
 SUBDIRS = lib doc external include native resource scripts $(EXAMPLESDIR)
 DIST_SUBDIRS = lib doc external include native resource scripts examples
 
-ACLOCAL_AMFLAGS = -I m4
+## GCJ LOCAL: we need an extra -I here.
+ACLOCAL_AMFLAGS = -I m4 -I ../.. -I ../../config
 
 native: lib
 
--- /Volumes/export/gcc/classpath/doc/Makefile.am	2005-01-02 18:04:13.000000000 +0100
+++ classpath/doc/Makefile.am	2005-11-14 09:49:41.000000000 +0100
@@ -2,7 +2,8 @@
 
 EXTRA_DIST = README.jaxp
 
-info_TEXINFOS = hacking.texinfo vmintegration.texinfo
+## GCJ LOCAL: we don't want to install Classpath's info files.
+## info_TEXINFOS = hacking.texinfo vmintegration.texinfo
 
 %.dvi : %.texinfo
 	texi2dvi $<
--- /Volumes/export/gcc/classpath/include/Makefile.am	2005-10-03 08:45:53.000000000 +0200
+++ classpath/include/Makefile.am	2005-11-14 09:47:14.000000000 +0100
@@ -1,4 +1,5 @@
-include_HEADERS = jni.h jni_md.h jawt.h jawt_md.h
+## GCJ LOCAL: headers are installed specially.
+## include_HEADERS = jni.h jni_md.h jawt.h jawt_md.h
 
 DISTCLEANFILES = jni_md.h
 
--- /Volumes/export/gcc/classpath/native/jawt/Makefile.am	2005-10-23 20:40:49.000000000 +0200
+++ classpath/native/jawt/Makefile.am	2005-11-14 09:52:06.000000000 +0100
@@ -1,4 +1,5 @@
-nativelib_LTLIBRARIES = libjawtgnu.la
+## GCJ LOCAL: don't install this library
+noinst_LTLIBRARIES = libjawtgnu.la
 
 libjawtgnu_la_SOURCES = jawt.c
 libjawtgnu_la_LIBADD = $(top_builddir)/native/jni/gtk-peer/libgtkpeer.la
--- /Volumes/export/gcc/classpath/native/jni/gtk-peer/Makefile.am	2005-11-08 23:05:34.000000000 +0100
+++ classpath/native/jni/gtk-peer/Makefile.am	2005-11-14 09:52:43.000000000 +0100
@@ -1,4 +1,5 @@
-nativelib_LTLIBRARIES = libgtkpeer.la
+## GCJ LOCAL: don't install this library
+noinst_LTLIBRARIES = libgtkpeer.la
 
 # Gtk/Cairo JNI sources.
 if GTK_CAIRO
--- /Volumes/export/gcc/classpath/native/jni/qt-peer/Makefile.am	2005-10-23 20:40:51.000000000 +0200
+++ classpath/native/jni/qt-peer/Makefile.am	2005-11-14 09:53:06.000000000 +0100
@@ -1,7 +1,8 @@
 # Qt AWT backend for Classpath
 #
 
-nativelib_LTLIBRARIES = libqtpeer.la
+## GCJ LOCAL: don't install this library
+noinst_LTLIBRARIES = libqtpeer.la
 
 AM_LDFLAGS = @CLASSPATH_MODULE@ @QT_LIBS@
 AM_CPPFLAGS = @CLASSPATH_INCLUDES@
--- /Volumes/export/gcc/classpath/native/jni/xmlj/Makefile.am	2005-10-23 20:40:51.000000000 +0200
+++ classpath/native/jni/xmlj/Makefile.am	2005-11-14 09:53:30.000000000 +0100
@@ -1,4 +1,5 @@
-nativelib_LTLIBRARIES = libxmlj.la
+## GCJ LOCAL: don't install this library
+noinst_LTLIBRARIES = libxmlj.la
 
 libxmlj_la_SOURCES = \
 xmlj_dom.c \

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]