This is the mail archive of the java-patches@sources.redhat.com 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]

PATCH: Build cleanup


Folks,
I made the following minor patches.  My build of the latest egcs and
libgcj sources failed without the #include in jni.cc (I have no idea why
this hasn't shown up till now).  And the gcj/javaprims.h patch is to pull
out of the namespace a couple classes that I removed a few weeks ago.
--warrenl


2000-10-31  Warren Levy  <warrenl@cygnus.com>

	* jni.cc: Added include of java/lang/ThreadGroup.h.
	* gcj/javaprims.h: Removed Replaceable and Resolvable from namespace
	per change of 2000-10-05.


Index: jni.cc
===================================================================
RCS file: /cvs/java/libgcj/libjava/jni.cc,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -p -r1.33 -r1.34
--- jni.cc	2000/10/06 01:49:31	1.33
+++ jni.cc	2000/11/01 00:18:03	1.34
@@ -39,6 +39,7 @@ details.  */
 #include <java/lang/OutOfMemoryError.h>
 #include <java/util/Hashtable.h>
 #include <java/lang/Integer.h>
+#include <java/lang/ThreadGroup.h>
 #include <gnu/gcj/jni/NativeThread.h>
 
 #include <gcj/method.h>
Index: gcj/javaprims.h
===================================================================
RCS file: /cvs/java/libgcj/libjava/gcj/javaprims.h,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -p -r1.13 -r1.14
--- javaprims.h	2000/10/05 23:57:16	1.13
+++ javaprims.h	2000/11/01 00:18:03	1.14
@@ -363,8 +363,6 @@ extern "Java"
       class PushbackReader;
       class RandomAccessFile;
       class Reader;
-      class Replaceable;
-      class Resolvable;
       class SequenceInputStream;
       class Serializable;
       class SerializablePermission;



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