2 dnl Copyright (C) 2002, 2007 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.
7 AC_DEFUN([gl_FUNC_STRERROR],
9 AC_REQUIRE([gl_FUNC_STRERROR_SEPARATE])
10 if test $gl_cv_func_working_strerror = no; then
12 AC_DEFINE_UNQUOTED([REPLACE_STRERROR], [$REPLACE_STRERROR],
13 [Define this to 1 if strerror is broken.])
17 # Like gl_FUNC_STRERROR, except prepare for separate compilation (no AC_LIBOBJ).
18 AC_DEFUN([gl_FUNC_STRERROR_SEPARATE],
20 AC_CHECK_FUNCS_ONCE([strerror])
22 if test $ac_cv_func_strerror = no; then
24 gl_cv_func_working_strerror=no
26 AC_CACHE_CHECK([for working strerror function],
27 [gl_cv_func_working_strerror],
31 ], [return !*strerror (-2);])],
32 [gl_cv_func_working_strerror=yes], [gl_cv_func_working_strerror=no],
33 [dnl assume success except on Interix
34 AC_EGREP_CPP([assuming success], [
38 ], [gl_cv_func_working_strerror=yes],
39 [gl_cv_func_working_strerror=no])])])
40 if test $gl_cv_func_working_strerror = no ; then
46 # Prerequisites of lib/strerror.c.
47 AC_DEFUN([gl_PREREQ_STRERROR], [