frexpl: Update regarding AIX.
[gnulib.git] / m4 / wctob.m4
1 # wctob.m4 serial 5
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_WCTOB],
8 [
9   AC_REQUIRE([gl_WCHAR_H_DEFAULTS])
10
11   AC_CHECK_FUNCS_ONCE([wctob])
12   if test $ac_cv_func_wctob = no; then
13     HAVE_DECL_WCTOB=0
14     gl_REPLACE_WCHAR_H
15     AC_LIBOBJ([wctob])
16     gl_PREREQ_WCTOB
17   else
18
19     dnl Solaris 9 has the wctob() function but it does not work.
20     dnl Cygwin 1.7.2 has the wctob() function but it clobbers caller-owned
21     dnl registers, see <http://cygwin.com/ml/cygwin/2010-05/msg00015.html>.
22     AC_REQUIRE([AC_PROG_CC])
23     AC_REQUIRE([gt_LOCALE_FR])
24     AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
25     AC_CACHE_CHECK([whether wctob works],
26       [gl_cv_func_wctob_works],
27       [
28         dnl Initial guess, used when cross-compiling or when no suitable locale
29         dnl is present.
30 changequote(,)dnl
31         case "$host_os" in
32             # Guess no on Solaris <= 9 and Cygwin.
33           solaris2.[1-9] | solaris2.[1-9].* | cygwin*)
34             gl_cv_func_wctob_works="guessing no" ;;
35             # Guess yes otherwise.
36           *) gl_cv_func_wctob_works="guessing yes" ;;
37         esac
38 changequote([,])dnl
39         case "$host_os" in
40           cygwin*)
41             AC_TRY_RUN([
42 #include <locale.h>
43 #include <wchar.h>
44
45 register long global __asm__ ("%ebx");
46
47 int main ()
48 {
49   setlocale (LC_ALL, "en_US.UTF-8");
50
51   global = 0x12345678;
52   if (wctob (0x00FC) != -1)
53     return 1;
54   if (global != 0x12345678)
55     return 2;
56   return 0;
57 }], [:], [gl_cv_func_wctob_works=no], [:])
58             ;;
59         esac
60         if test "$gl_cv_func_wctob_works" != no && test $LOCALE_FR != none; then
61           AC_TRY_RUN([
62 #include <locale.h>
63 #include <string.h>
64 #include <wchar.h>
65 int main ()
66 {
67   if (setlocale (LC_ALL, "$LOCALE_FR") != NULL)
68     {
69       wchar_t wc;
70
71       if (mbtowc (&wc, "\374", 1) == 1)
72         if (wctob (wc) != (unsigned char) '\374')
73           return 1;
74     }
75   return 0;
76 }],
77             [gl_cv_func_wctob_works=yes],
78             [gl_cv_func_wctob_works=no],
79             [:])
80         fi
81       ])
82     case "$gl_cv_func_wctob_works" in
83       *yes) ;;
84       *) REPLACE_WCTOB=1 ;;
85     esac
86     if test $REPLACE_WCTOB = 1; then
87       gl_REPLACE_WCHAR_H
88       AC_LIBOBJ([wctob])
89       gl_PREREQ_WCTOB
90     else
91
92       dnl IRIX 6.5 has the wctob() function but does not declare it.
93       AC_CHECK_DECLS([wctob], [], [], [
94 /* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
95    <wchar.h>.
96    BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be included
97    before <wchar.h>.  */
98 #include <stddef.h>
99 #include <stdio.h>
100 #include <time.h>
101 #include <wchar.h>
102 ])
103       if test $ac_cv_have_decl_wctob != yes; then
104         HAVE_DECL_WCTOB=0
105         gl_REPLACE_WCHAR_H
106       fi
107     fi
108   fi
109 ])
110
111 # Prerequisites of lib/wctob.c.
112 AC_DEFUN([gl_PREREQ_WCTOB], [
113   :
114 ])