diff options
Diffstat (limited to 'gl/m4/mbsinit.m4')
-rw-r--r-- | gl/m4/mbsinit.m4 | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/gl/m4/mbsinit.m4 b/gl/m4/mbsinit.m4 index 03b055cd..46c106fc 100644 --- a/gl/m4/mbsinit.m4 +++ b/gl/m4/mbsinit.m4 | |||
@@ -1,5 +1,5 @@ | |||
1 | # mbsinit.m4 serial 3 | 1 | # mbsinit.m4 serial 4 |
2 | dnl Copyright (C) 2008 Free Software Foundation, Inc. | 2 | dnl Copyright (C) 2008, 2010 Free Software Foundation, Inc. |
3 | dnl This file is free software; the Free Software Foundation | 3 | dnl This file is free software; the Free Software Foundation |
4 | dnl gives unlimited permission to copy and/or distribute it, | 4 | dnl gives unlimited permission to copy and/or distribute it, |
5 | dnl with or without modifications, as long as this notice is preserved. | 5 | dnl with or without modifications, as long as this notice is preserved. |
@@ -10,12 +10,14 @@ AC_DEFUN([gl_FUNC_MBSINIT], | |||
10 | 10 | ||
11 | AC_REQUIRE([AC_TYPE_MBSTATE_T]) | 11 | AC_REQUIRE([AC_TYPE_MBSTATE_T]) |
12 | gl_MBSTATE_T_BROKEN | 12 | gl_MBSTATE_T_BROKEN |
13 | if test $REPLACE_MBSTATE_T = 1; then | 13 | |
14 | REPLACE_MBSINIT=1 | ||
15 | fi | ||
16 | AC_CHECK_FUNCS_ONCE([mbsinit]) | 14 | AC_CHECK_FUNCS_ONCE([mbsinit]) |
17 | if test $ac_cv_func_mbsinit = no; then | 15 | if test $ac_cv_func_mbsinit = no; then |
18 | HAVE_MBSINIT=0 | 16 | HAVE_MBSINIT=0 |
17 | else | ||
18 | if test $REPLACE_MBSTATE_T = 1; then | ||
19 | REPLACE_MBSINIT=1 | ||
20 | fi | ||
19 | fi | 21 | fi |
20 | if test $HAVE_MBSINIT = 0 || test $REPLACE_MBSINIT = 1; then | 22 | if test $HAVE_MBSINIT = 0 || test $REPLACE_MBSINIT = 1; then |
21 | gl_REPLACE_WCHAR_H | 23 | gl_REPLACE_WCHAR_H |