1 # wctype_h.m4 serial 25
3 dnl A placeholder for ISO C99 <wctype.h>, for platforms that lack it.
5 dnl Copyright (C) 2006-2020 Free Software Foundation, Inc.
6 dnl This file is free software; the Free Software Foundation
7 dnl gives unlimited permission to copy and/or distribute it,
8 dnl with or without modifications, as long as this notice is preserved.
10 dnl Written by Paul Eggert.
12 AC_DEFUN([gl_WCTYPE_H],
14 AC_REQUIRE([gl_WCTYPE_H_DEFAULTS])
15 AC_REQUIRE([AC_PROG_CC])
16 AC_REQUIRE([AC_CANONICAL_HOST])
17 AC_CHECK_FUNCS_ONCE([iswcntrl])
18 if test $ac_cv_func_iswcntrl = yes; then
23 AC_SUBST([HAVE_ISWCNTRL])
25 AC_REQUIRE([gt_TYPE_WINT_T])
26 if test $gt_cv_c_wint_t = yes; then
31 AC_SUBST([HAVE_WINT_T])
33 AC_REQUIRE([gl_TYPE_WINT_T_PREREQ])
35 gl_CHECK_NEXT_HEADERS([wctype.h])
36 if test $ac_cv_header_wctype_h = yes; then
37 if test $ac_cv_func_iswcntrl = yes; then
38 dnl Linux libc5 has an iswprint function that returns 0 for all arguments.
39 dnl The other functions are likely broken in the same way.
40 AC_CACHE_CHECK([whether iswcntrl works], [gl_cv_func_iswcntrl_works],
44 /* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be
45 included before <wchar.h>.
46 BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h>
47 must be included before <wchar.h>. */
53 int main () { return iswprint ('x') == 0; }
55 [gl_cv_func_iswcntrl_works=yes], [gl_cv_func_iswcntrl_works=no],
56 [dnl Guess no on Linux libc5, yes otherwise.
57 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <stdlib.h>
58 #if __GNU_LIBRARY__ == 1
59 Linux libc5 i18n is broken.
61 [gl_cv_func_iswcntrl_works="guessing yes"],
62 [gl_cv_func_iswcntrl_works="guessing no"])
70 AC_SUBST([HAVE_WCTYPE_H])
72 if test $GNULIB_OVERRIDES_WINT_T = 1; then
75 case "$gl_cv_func_iswcntrl_works" in
76 *yes) REPLACE_ISWCNTRL=0 ;;
77 *) REPLACE_ISWCNTRL=1 ;;
80 AC_SUBST([REPLACE_ISWCNTRL])
82 if test $HAVE_ISWCNTRL = 0 || test $REPLACE_ISWCNTRL = 1; then
83 dnl Redefine all of iswcntrl, ..., iswxdigit in <wctype.h>.
87 if test $REPLACE_ISWCNTRL = 1; then
90 AC_CHECK_FUNCS([towlower])
91 if test $ac_cv_func_towlower = yes; then
94 AC_CHECK_DECLS([towlower],,,
95 [[/* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be
96 included before <wchar.h>.
97 BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h>
98 must be included before <wchar.h>. */
107 if test $ac_cv_have_decl_towlower = yes; then
108 dnl On Minix 3.1.8, the system's <wctype.h> declares towlower() and
109 dnl towupper() although it does not have the functions. Avoid a
110 dnl collision with gnulib's replacement.
117 AC_SUBST([REPLACE_TOWLOWER])
119 if test $HAVE_ISWCNTRL = 0 || test $REPLACE_TOWLOWER = 1; then
120 dnl Redefine towlower, towupper in <wctype.h>.
124 dnl We assume that the wctype() and iswctype() functions exist if and only
125 dnl if the type wctype_t is defined in <wchar.h> or in <wctype.h> if that
127 dnl HP-UX 11.00 declares all these in <wchar.h> and lacks <wctype.h>.
128 AC_CACHE_CHECK([for wctype_t], [gl_cv_type_wctype_t],
131 [[/* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be
132 included before <wchar.h>.
133 BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h>
134 must be included before <wchar.h>. */
145 [gl_cv_type_wctype_t=yes],
146 [gl_cv_type_wctype_t=no])
148 if test $gl_cv_type_wctype_t = no; then
152 dnl We assume that the wctrans() and towctrans() functions exist if and only
153 dnl if the type wctrans_t is defined in <wctype.h>.
154 AC_CACHE_CHECK([for wctrans_t], [gl_cv_type_wctrans_t],
157 [[/* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be
158 included before <wchar.h>.
159 BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h>
160 must be included before <wchar.h>. */
169 [gl_cv_type_wctrans_t=yes],
170 [gl_cv_type_wctrans_t=no])
172 if test $gl_cv_type_wctrans_t = no; then
176 dnl Check for declarations of anything we want to poison if the
177 dnl corresponding gnulib module is not in use.
178 gl_WARN_ON_USE_PREPARE([[
179 /* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
181 BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be
182 included before <wchar.h>. */
183 #if !(defined __GLIBC__ && !defined __UCLIBC__)
191 [wctype iswctype wctrans towctrans
195 AC_DEFUN([gl_WCTYPE_MODULE_INDICATOR],
197 dnl Use AC_REQUIRE here, so that the default settings are expanded once only.
198 AC_REQUIRE([gl_WCTYPE_H_DEFAULTS])
199 gl_MODULE_INDICATOR_SET_VARIABLE([$1])
200 dnl Define it also as a C macro, for the benefit of the unit tests.
201 gl_MODULE_INDICATOR_FOR_TESTS([$1])
204 AC_DEFUN([gl_WCTYPE_H_DEFAULTS],
206 GNULIB_ISWBLANK=0; AC_SUBST([GNULIB_ISWBLANK])
207 GNULIB_ISWDIGIT=0; AC_SUBST([GNULIB_ISWDIGIT])
208 GNULIB_ISWXDIGIT=0; AC_SUBST([GNULIB_ISWXDIGIT])
209 GNULIB_WCTYPE=0; AC_SUBST([GNULIB_WCTYPE])
210 GNULIB_ISWCTYPE=0; AC_SUBST([GNULIB_ISWCTYPE])
211 GNULIB_WCTRANS=0; AC_SUBST([GNULIB_WCTRANS])
212 GNULIB_TOWCTRANS=0; AC_SUBST([GNULIB_TOWCTRANS])
213 dnl Assume proper GNU behavior unless another module says otherwise.
214 HAVE_ISWBLANK=1; AC_SUBST([HAVE_ISWBLANK])
215 HAVE_WCTYPE_T=1; AC_SUBST([HAVE_WCTYPE_T])
216 HAVE_WCTRANS_T=1; AC_SUBST([HAVE_WCTRANS_T])
217 REPLACE_ISWBLANK=0; AC_SUBST([REPLACE_ISWBLANK])
218 REPLACE_ISWDIGIT=0; AC_SUBST([REPLACE_ISWDIGIT])
219 REPLACE_ISWXDIGIT=0; AC_SUBST([REPLACE_ISWXDIGIT])