]> git.cworth.org Git - tar/blob - m4/mbsrtowcs.m4
Imported Upstream version 1.24
[tar] / m4 / mbsrtowcs.m4
1 # mbsrtowcs.m4 serial 7
2 dnl Copyright (C) 2008-2010 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.
6
7 AC_DEFUN([gl_FUNC_MBSRTOWCS],
8 [
9   AC_REQUIRE([gl_WCHAR_H_DEFAULTS])
10
11   AC_REQUIRE([AC_TYPE_MBSTATE_T])
12   gl_MBSTATE_T_BROKEN
13
14   AC_CHECK_FUNCS_ONCE([mbsrtowcs])
15   if test $ac_cv_func_mbsrtowcs = no; then
16     HAVE_MBSRTOWCS=0
17   else
18     if test $REPLACE_MBSTATE_T = 1; then
19       REPLACE_MBSRTOWCS=1
20     else
21       gl_MBSRTOWCS_WORKS
22       case "$gl_cv_func_mbsrtowcs_works" in
23         *yes) ;;
24         *) REPLACE_MBSRTOWCS=1 ;;
25       esac
26     fi
27   fi
28   if test $HAVE_MBSRTOWCS = 0 || test $REPLACE_MBSRTOWCS = 1; then
29     gl_REPLACE_WCHAR_H
30     AC_LIBOBJ([mbsrtowcs])
31     AC_LIBOBJ([mbsrtowcs-state])
32     gl_PREREQ_MBSRTOWCS
33   fi
34 ])
35
36 dnl Test whether mbsrtowcs works.
37 dnl Result is gl_cv_func_mbsrtowcs_works.
38
39 AC_DEFUN([gl_MBSRTOWCS_WORKS],
40 [
41   AC_REQUIRE([AC_PROG_CC])
42   AC_REQUIRE([gt_LOCALE_FR_UTF8])
43   AC_REQUIRE([gt_LOCALE_JA])
44   AC_REQUIRE([gt_LOCALE_ZH_CN])
45   AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
46   AC_CACHE_CHECK([whether mbsrtowcs works],
47     [gl_cv_func_mbsrtowcs_works],
48     [
49       dnl Initial guess, used when cross-compiling or when no suitable locale
50       dnl is present.
51 changequote(,)dnl
52       case "$host_os" in
53                           # Guess no on HP-UX and Solaris.
54         hpux* | solaris*) gl_cv_func_mbsrtowcs_works="guessing no" ;;
55                           # Guess yes otherwise.
56         *)                gl_cv_func_mbsrtowcs_works="guessing yes" ;;
57       esac
58 changequote([,])dnl
59       if test $LOCALE_FR_UTF8 != none || test $LOCALE_JA != none || test $LOCALE_ZH_CN != none; then
60         AC_RUN_IFELSE(
61           [AC_LANG_SOURCE([[
62 #include <locale.h>
63 #include <string.h>
64 #include <wchar.h>
65 int main ()
66 {
67   /* Test whether the function works when started with a conversion state
68      in non-initial state.  This fails on HP-UX 11.11 and Solaris 10.  */
69   if (setlocale (LC_ALL, "$LOCALE_FR_UTF8") != NULL)
70     {
71       const char input[] = "B\303\274\303\237er";
72       mbstate_t state;
73
74       memset (&state, '\0', sizeof (mbstate_t));
75       if (mbrtowc (NULL, input + 1, 1, &state) == (size_t)(-2))
76         if (!mbsinit (&state))
77           {
78             const char *src = input + 2;
79             if (mbsrtowcs (NULL, &src, 10, &state) != 4)
80               return 1;
81           }
82     }
83   if (setlocale (LC_ALL, "$LOCALE_JA") != NULL)
84     {
85       const char input[] = "<\306\374\313\334\270\354>";
86       mbstate_t state;
87
88       memset (&state, '\0', sizeof (mbstate_t));
89       if (mbrtowc (NULL, input + 3, 1, &state) == (size_t)(-2))
90         if (!mbsinit (&state))
91           {
92             const char *src = input + 4;
93             if (mbsrtowcs (NULL, &src, 10, &state) != 3)
94               return 1;
95           }
96     }
97   if (setlocale (LC_ALL, "$LOCALE_ZH_CN") != NULL)
98     {
99       const char input[] = "B\250\271\201\060\211\070er";
100       mbstate_t state;
101
102       memset (&state, '\0', sizeof (mbstate_t));
103       if (mbrtowc (NULL, input + 1, 1, &state) == (size_t)(-2))
104         if (!mbsinit (&state))
105           {
106             const char *src = input + 2;
107             if (mbsrtowcs (NULL, &src, 10, &state) != 4)
108               return 1;
109           }
110     }
111   return 0;
112 }]])],
113           [gl_cv_func_mbsrtowcs_works=yes],
114           [gl_cv_func_mbsrtowcs_works=no],
115           [:])
116       fi
117     ])
118 ])
119
120 # Prerequisites of lib/mbsrtowcs.c.
121 AC_DEFUN([gl_PREREQ_MBSRTOWCS], [
122   :
123 ])