]> Dogcows Code - chaz/tar/commitdiff
Initial revision
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 17 Feb 2001 00:19:02 +0000 (00:19 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 17 Feb 2001 00:19:02 +0000 (00:19 +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..3e2269c
--- /dev/null
@@ -0,0 +1,19 @@
+#serial 1
+
+dnl From Paul Eggert
+
+AC_DEFUN(jm_FUNC_MBRTOWC,
+[
+  AC_MSG_CHECKING([whether mbrtowc is declared])
+  AC_CACHE_VAL(jm_cv_func_mbrtowc,
+    [AC_TRY_LINK(
+       [#include <wchar.h>],
+       [return !mbrtowc;],
+       [jm_cv_func_mbrtowc=yes],
+       [jm_cv_func_mbrtowc=no])])
+  if test $jm_cv_func_mbrtowc = yes; then
+    AC_MSG_RESULT(yes)
+    AC_DEFINE(HAVE_MBRTOWC, 1,
+      [Define to 1 if mbrtowc exists and is properly declared.])
+  fi
+])
This page took 0.024047 seconds and 4 git commands to generate.