From b09bc5088bed5174f1ffa3d4a51cef1cdd37292f Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Thu, 3 Oct 2013 02:39:18 -0700 Subject: build-sys: Check for type sighandler_t and use if present __sighandler_t is libc implementation specific and should not be relied upon. Instead, we fall back upon void (*)(int), as specified by POSIX. Signed-off-by: Karel Zak --- configure.ac | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 12d0babf7..93572fe8a 100644 --- a/configure.ac +++ b/configure.ac @@ -497,6 +497,10 @@ AC_CHECK_TYPES([cpu_set_t], [have_cpu_set_t=yes], [], [[ AM_CONDITIONAL([HAVE_CPU_SET_T], [test "x$have_cpu_set_t" = xyes]) +AC_CHECK_TYPES([sighandler_t], [], [], [[ +#include +]]) + AC_CHECK_DECLS([CPU_ALLOC], [], [], [[ #include ]]) -- cgit v1.2.3-55-g7522