Imported Upstream version 1.4.16
[platform/upstream/m4.git] / m4 / strsignal.m4
1 # strsignal.m4 serial 5
2 dnl Copyright (C) 2008-2011 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_STRSIGNAL],
8 [
9   dnl Persuade glibc <string.h> to declare strsignal().
10   AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
11
12   AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
13   AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
14
15   AC_CHECK_DECLS_ONCE([strsignal])
16   if test $ac_cv_have_decl_strsignal = no; then
17     HAVE_DECL_STRSIGNAL=0
18   fi
19
20   AC_CHECK_FUNCS([strsignal])
21   if test $ac_cv_func_strsignal = yes; then
22     dnl Check if strsignal behaves reasonably for out-of-range signal numbers.
23     dnl On Solaris it returns NULL; on AIX 5.1 it returns (char *) -1.
24     AC_CACHE_CHECK([whether strsignal always returns a string],
25       [gl_cv_func_working_strsignal],
26       [AC_RUN_IFELSE(
27          [AC_LANG_PROGRAM(
28             [[#include <string.h>
29 #include <unistd.h> /* NetBSD 5.0 declares it in wrong header. */
30             ]],
31             [[int result = 0;
32               char *s = strsignal (-1);
33               if (s == (char *) 0)
34                 result |= 1;
35               if (s == (char *) -1)
36                 result |= 2;
37               return result;
38             ]])],
39          [gl_cv_func_working_strsignal=yes],
40          [gl_cv_func_working_strsignal=no],
41          [case "$host_os" in
42             solaris* | aix*) gl_cv_func_working_strsignal=no;;
43             *)               gl_cv_func_working_strsignal="guessing yes";;
44           esac])])
45   else
46     gl_cv_func_working_strsignal=no
47   fi
48
49   if test "$gl_cv_func_working_strsignal" = no; then
50     if test $ac_cv_func_strsignal = yes; then
51       REPLACE_STRSIGNAL=1
52     fi
53     AC_LIBOBJ([strsignal])
54     gl_PREREQ_STRSIGNAL
55   fi
56 ])
57
58 # Prerequisites of lib/strsignal.c.
59 AC_DEFUN([gl_PREREQ_STRSIGNAL], [
60   AC_REQUIRE([AC_DECL_SYS_SIGLIST])
61   AC_CHECK_DECLS([_sys_siglist], [], [], [#include <signal.h>])
62 ])