summaryrefslogtreecommitdiff
path: root/m4/mbtowc.m4
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2011-02-22 14:01:29 +0100
committerBruno Haible <bruno@clisp.org>2011-02-22 14:32:18 +0100
commit82e60758d286043fbeca68ac04f782bc46b4bc34 (patch)
treec8069aed93463c7d4fc795cc4aee189031d9a581 /m4/mbtowc.m4
parentc147d9fffb241cfdd3b4524665ce2b3009568747 (diff)
downloadgnulib-82e60758d286043fbeca68ac04f782bc46b4bc34.tar.gz
New module 'mbtowc'.
* lib/stdlib.in.h (mbtowc): New declaration. * lib/mbtowc.c: New file. * lib/mbtowc-impl.h: New file, from libutf8 with modifications * m4/mbtowc.m4: New file. * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_MBTOWC, REPLACE_MBTOWC. * modules/stdlib (Makefile.am): Substitute GNULIB_MBTOWC, REPLACE_MBTOWC. * modules/mbtowc: New file. * tests/test-stdlib-c++.cc: Test signature of mbtowc. * doc/posix-functions/mbtowc.texi: Mention the new module. * modules/btowc (Depends-on): Add mbtowc.
Diffstat (limited to 'm4/mbtowc.m4')
-rw-r--r--m4/mbtowc.m423
1 files changed, 23 insertions, 0 deletions
diff --git a/m4/mbtowc.m4 b/m4/mbtowc.m4
new file mode 100644
index 0000000000..9215892f6f
--- /dev/null
+++ b/m4/mbtowc.m4
@@ -0,0 +1,23 @@
+# mbtowc.m4 serial 1
+dnl Copyright (C) 2011 Free Software Foundation, Inc.
+dnl This file is free software; the Free Software Foundation
+dnl gives unlimited permission to copy and/or distribute it,
+dnl with or without modifications, as long as this notice is preserved.
+
+AC_DEFUN([gl_FUNC_MBTOWC],
+[
+ AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
+
+ if false; then
+ REPLACE_MBTOWC=1
+ fi
+ if test $REPLACE_MBTOWC = 1; then
+ AC_LIBOBJ([mbtowc])
+ gl_PREREQ_MBTOWC
+ fi
+])
+
+# Prerequisites of lib/mbtowc.c.
+AC_DEFUN([gl_PREREQ_MBTOWC], [
+ :
+])