# HG changeset patch # User Bruno Haible # Date 1194607478 -3600 # Node ID 10dd3759b00d019abf13e08eefc4b93b7c2866ad # Parent 9a0be63245afe3d47ed3b97628c40658f9e3d5b3 Avoid a test failure on BeOS. diff -r 9a0be63245af -r 10dd3759b00d ChangeLog --- a/ChangeLog Thu Nov 01 18:34:38 2007 +0100 +++ b/ChangeLog Fri Nov 09 12:24:38 2007 +0100 @@ -1,3 +1,8 @@ +2007-11-09 Bruno Haible + + * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8) [BeOS]: Make this test return + none instead of tr_TR. Fixes a failure of test-c-strcasecmp.c. + 2007-11-08 Jim Meyering Change cache variable name prefix "jm_" to "gl_" everywhere. diff -r 9a0be63245af -r 10dd3759b00d m4/locale-tr.m4 --- a/m4/locale-tr.m4 Thu Nov 01 18:34:38 2007 +0100 +++ b/m4/locale-tr.m4 Fri Nov 09 12:24:38 2007 +0100 @@ -1,4 +1,4 @@ -# locale-tr.m4 serial 3 +# locale-tr.m4 serial 4 dnl Copyright (C) 2003, 2005-2007 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -25,22 +25,23 @@ int main () { /* On BeOS, locales are not implemented in libc. Rather, libintl imitates locale dependent behaviour by looking at the environment - variables, and all locales use the UTF-8 encoding. */ -#if !defined(__BEOS__) + variables, and all locales use the UTF-8 encoding. But BeOS does not + implement the Turkish upper-/lowercase mappings. Therefore, let this + program return 1 on BeOS. */ /* Check whether the given locale name is recognized by the system. */ if (setlocale (LC_ALL, "") == NULL) return 1; /* Check whether nl_langinfo(CODESET) is nonempty. On MacOS X 10.3.5 (Darwin 7.5) in the tr_TR locale, nl_langinfo(CODESET) is empty, and the behaviour of Tcl 8.4 in this locale is not useful. */ -# if HAVE_LANGINFO_CODESET +#if HAVE_LANGINFO_CODESET if (nl_langinfo (CODESET) [0] == '\0') return 1; -# endif -# ifdef __CYGWIN__ +#endif +#ifdef __CYGWIN__ /* On Cygwin, avoid locale names without encoding suffix, because the locale_charset() function relies on the encoding suffix. Note that LC_ALL is set on the command line. */ if (strchr (getenv ("LC_ALL"), '.') == NULL) return 1; -# endif +#endif /* Check whether in the abbreviation of the eighth month, the second character (should be U+011F: LATIN SMALL LETTER G WITH BREVE) is two bytes long, with UTF-8 encoding. */ @@ -53,7 +54,6 @@ if (towupper ('i') != 0x0130 || towlower (0x0130) != 'i' || towupper(0x0131) != 'I' || towlower ('I') != 0x0131) return 1; -#endif return 0; } changequote([,])dnl