Fix for #323349.
authorIrene Huang <Irene.Huang@sun.com>
Wed, 7 Dec 2005 07:26:09 +0000 (07:26 +0000)
committerHarry Lu <haip@src.gnome.org>
Wed, 7 Dec 2005 07:26:09 +0000 (07:26 +0000)
2005-12-07  Irene Huang <Irene.Huang@sun.com>

        Fix for #323349.

        * configure.in: Change iconv_open ("UTF-8", "ISO_8859-1")
        to iconv_open ("UTF-8", "ISO-8859-1") to avoid build error
        on solaris.

ChangeLog
configure.in

index 68f0e59..117008d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2005-12-07  Irene Huang <Irene.Huang@sun.com>
+
+       Fix for #323349.
+
+       * configure.in: Change iconv_open ("UTF-8", "ISO_8859-1") 
+       to iconv_open ("UTF-8", "ISO-8859-1") to avoid build error
+       on solaris.
+       
 2005-12-07  Tor Lillqvist  <tml@novell.com>
 
        * libdb/dbinc/db_int.in: As we are using this file (and not the
index 038b856..331b57a 100644 (file)
@@ -239,7 +239,7 @@ int main (int argc, char **argv)
                exit (1);
 #endif
 
-       cd = iconv_open ("UTF-8", "ISO_8859-1");
+       cd = iconv_open ("UTF-8", "ISO-8859-1");
        if (cd == (iconv_t) -1)
                exit (1);
        if (iconv (cd, &from, &from_len, &trans, &utf8_len) == -1 || from_len != 0)