]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Update from gnulib.
authorBruno Haible <bruno@clisp.org>
Sun, 28 Mar 2010 23:28:48 +0000 (01:28 +0200)
committerBruno Haible <bruno@clisp.org>
Sun, 28 Mar 2010 23:28:48 +0000 (01:28 +0200)
gettext-runtime/m4/ChangeLog
gettext-runtime/m4/iconv.m4

index c6338105f0636270b742f8c6cfd3c53bcb83c9c2..8dcae64acc667398bfd6c2ba640bd431cb13743c 100644 (file)
@@ -3,6 +3,10 @@
        * gettext.m4 (AM_GNU_GETTEXT): Emit a warning if the first argument is
        empty or 'no-libtool'.
 
+2010-01-01  Bruno Haible  <bruno@clisp.org>
+
+       * iconv.m4 (AM_ICONV_LINK): Recognize native Solaris iconv() bug.
+
 2009-12-26  Bruno Haible  <bruno@clisp.org>
 
        * intl.m4 (gt_INTL_SUBDIR_CORE): Don't check for NL_LOCALE_NAME macro.
index ce21b0b878629fa1d9477d2acf7809db408c32bf..f46ff1421541e2a8b0bef692bc3299a902f5226d 100644 (file)
@@ -1,5 +1,5 @@
-# iconv.m4 serial AM8 (gettext-0.18)
-dnl Copyright (C) 2000-2002, 2007-2009 Free Software Foundation, Inc.
+# iconv.m4 serial 9 (gettext-0.18)
+dnl Copyright (C) 2000-2002, 2007-2010 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
@@ -58,7 +58,7 @@ AC_DEFUN([AM_ICONV_LINK],
   ])
   if test "$am_cv_func_iconv" = yes; then
     AC_CACHE_CHECK([for working iconv], [am_cv_func_iconv_works], [
-      dnl This tests against bugs in AIX 5.1 and HP-UX 11.11.
+      dnl This tests against bugs in AIX 5.1, HP-UX 11.11, Solaris 10.
       am_save_LIBS="$LIBS"
       if test $am_cv_lib_iconv = yes; then
         LIBS="$LIBS $LIBICONV"
@@ -87,6 +87,25 @@ int main ()
           return 1;
       }
   }
+  /* Test against Solaris 10 bug: Failures are not distinguishable from
+     successful returns.  */
+  {
+    iconv_t cd_ascii_to_88591 = iconv_open ("ISO8859-1", "646");
+    if (cd_ascii_to_88591 != (iconv_t)(-1))
+      {
+        static const char input[] = "\263";
+        char buf[10];
+        const char *inptr = input;
+        size_t inbytesleft = strlen (input);
+        char *outptr = buf;
+        size_t outbytesleft = sizeof (buf);
+        size_t res = iconv (cd_ascii_to_88591,
+                            (char **) &inptr, &inbytesleft,
+                            &outptr, &outbytesleft);
+        if (res == 0)
+          return 1;
+      }
+  }
 #if 0 /* This bug could be worked around by the caller.  */
   /* Test against HP-UX 11.11 bug: Positive return value instead of 0.  */
   {