Detect wcwidth bug on OpenBSD 4.0.
[pspp] / m4 / wcwidth.m4
1 # wcwidth.m4 serial 14
2 dnl Copyright (C) 2006-2008 Free Software Foundation, Inc.
3 dnl This file is free software; the Free Software Foundation
4 dnl gives unlimited permission to copy and/or distribute it,
5 dnl with or without modifications, as long as this notice is preserved.
6
7 AC_DEFUN([gl_FUNC_WCWIDTH],
8 [
9   AC_REQUIRE([gl_WCHAR_H_DEFAULTS])
10
11   dnl Persuade glibc <wchar.h> to declare wcwidth().
12   AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
13
14   AC_REQUIRE([gt_TYPE_WCHAR_T])
15   AC_REQUIRE([gt_TYPE_WINT_T])
16
17   AC_CHECK_HEADERS_ONCE([wchar.h])
18   AC_CHECK_FUNCS_ONCE([wcwidth])
19
20   AC_CHECK_DECLS([wcwidth], [], [], [
21 /* AIX 3.2.5 declares wcwidth in <string.h>. */
22 #include <string.h>
23 /* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
24    <wchar.h>.
25    BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be included
26    before <wchar.h>.  */
27 #include <stddef.h>
28 #include <stdio.h>
29 #include <time.h>
30 #include <wchar.h>
31 ])
32   if test $ac_cv_have_decl_wcwidth != yes; then
33     HAVE_DECL_WCWIDTH=0
34   fi
35
36   if test $ac_cv_func_wcwidth = no; then
37     REPLACE_WCWIDTH=1
38   else
39     dnl On MacOS X 10.3, wcwidth(0x0301) (COMBINING ACUTE ACCENT) returns 1.
40     dnl On OSF/1 5.1, wcwidth(0x200B) (ZERO WIDTH SPACE) returns 1.
41     dnl On OpenBSD 4.0, wcwidth(0x3000) (IDEOGRAPHIC SPACE) returns 0.
42     dnl This leads to bugs in 'ls' (coreutils).
43     AC_CACHE_CHECK([whether wcwidth works reasonably in UTF-8 locales],
44       [gl_cv_func_wcwidth_works],
45       [
46         AC_TRY_RUN([
47 #include <locale.h>
48 /* AIX 3.2.5 declares wcwidth in <string.h>. */
49 #include <string.h>
50 /* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
51    <wchar.h>.
52    BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be included
53    before <wchar.h>.  */
54 #include <stddef.h>
55 #include <stdio.h>
56 #include <time.h>
57 #include <wchar.h>
58 #if !HAVE_DECL_WCWIDTH
59 extern
60 # ifdef __cplusplus
61 "C"
62 # endif
63 int wcwidth (int);
64 #endif
65 int main ()
66 {
67   if (setlocale (LC_ALL, "fr_FR.UTF-8") != NULL)
68     if (wcwidth (0x0301) > 0 || wcwidth (0x200B) > 0 || wcwidth (0x3000) <= 1)
69       return 1;
70   return 0;
71 }], [gl_cv_func_wcwidth_works=yes], [gl_cv_func_wcwidth_works=no],
72           [gl_cv_func_wcwidth_works="guessing no"])
73       ])
74     case "$gl_cv_func_wcwidth_works" in
75       *yes) ;;
76       *no) REPLACE_WCWIDTH=1 ;;
77     esac
78   fi
79   if test $REPLACE_WCWIDTH = 1; then
80     AC_LIBOBJ([wcwidth])
81   fi
82
83   if test $REPLACE_WCWIDTH = 1 || test $HAVE_DECL_WCWIDTH = 0; then
84     WCHAR_H=wchar.h
85   fi
86 ])