diff options
author | Paul Fisher <rao@gnu.org> | 1999-03-06 16:01:05 +0000 |
---|---|---|
committer | Paul Fisher <rao@gnu.org> | 1999-03-06 16:01:05 +0000 |
commit | baeb91daee4955edcbcf879f925ab504393cda46 (patch) | |
tree | 874ced411e3b7d82df099b1273ac309fdfd86b4c /doc/www.gnu.org/announce | |
parent | ef33a09bbf65b1f8667585767dba705c9f8bed25 (diff) | |
download | classpath-baeb91daee4955edcbcf879f925ab504393cda46.tar.gz |
Add 1999-02-06 announcement.
Diffstat (limited to 'doc/www.gnu.org/announce')
-rw-r--r-- | doc/www.gnu.org/announce/19990206.mhtml | 75 | ||||
-rw-r--r-- | doc/www.gnu.org/announce/Makefile | 15 |
2 files changed, 90 insertions, 0 deletions
diff --git a/doc/www.gnu.org/announce/19990206.mhtml b/doc/www.gnu.org/announce/19990206.mhtml new file mode 100644 index 000000000..aa86b36a1 --- /dev/null +++ b/doc/www.gnu.org/announce/19990206.mhtml @@ -0,0 +1,75 @@ +<set-var last-modified-author="rao"> + +<include ../macros.mhtml> +<header "GNU Classpath Annoucement (1999-02-06)"> +<plain-text> +I am pleased to announce the first development release of GNU Classpath, +a project to create a free software replacement for Sun's proprietary +Java class libraries. The project is initially providing class library +support for the Japhar JVM. + +Here are the answers to some questions you might have about this project +and this release. + +1). Where can I get it? + +GNU Classpath 0.00 can be downloaded from: + +<link ftp://alpha.gnu.ai.mit.edu/pub/gnu/classpath-0.00.tar.gz + ftp://alpha.gnu.ai.mit.edu/pub/gnu/classpath-0.00.tar.gz> + +2). What is included? + +The following java packages are supported: +<UL> + <LI>java.beans</LI> + <LI>java.io</LI> + <LI>java.lang</LI> + <LI>java.lang.reflect</LI> + <LI>java.math</LI> + <LI>java.net</LI> + <LI>java.security (partial and non-functioning)</LI> + <LI>java.security.acl</LI> + <LI>java.security.interfaces</LI> + <LI>java.util</LI> +</UL> + +This is enough to run many non-awt programs. Not all classes and methods +are implemented in this release, but most are. The major missing piece +of core functionality is java.text. Many of the implemented classes are +already up to the Java 1.2 spec. + +3). What is required to build/install/run? + +GNU Classpath requires that Japhar 0.07 be installed. Information on +obtaining Japhar is available from <link http://www.japhar.org/ +http://www.japhar.org/>. A working C compiler is also required. You +will need the Sun JDK installed if you elect to recompile the Java +classes. + +4). What platforms are supported? + +GNU/Linux is the only platform that has been tested. We plan to +eventually support many others. + +5). Who should use this software? + +This is a development release only. You should only install it if you +are interested in Classpath development or reporting bugs. We appreciate +both. You might also be interested if you enjoy installing random alpha +software. + +6). Where do I go for more information? + +The project has a web page at + +<link http://www.classpath.org/ http://www.classpath.org/> + +and + +<link http://www.gnu.org/software/classpath/classpath.html + http://www.gnu.org/software/classpath/classpath.html> + +Information on our mailing list is available at the web site. +</plain-text> +<footer> diff --git a/doc/www.gnu.org/announce/Makefile b/doc/www.gnu.org/announce/Makefile new file mode 100644 index 000000000..2baa12f65 --- /dev/null +++ b/doc/www.gnu.org/announce/Makefile @@ -0,0 +1,15 @@ +ifndef MHC + MHC=mhc +endif + +%.html : %.mhtml macros.mhtml + $(MHC) $< > $@ + +all : 19990206.html + +index.html : 19990206.html + ln -s 19990206.html index.html + +.PHONY : clean +clean : + -rm *.html |