]> sjero.net Git - wget/blob - m4/wctype.m4
mass change: update copyright years.
[wget] / m4 / wctype.m4
1 # wctype.m4 serial 2
2
3 dnl A placeholder for ISO C99 <wctype.h>, for platforms that lack it.
4
5 dnl Copyright (C) 2006, 2007, 2008, 2010, 2011 Free Software Foundation,
6 dnl Inc.
7 dnl This file is free software; the Free Software Foundation
8 dnl gives unlimited permission to copy and/or distribute it,
9 dnl with or without modifications, as long as this notice is preserved.
10
11 dnl Written by Paul Eggert.
12
13 AC_DEFUN([gl_WCTYPE_H],
14 [
15   AC_REQUIRE([AC_PROG_CC])
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         WCTYPE_H=
57       fi
58     fi
59     dnl Compute NEXT_WCTYPE_H even if WCTYPE_H is empty,
60     dnl for the benefit of builds from non-distclean directories.
61     gl_CHECK_NEXT_HEADERS([wctype.h])
62     HAVE_WCTYPE_H=1
63   else
64     HAVE_WCTYPE_H=0
65   fi
66   AC_SUBST([HAVE_WCTYPE_H])
67   AC_SUBST([WCTYPE_H])
68
69   if test "$gl_cv_func_iswcntrl_works" = no; then
70     REPLACE_ISWCNTRL=1
71   else
72     REPLACE_ISWCNTRL=0
73   fi
74   AC_SUBST([REPLACE_ISWCNTRL])
75 ])