2 dnl Copyright (C) 2008-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 AC_DEFUN([gl_FUNC_WCTOB],
9 AC_REQUIRE([gl_WCHAR_H_DEFAULTS])
11 AC_CHECK_FUNCS_ONCE([wctob])
12 if test $ac_cv_func_wctob = no; then
18 dnl Solaris 9 has the wctob() function but it does not work.
19 dnl Cygwin 1.7.2 has the wctob() function but it clobbers caller-owned
20 dnl registers, see <https://cygwin.com/ml/cygwin/2010-05/msg00015.html>.
21 AC_REQUIRE([AC_PROG_CC])
22 AC_REQUIRE([gt_LOCALE_FR])
23 AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
24 AC_CACHE_CHECK([whether wctob works],
25 [gl_cv_func_wctob_works],
27 dnl Initial guess, used when cross-compiling or when no suitable locale
31 # Guess no on Solaris <= 9 and Cygwin.
32 solaris2.[1-9] | solaris2.[1-9].* | cygwin*)
33 gl_cv_func_wctob_works="guessing no" ;;
34 # Guess no on native Windows.
36 gl_cv_func_wctob_works="guessing no" ;;
37 # Guess yes otherwise.
38 *) gl_cv_func_wctob_works="guessing yes" ;;
46 /* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
48 BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be
49 included before <wchar.h>. */
55 register long global __asm__ ("%ebx");
59 setlocale (LC_ALL, "en_US.UTF-8");
62 if (wctob (0x00FC) != -1)
64 if (global != 0x12345678)
69 [gl_cv_func_wctob_works=no],
73 if test "$gl_cv_func_wctob_works" != no && test $LOCALE_FR != none; then
78 /* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
80 BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be
81 included before <wchar.h>. */
88 if (setlocale (LC_ALL, "$LOCALE_FR") != NULL)
92 if (mbtowc (&wc, "\374", 1) == 1)
93 if (wctob (wc) != (unsigned char) '\374')
98 [gl_cv_func_wctob_works=yes],
99 [gl_cv_func_wctob_works=no],
103 case "$gl_cv_func_wctob_works" in
105 *) REPLACE_WCTOB=1 ;;
107 if test $REPLACE_WCTOB = 0; then
109 dnl IRIX 6.5 has the wctob() function but does not declare it.
110 AC_CHECK_DECLS([wctob], [], [], [[
111 /* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
113 BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be included
120 if test $ac_cv_have_decl_wctob != yes; then
127 # Prerequisites of lib/wctob.c.
128 AC_DEFUN([gl_PREREQ_WCTOB], [