]> git.saurik.com Git - bison.git/commitdiff
Add.
authorAkim Demaille <akim@epita.fr>
Thu, 27 Sep 2001 15:07:44 +0000 (15:07 +0000)
committerAkim Demaille <akim@epita.fr>
Thu, 27 Sep 2001 15:07:44 +0000 (15:07 +0000)
m4/mbrtowc.m4 [new file with mode: 0644]

diff --git a/m4/mbrtowc.m4 b/m4/mbrtowc.m4
new file mode 100644 (file)
index 0000000..8774391
--- /dev/null
@@ -0,0 +1,18 @@
+#serial 4
+
+dnl From Paul Eggert
+
+AC_DEFUN([jm_FUNC_MBRTOWC],
+[
+  AC_CACHE_CHECK([whether mbrtowc and mbstate_t are properly declared],
+    jm_cv_func_mbrtowc,
+    [AC_TRY_LINK(
+       [#include <wchar.h>],
+       [mbstate_t state; return ! (sizeof state && mbrtowc);],
+       jm_cv_func_mbrtowc=yes,
+       jm_cv_func_mbrtowc=no)])
+  if test $jm_cv_func_mbrtowc = yes; then
+    AC_DEFINE(HAVE_MBRTOWC, 1,
+      [Define to 1 if mbrtowc and mbstate_t are properly declared.])
+  fi
+])