1 # strerror_r.m4 serial 20
2 dnl Copyright (C) 2002, 2007-2020 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_R],
9 AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
10 AC_REQUIRE([gl_FUNC_STRERROR_R_WORKS])
12 dnl Persuade Solaris <string.h> to declare strerror_r().
13 AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
15 dnl Some systems don't declare strerror_r() if _THREAD_SAFE and _REENTRANT
17 AC_CHECK_DECLS_ONCE([strerror_r])
18 if test $ac_cv_have_decl_strerror_r = no; then
19 HAVE_DECL_STRERROR_R=0
22 if test $ac_cv_func_strerror_r = yes; then
23 if test "$ERRNO_H:$REPLACE_STRERROR_0" = :0; then
24 if test $gl_cv_func_strerror_r_posix_signature = yes; then
25 case "$gl_cv_func_strerror_r_works" in
26 dnl The system's strerror_r has bugs. Replace it.
27 *no) REPLACE_STRERROR_R=1 ;;
30 dnl The system's strerror_r() has a wrong signature. Replace it.
34 dnl The system's strerror_r() cannot know about the new errno values we
35 dnl add to <errno.h>, or any fix for strerror(0). Replace it.
41 # Prerequisites of lib/strerror_r.c.
42 AC_DEFUN([gl_PREREQ_STRERROR_R], [
43 dnl glibc >= 2.3.4 and cygwin 1.7.9 have a function __xpg_strerror_r.
44 AC_CHECK_FUNCS_ONCE([__xpg_strerror_r])
45 AC_CHECK_FUNCS_ONCE([catgets])
46 AC_CHECK_FUNCS_ONCE([snprintf])
49 # Detect if strerror_r works, but without affecting whether a replacement
50 # strerror_r will be used.
51 AC_DEFUN([gl_FUNC_STRERROR_R_WORKS],
53 AC_REQUIRE([gl_HEADER_ERRNO_H])
54 AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
55 AC_REQUIRE([gl_FUNC_STRERROR_0])
57 AC_CHECK_FUNCS_ONCE([strerror_r])
58 if test $ac_cv_func_strerror_r = yes; then
59 if test "$ERRNO_H:$REPLACE_STRERROR_0" = :0; then
60 dnl The POSIX prototype is: int strerror_r (int, char *, size_t);
61 dnl glibc, Cygwin: char *strerror_r (int, char *, size_t);
62 dnl AIX 5.1, OSF/1 5.1: int strerror_r (int, char *, int);
63 AC_CACHE_CHECK([for strerror_r with POSIX signature],
64 [gl_cv_func_strerror_r_posix_signature],
68 int strerror_r (int, char *, size_t);
71 [gl_cv_func_strerror_r_posix_signature=yes],
72 [gl_cv_func_strerror_r_posix_signature=no])
74 if test $gl_cv_func_strerror_r_posix_signature = yes; then
75 dnl AIX 6.1 strerror_r fails by returning -1, not an error number.
76 dnl HP-UX 11.31 strerror_r always fails when the buffer length argument
78 dnl FreeBSD 8.s strerror_r claims failure on 0
79 dnl Mac OS X 10.5 strerror_r treats 0 like -1
80 dnl Solaris 10 strerror_r corrupts errno on failure
81 AC_CACHE_CHECK([whether strerror_r works],
82 [gl_cv_func_strerror_r_works],
90 if (strerror_r (EACCES, buf, 0) < 0)
93 if (strerror_r (EACCES, buf, sizeof buf) != 0)
95 strcpy (buf, "Unknown");
96 if (strerror_r (0, buf, sizeof buf) != 0)
100 if (strstr (buf, "nknown") || strstr (buf, "ndefined"))
104 if (strerror_r (-3, buf, sizeof buf) < 0)
112 [gl_cv_func_strerror_r_works=yes],
113 [gl_cv_func_strerror_r_works=no],
118 aix*) gl_cv_func_strerror_r_works="guessing no";;
120 hpux*) gl_cv_func_strerror_r_works="guessing no";;
121 # Guess no on BSD variants.
122 *bsd*) gl_cv_func_strerror_r_works="guessing no";;
123 # Guess yes otherwise.
124 *) gl_cv_func_strerror_r_works="guessing yes";;
130 dnl The system's strerror() has a wrong signature.
131 dnl glibc >= 2.3.4 and cygwin 1.7.9 have a function __xpg_strerror_r.
132 AC_CHECK_FUNCS_ONCE([__xpg_strerror_r])
133 dnl In glibc < 2.14, __xpg_strerror_r does not populate buf on failure.
134 dnl In cygwin < 1.7.10, __xpg_strerror_r clobbers strerror's buffer.
135 if test $ac_cv_func___xpg_strerror_r = yes; then
136 AC_CACHE_CHECK([whether __xpg_strerror_r works],
137 [gl_cv_func_strerror_r_works],
146 int __xpg_strerror_r(int, char *, size_t);
151 char *str = strerror (-1);
153 if (__xpg_strerror_r (-2, buf, 1) == 0)
157 __xpg_strerror_r (-2, buf, 256);
158 if (strcmp (str, copy))
162 [gl_cv_func_strerror_r_works=yes],
163 [gl_cv_func_strerror_r_works=no],
164 [dnl Guess no on all platforms that have __xpg_strerror_r,
165 dnl at least until fixed glibc and cygwin are more common.
166 gl_cv_func_strerror_r_works="$gl_cross_guess_normal"