]> git.cworth.org Git - tar/blob - m4/wctype_h.m4
83daffc9c71110a7d2fe77cd6d40f69999676a4a
[tar] / m4 / wctype_h.m4
1 # wctype_h.m4 serial 5
2
3 dnl A placeholder for ISO C99 <wctype.h>, for platforms that lack it.
4
5 dnl Copyright (C) 2006-2010 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   if test $ac_cv_header_wctype_h = yes; then
35     if test $ac_cv_func_iswcntrl = yes; then
36       dnl Linux libc5 has an iswprint function that returns 0 for all arguments.
37       dnl The other functions are likely broken in the same way.
38       AC_CACHE_CHECK([whether iswcntrl works], [gl_cv_func_iswcntrl_works],
39         [
40           AC_RUN_IFELSE([AC_LANG_SOURCE([[
41                             #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_COMPILE_IFELSE([AC_LANG_PROGRAM([[#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     fi
56     gl_CHECK_NEXT_HEADERS([wctype.h])
57     HAVE_WCTYPE_H=1
58   else
59     HAVE_WCTYPE_H=0
60   fi
61   AC_SUBST([HAVE_WCTYPE_H])
62
63   if test "$gl_cv_func_iswcntrl_works" = no; then
64     REPLACE_ISWCNTRL=1
65   else
66     REPLACE_ISWCNTRL=0
67   fi
68   AC_SUBST([REPLACE_ISWCNTRL])
69 ])