1eb55a412f39c470eb0371264f872b43da1d6b0f
[gnulib.git] / m4 / wctype.m4
1 # wctype.m4 serial 3
2
3 dnl A placeholder for ISO C99 <wctype.h>, for platforms that lack it.
4
5 dnl Copyright (C) 2006-2008 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.
9
10 dnl Written by Paul Eggert.
11
12 AC_DEFUN([gl_WCTYPE_H],
13 [
14   AC_REQUIRE([AC_PROG_CC])
15   AC_REQUIRE([AC_CANONICAL_HOST])
16   AC_CHECK_FUNCS_ONCE([iswcntrl])
17   if test $ac_cv_func_iswcntrl = yes; then
18     HAVE_ISWCNTRL=1
19   else
20     HAVE_ISWCNTRL=0
21   fi
22   AC_SUBST([HAVE_ISWCNTRL])
23   AC_CHECK_HEADERS_ONCE([wctype.h])
24   AC_REQUIRE([AC_C_INLINE])
25
26   AC_REQUIRE([gt_TYPE_WINT_T])
27   if test $gt_cv_c_wint_t = yes; then
28     HAVE_WINT_T=1
29   else
30     HAVE_WINT_T=0
31   fi
32   AC_SUBST([HAVE_WINT_T])
33
34   WCTYPE_H=wctype.h
35   if test $ac_cv_header_wctype_h = yes; then
36     if test $ac_cv_func_iswcntrl = yes; then
37       dnl Linux libc5 has an iswprint function that returns 0 for all arguments.
38       dnl The other functions are likely broken in the same way.
39       AC_CACHE_CHECK([whether iswcntrl works], [gl_cv_func_iswcntrl_works],
40         [
41           AC_TRY_RUN([#include <stddef.h>
42                       #include <stdio.h>
43                       #include <time.h>
44                       #include <wchar.h>
45                       #include <wctype.h>
46                       int main () { return iswprint ('x') == 0; }],
47             [gl_cv_func_iswcntrl_works=yes], [gl_cv_func_iswcntrl_works=no],
48             [AC_TRY_COMPILE([#include <stdlib.h>
49                           #if __GNU_LIBRARY__ == 1
50                           Linux libc5 i18n is broken.
51                           #endif], [],
52               [gl_cv_func_iswcntrl_works=yes], [gl_cv_func_iswcntrl_works=no])
53             ])
54         ])
55       if test $gl_cv_func_iswcntrl_works = yes; then
56         case "$host_os" in
57           mingw*)
58             dnl On mingw, towlower and towupper return random high 16 bits.
59             ;;
60           *)
61             dnl iswcntrl works. towlower and towupper work as well.
62             WCTYPE_H=
63             ;;
64         esac
65       fi
66     fi
67     dnl Compute NEXT_WCTYPE_H even if WCTYPE_H is empty,
68     dnl for the benefit of builds from non-distclean directories.
69     gl_CHECK_NEXT_HEADERS([wctype.h])
70     HAVE_WCTYPE_H=1
71   else
72     HAVE_WCTYPE_H=0
73   fi
74   AC_SUBST([HAVE_WCTYPE_H])
75   AC_SUBST([WCTYPE_H])
76
77   if test "$gl_cv_func_iswcntrl_works" = no; then
78     REPLACE_ISWCNTRL=1
79   else
80     REPLACE_ISWCNTRL=0
81   fi
82   AC_SUBST([REPLACE_ISWCNTRL])
83 ])