gcc/libjava
Michael Koch ad03daf005 2003-04-30 Michael Koch <konqueror@gmx.de>
* java/util/regex/Matcher.java
	(pattern): New member variable.
	(appendReplacement): New method.
	(appendTail): New method.
	(end): New method.
	(find): New method.
	(group): New method.
	(replaceFirst): Added documentation.
	(replaceAll): Added documentation.
	(groupCount): New method.
	(lookingAt): New method.
	(matches): New method.
	(reset): New method.
	(start): New method.
	* java/util/regex/Pattern.java
	(serialVersionUID): New constant.
	(CANON_EQ): New constant.
	(CASE_INSENSITIVE): New constant.
	(COMMENTS): New constant.
	(DOTALL): New constant.
	(MULTILINE): New constant.
	(UNICODE_CASE): New constant.
	(UNIX_LINES): New constant.
	(regex): New member variable.
	(flags): New member variable.
	(Pattern): New method.
	(compile): Documentation added.
	(flags): New method.
	(matches): Documentation added.
	(matcher): Documentation added.
	(split): Documentation added.
	(pattern): New method.

From-SVN: r66285
2003-04-30 08:57:04 +00:00
..
doc
gcj
gnu Engine.java, [...]: New files from classpath. 2003-04-30 07:23:42 +00:00
include jvm.h: (_Jv_GetNbArgs) added (_Jv_GetSafeArg) added (_Jv_SetArgs) added 2003-04-25 16:48:13 +00:00
java 2003-04-30 Michael Koch <konqueror@gmx.de> 2003-04-30 08:57:04 +00:00
javax Engine.java, [...]: New files from classpath. 2003-04-30 07:23:42 +00:00
jni
libltdl
org
scripts
sysdep
testsuite
COPYING
ChangeLog 2003-04-30 Michael Koch <konqueror@gmx.de> 2003-04-30 08:57:04 +00:00
ChangeLog-1999
ChangeLog-2001
HACKING
LIBGCJ_LICENSE
Makefile.am Engine.java, [...]: New files from classpath. 2003-04-30 07:23:42 +00:00
Makefile.in This accidently got it then the big java.security merge so revert this. 2003-04-30 07:26:36 +00:00
NEWS
README
THANKS
acconfig.h
acinclude.m4
aclocal.m4
addr2name.awk
boehm.cc
configure
configure.host
configure.in
defineclass.cc
exception.cc
gij.cc
glib.m4
gtk.m4
interpret.cc
jni.cc
libart.m4
libgcj-test.spec.in
libgcj.spec.in
libtool-version
mauve-libgcj
no-threads.cc
nogc.cc
posix-threads.cc
posix.cc jvm.h: (_Jv_GetNbArgs) added (_Jv_GetSafeArg) added (_Jv_SetArgs) added 2003-04-25 16:48:13 +00:00
prims.cc jvm.h: (_Jv_GetNbArgs) added (_Jv_GetSafeArg) added (_Jv_SetArgs) added 2003-04-25 16:48:13 +00:00
resolve.cc
verify.cc
win32-threads.cc
win32.cc

README

This is libgcj: the runtime library for gcj, the GNU Compiler for Java. 
libgcj provides a partial implementation of the Java Class Libraries.

libgcj is free software.  See the file LIBGCJ_LICENSE for copying permission.


DOCUMENTATION
=============

All documentation, including detailed installation and usage instructions,
can be found on the gcj web pages at this URL:

		http://gcc.gnu.org/java/


REQUIREMENTS
============

libgcj must be built with a compatible version of the gcc compiler. libgcj
releases are usually numbered according to their corresponding gcc release.
For example, if this is "libgcj 2.95.3", you need to build it using "gcc
2.95.3".


QUICK INSTALLATION
==================

  > mkdir build
  > cd build
  > ../libgcj/configure --enable-threads=<THREADS_TYPE> --prefix=<DIR>
  > make
  > make install

where:

<THREADS_TYPE> specifies the threads library to be used by libgcj. Currently 
the possible values are "posix" and "none". This value must be the same as
the value used when configuring gcc itself.

<DIR> specifies the installation directory. This should be the same location 
as where gcc is installed.

Consult the gcj web pages for additional "configure" arguments.

NOTE: libgcj can not be built in the same directory as `configure'. You must 
create a separate build directory. 


BUGS
====

Please submit bug reports via this URL:

	http://gcc.gnu.org/cgi-bin/gnatsweb.pl?database=gcc