summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
Diffstat (limited to 'm4')
-rw-r--r--m4/man-strsignal.m424
1 files changed, 0 insertions, 24 deletions
diff --git a/m4/man-strsignal.m4 b/m4/man-strsignal.m4
deleted file mode 100644
index d97521d3..00000000
--- a/m4/man-strsignal.m4
+++ /dev/null
@@ -1,24 +0,0 @@
-# man-strsignal.m4 serial 1
-dnl Check for strsignal(). If not available, check for sys_siglist.
-AC_DEFUN([MAN_FUNC_STRSIGNAL],
-[
-AC_CACHE_CHECK([for strsignal], [man_cv_func_strsignal],
-[AC_LINK_IFELSE(
- [AC_LANG_PROGRAM(
- [[
-# define _GNU_SOURCE
-# include <string.h>
- ]],
- [[char *p = strsignal (1);]]
- )],
- [man_cv_func_strsignal=yes],
- [man_cv_func_strsignal=no])])
-if test "$man_cv_func_strsignal" = "yes"
-then
- AC_DEFINE([HAVE_STRSIGNAL], 1, [Define to 1 if you have the `strsignal' function.])
-fi
-if test "$man_cv_func_strsignal" = "no"
-then
- AC_DECL_SYS_SIGLIST
-fi
-])