+2001-04-19 Bruno Haible <haible@clisp.cons.org>
+
+ * loadmsgcat.c (_nl_init_domain_conv): Don't append //TRANSLIT when
+ the libiconv version is smaller than 1.5.
+
2001-04-09 Bruno Haible <haible@clisp.cons.org>
* loadmsgcat.c: Don't use GNU C extensions if __APPLE_CC__ is defined.
# else
# if HAVE_ICONV
/* When using GNU libiconv, we want to use transliteration. */
-# if _LIBICONV_VERSION
+# if _LIBICONV_VERSION >= 0x0105
len = strlen (outcharset);
{
char *tmp = (char *) alloca (len + 10 + 1);
}
# endif
domain->conv = iconv_open (outcharset, charset);
-# if _LIBICONV_VERSION
+# if _LIBICONV_VERSION >= 0x0105
freea (outcharset);
# endif
# endif