diff options
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 | ]) | ||