1 # locale-ar.m4 serial 8
2 dnl Copyright (C) 2003, 2005-2018 Free Software Foundation, Inc.
3 dnl This file is free software; the Free Software Foundation
4 dnl gives unlimited permission to copy and/or distribute it,
5 dnl with or without modifications, as long as this notice is preserved.
7 dnl From Ben Pfaff, based on locale-fr.m4 by Bruno Haible.
9 dnl Determine the name of an Arabic locale with traditional encoding.
10 AC_DEFUN([gt_LOCALE_AR],
12 AC_REQUIRE([AC_CANONICAL_HOST])
13 AC_REQUIRE([AM_LANGINFO_CODESET])
14 AC_CACHE_CHECK([for a traditional Arabic locale], [gt_cv_locale_ar], [
15 AC_LANG_CONFTEST([AC_LANG_SOURCE([
19 #if HAVE_LANGINFO_CODESET
20 # include <langinfo.h>
27 /* On BeOS and Haiku, locales are not implemented in libc. Rather, libintl
28 imitates locale dependent behaviour by looking at the environment
29 variables, and all locales use the UTF-8 encoding. */
30 #if defined __BEOS__ || defined __HAIKU__
33 /* Check whether the given locale name is recognized by the system. */
34 # if defined _WIN32 && !defined __CYGWIN__
35 /* On native Windows, setlocale(category, "") looks at the system settings,
36 not at the environment variables. Also, when an encoding suffix such
37 as ".65001" or ".54936" is specified, it succeeds but sets the LC_CTYPE
38 category of the locale to "C". */
39 if (setlocale (LC_ALL, getenv ("LC_ALL")) == NULL
40 || strcmp (setlocale (LC_CTYPE, NULL), "C") == 0)
43 if (setlocale (LC_ALL, "") == NULL) return 1;
45 /* Check that nl_langinfo(CODESET) is nonempty and not "ASCII" or "646"
47 # if HAVE_LANGINFO_CODESET
49 const char *cs = nl_langinfo (CODESET);
50 if (cs[0] == '\0' || strcmp (cs, "ASCII") == 0 || strcmp (cs, "646") == 0
51 || cs[strlen (cs) - 1] != '6')
56 /* On Cygwin, avoid locale names without encoding suffix, because the
57 locale_charset() function relies on the encoding suffix. Note that
58 LC_ALL is set on the command line. */
59 if (strchr (getenv ("LC_ALL"), '.') == NULL) return 1;
66 if AC_TRY_EVAL([ac_link]) && test -s conftest$ac_exeext; then
68 # Handle native Windows specially, because there setlocale() interprets
69 # "ar" as "Arabic" or "Arabic_Saudi Arabia.1256",
70 # "fr" or "fra" as "French" or "French_France.1252",
71 # "ge"(!) or "deu"(!) as "German" or "German_Germany.1252",
72 # "ja" as "Japanese" or "Japanese_Japan.932",
75 # Note that on native Windows, the Arabic locale is
76 # "Arabic_Saudi Arabia.1256", and CP1256 is very different from
77 # ISO-8859-6, so we cannot use it here.
81 # Setting LC_ALL is not enough. Need to set LC_TIME to empty, because
82 # otherwise on Mac OS X 10.3.5 the LC_TIME=C from the beginning of the
83 # configure script would override the LC_ALL setting. Likewise for
84 # LC_CTYPE, which is also set at the beginning of the configure script.
86 # - The usual locale name: ar_SA
87 # - The locale name with explicit encoding suffix: ar_SA.ISO-8859-6
88 # - The HP-UX locale name: ar_SA.iso88596
89 # - The Solaris 7 locale name: ar
90 # Also try ar_EG instead of ar_SA because Egypt is a large country too.
91 for gt_cv_locale_ar in ar_SA ar_SA.ISO-8859-6 ar_SA.iso88596 ar_EG ar_EG.ISO-8859-6 ar_EG.iso88596 ar none; do
92 if test $gt_cv_locale_ar = none; then
95 if (LC_ALL=$gt_cv_locale_ar LC_TIME= LC_CTYPE= ./conftest; exit) 2>/dev/null; then
104 LOCALE_AR=$gt_cv_locale_ar
105 AC_SUBST([LOCALE_AR])