Sync libgcj with GNU Classpath 0.98.

2009-02-13  Andrew John Hughes  <ahughes@redhat.com>

	Import GNU Classpath (classpath-0_98-release).

	* Makefile.am: Add natVMSecureRandom.cc.
	* Makefile.in: Regenerated.
	* classpath/ChangeLog,
	* classpath/Makefile.am: Merged.
	* classpath/Makefile.in: Regenerated.
	* classpath/NEWS: Merged.
	* classpath/config.guess,
	* classpath/config.sub,
	* classpath/configure: Regenerated.
	* classpath/configure.ac: Merged.
	* classpath/gnu/java/awt/peer/gtk/CairoGraphics2D.java,
	* classpath/gnu/java/security/jce/prng/SecureRandomAdapter.java,
	* classpath/gnu/javax/crypto/jce/prng/ARCFourRandomSpi.java,
	* classpath/gnu/javax/crypto/jce/prng/CSPRNGSpi.java,
	* classpath/gnu/javax/crypto/jce/prng/FortunaImpl.java,
	* classpath/gnu/javax/crypto/jce/prng/ICMRandomSpi.java,
	* classpath/gnu/javax/crypto/jce/prng/UMacRandomSpi.java,
	* classpath/gnu/javax/crypto/prng/ICMGenerator.java,
	* classpath/gnu/xml/stream/XMLParser.java,
	* classpath/java/security/SecureRandom.java,
	* classpath/native/jni/native-lib/cpproc.c,
	* classpath/native/plugin/gcjwebplugin.cc,
	* classpath/tools/gnu/classpath/tools/gjdoc/Main.java: Merged.
	* configure: Regenerated.
	* configure.ac: Add symlink for natVMSecureRandomPosix.cc to natVMSecureRandom.cc
	* gnu/classpath/Configuration.java: Change version to 0.98.
	* gnu/java/security/jce/prng/SecureRandomAdapter.h: Regenerated.
	* gnu/java/security/jce/prng/VMSecureRandom.h: Generated.
	* gnu/java/security/jce/prng/VMSecureRandom.java: Added native implementation.
	* gnu/java/security/jce/prng/natVMSecureRandomPosix.cc: Wrapper around /dev/random.
	* gnu/javax/crypto/jce/prng/CSPRNGSpi.h,
	* gnu/javax/crypto/jce/prng/FortunaImpl.h,
	* java/security/SecureRandom.h: Regenerated.
	* java/security/VMSecureRandom$Spinner.h,
	* java/security/VMSecureRandom.h,
	* java/security/VMSecureRandom.java: Removed.
	* sources.am: Move VMSecureRandom to gnu.java.security.jce.prng.

From-SVN: r144434
This commit is contained in:
Andrew John Hughes
2009-02-25 21:40:28 +00:00
parent a16b68bb66
commit dc6a0b2d94
66 changed files with 612 additions and 249 deletions
+35 -2
View File
@@ -1,4 +1,4 @@
New in release 0.98
New in release 0.98 (Feb 05, 2009)
* Native support for BigInteger is now provided using the GMP
library. A new option, --enable/disable-gmp is provided, and
@@ -11,8 +11,41 @@ always retain their own array, which is only altered during resizing,
CPStringBuilder gives away its array when the result is generated
by toString()/substring() and starts afresh. The default capacity of
CPStringBuilder can also be configured using the
gnu.classpath.cpstringbuilder.capacity property.
gnu.classpath.cpstringbuilder.capacity property. (PR21869)
* gjdoc is now built as part of tools.zip.
* Import of the Java Activation Framework from ClasspathX to provide
javax.activation (part of 1.6).
* Preliminary version of java.util.Scanner (PR30436)
* Reduce cost of ThreadLocal(s) to improve Jython performance (PR33690)
* Updated to use CLDR 1.5.1 (PR35237)
* Many bug fixes including:
- PR22851: zoneStrings in gnu/java/locale/LocaleInformation*
- PR31895: setCurrency(Currency) does not actually change the currency.
- PR32028: Make fails at gjdoc
- PR34840: Mismatch between Sun and Classpath's java.lang.Appendable
- PR35487: gcj causes ConcurrentModificationException during tomcat5
- PR35690: javax.tools.FileObject.toUri is in wrong case
- PR36085: java.util.regex escape-sequence handling
- PR36147: Apache Tomcat fails to read descriptors using GNU XML
- PR36219: gnu.xml.transform.SortKey isn't subclass
- PR36220: NPEs in gnu.xml.transform.* clone methods
- PR36221: DomDOMException running SPEC jvm 2008 xml.transform
- PR36477: OOME in CPStringBuilder when running Eclipse
- PR36522: Policy file is not read at all
- PR36636: gjar -u doesn't work
- PR36637: --without-fastjar doesn't wor
- PR36677: Omission bug in JDWP VirtualMachineCommandSet
- PR38417: gnu.java.security.util.PRNG produces easily predictable values
- PR38473: Segmentation fault in retrieving font outline decomposition
- PR38861: Support XULRunner 1.9.1.
- PR38912: XMLParser not interning element names
Runtime interface changes:
* VMSecureRandom has moved to gnu.java.security.jce.prng.VMSecureRandom
as part of the fix for PR38417.
* gnu.java.lang.VMCPStringBuilder has been added and should be added to
avoid the inefficency of reflection when creating non-copied String objects.
Bug fixes in release 0.97.2 (Jun 06, 2007)