Hi! While trying to build OpenJDK b16 yesterday I noticed that one Makefile uses iso8859-1 as encoding for javac. But GNU Classpath does not include that name as alias. This patch adds this one alias.
2007-07-23 Christian Thalinger <[EMAIL PROTECTED]> * gnu/java/nio/charset/ISO_8859_1.java: Added ISO8859-1 to aliases. Ok to commit? - twisti --- Index: gnu/java/nio/charset/ISO_8859_1.java =================================================================== RCS file: /cvsroot/classpath/classpath/gnu/java/nio/charset/ISO_8859_1.java,v retrieving revision 1.6 diff -u -3 -p -r1.6 ISO_8859_1.java --- gnu/java/nio/charset/ISO_8859_1.java 25 Sep 2006 19:19:46 -0000 1.6 +++ gnu/java/nio/charset/ISO_8859_1.java 23 Jul 2007 17:27:49 -0000 @@ -71,8 +71,12 @@ final class ISO_8859_1 extends Charset /* These names are provided by * http://oss.software.ibm.com/cgi-bin/icu/convexp?s=ALL */ - "ISO8859_1", "ISO_8859_1", "ibm-819", "ISO_8859-1:1987", - "819" + "ISO8859_1", + "ISO_8859_1", + "ibm-819", + "ISO_8859-1:1987", + "819", + "ISO8859-1" }); }