summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2008-02-17 17:14:11 +0000
committerColin Watson <cjwatson@debian.org>2008-02-17 17:14:11 +0000
commita70ebb62af3d8c7d60cbc199dd6ea068793a1182 (patch)
tree00782588bfa791ee7baa925e516f92c8a11768b5 /m4
parentfb10c00e05d17cdbe8275c344b89b7c3fc606896 (diff)
* gnulib: Import the strsignal module.
* lib/pipeline.c (pipeline_wait): Call strsignal rather than xstrsignal. * lib/xstrsignal.c: Remove. * lib/README (xstrsignal): Remove. * lib/Makefile.am (libman_a_SOURCES): Remove xstrsignal.c. * m4/man-strsignal.m4: Remove. * configure.ac (MAN_FUNC_STRSIGNAL): Remove.
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
-])