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

FYI: Patch: Marking files specific to GCJ in overview


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hi list,


I will commit the attached patch to the wwwdocs module to make the 
libgcj-classpath comparison marking files specific to GCJ.

This patch was accepted by Tom Tromey already.


Michael
- -- 
Homepage: http://www.worldforge.org/
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQE+qR4SWSOgCCdjSDsRAlZyAJ91x3YyqFIhQ9JKGpzpYJ9LSgKDJACfZaSP
0i6gRfYfJrHeb5O/TRGNvNo=
=vJrS
-----END PGP SIGNATURE-----
Index: gen-classpath-compare
===================================================================
RCS file: /cvs/gcc/wwwdocs/bin/gen-classpath-compare,v
retrieving revision 1.5
diff -u -r1.5 gen-classpath-compare
--- gen-classpath-compare	31 Mar 2003 19:07:49 -0000	1.5
+++ gen-classpath-compare	25 Apr 2003 11:32:26 -0000
@@ -63,8 +63,11 @@
 No='<td bgcolor="#eeeeaa">No</td>'
 Yes='<td>Yes</td>'
 VmSpec='<td>VM-specific</td>'
+GCJSpec='<td>GCJ-specific</td>'
 Empty='<td>&nbsp;</td>'
 
+GCJSpecClasses='java.lang.EcosProcess java.lang.PosixProcess java.lang.Win32Process'
+
 # Note: for now, we omit much of gnu.*, as it differs too much.
 (cd $LIBGCJ; find . -name '*.java' -print;
 cd $CLASSPATH; find . -name '*.java' -print;
@@ -108,6 +111,14 @@
       fi
    elif test -f "$CLASSPATH/vm/reference/$f"; then
       clp="$VmSpec"
+      Merge="$Empty"
+   fi
+
+   
+   echo "$GCJSpecClasses" | grep -q "$class"
+   if test "$?" = "0"
+   then
+      clp="$GCJSpec"
       Merge="$Empty"
    fi
 

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