]> git.saurik.com Git - bison.git/blame - m4/mbswidth.m4
Don't invoke unput from scan-gram.l; it ran into a POSIX-compatibility
[bison.git] / m4 / mbswidth.m4
CommitLineData
f61aad93 1#serial 9
c0acc0f5
PE
2
3dnl autoconf tests required for use of mbswidth.c
4dnl From Bruno Haible.
5
f61aad93 6AC_DEFUN([gl_MBSWIDTH],
c0acc0f5 7[
f61aad93
PE
8 AC_CHECK_HEADERS_ONCE(wchar.h wctype.h)
9 AC_CHECK_FUNCS_ONCE(isascii iswprint mbsinit)
10 AC_CHECK_FUNCS(iswcntrl wcwidth)
c0acc0f5
PE
11 jm_FUNC_MBRTOWC
12
13 AC_CACHE_CHECK([whether wcwidth is declared], ac_cv_have_decl_wcwidth,
14 [AC_TRY_COMPILE([
15/* AIX 3.2.5 declares wcwidth in <string.h>. */
16#if HAVE_STRING_H
17# include <string.h>
18#endif
19#if HAVE_WCHAR_H
20# include <wchar.h>
21#endif
22], [
23#ifndef wcwidth
24 char *p = (char *) wcwidth;
25#endif
26], ac_cv_have_decl_wcwidth=yes, ac_cv_have_decl_wcwidth=no)])
27 if test $ac_cv_have_decl_wcwidth = yes; then
28 ac_val=1
29 else
30 ac_val=0
31 fi
32 AC_DEFINE_UNQUOTED(HAVE_DECL_WCWIDTH, $ac_val,
33 [Define to 1 if you have the declaration of wcwidth(), and to 0 otherwise.])
34
35 AC_TYPE_MBSTATE_T
36])