diff options
author | Thomas Guyot-Sionnest <dermoth@aei.ca> | 2009-01-15 09:22:57 (GMT) |
---|---|---|
committer | Thomas Guyot-Sionnest <dermoth@aei.ca> | 2009-01-15 10:19:08 (GMT) |
commit | 71cdb52799220f8d9052643baf1d3e9836a9c755 (patch) | |
tree | 27aee97a35d9ab51f0d8f64a46690bd41a5f8c1b /gl/m4/mbsinit.m4 | |
parent | f7afa46586645e50498d8b2d0c67884f014dc3a4 (diff) | |
download | monitoring-plugins-71cdb52799220f8d9052643baf1d3e9836a9c755.tar.gz |
Sync with gnulib
Diffstat (limited to 'gl/m4/mbsinit.m4')
-rw-r--r-- | gl/m4/mbsinit.m4 | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gl/m4/mbsinit.m4 b/gl/m4/mbsinit.m4 new file mode 100644 index 0000000..03b055c --- /dev/null +++ b/gl/m4/mbsinit.m4 | |||
@@ -0,0 +1,30 @@ | |||
1 | # mbsinit.m4 serial 3 | ||
2 | dnl Copyright (C) 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_MBSINIT], | ||
8 | [ | ||
9 | AC_REQUIRE([gl_WCHAR_H_DEFAULTS]) | ||
10 | |||
11 | AC_REQUIRE([AC_TYPE_MBSTATE_T]) | ||
12 | gl_MBSTATE_T_BROKEN | ||
13 | if test $REPLACE_MBSTATE_T = 1; then | ||
14 | REPLACE_MBSINIT=1 | ||
15 | fi | ||
16 | AC_CHECK_FUNCS_ONCE([mbsinit]) | ||
17 | if test $ac_cv_func_mbsinit = no; then | ||
18 | HAVE_MBSINIT=0 | ||
19 | fi | ||
20 | if test $HAVE_MBSINIT = 0 || test $REPLACE_MBSINIT = 1; then | ||
21 | gl_REPLACE_WCHAR_H | ||
22 | AC_LIBOBJ([mbsinit]) | ||
23 | gl_PREREQ_MBSINIT | ||
24 | fi | ||
25 | ]) | ||
26 | |||
27 | # Prerequisites of lib/mbsinit.c. | ||
28 | AC_DEFUN([gl_PREREQ_MBSINIT], [ | ||
29 | : | ||
30 | ]) | ||