From e2f4d0fd3ca51b3809b4982b4e5241ac5c477c5d Mon Sep 17 00:00:00 2001 From: Jan Beich Date: Thu, 28 Jan 2016 16:43:28 +0100 Subject: Try to autodetect ppoll(2) instead of hardcoding the list of platforms lacking it thus using fallback. --- configure.ac | 1 + src/main.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 6c2481a..d204ba0 100644 --- a/configure.ac +++ b/configure.ac @@ -96,6 +96,7 @@ AC_TYPE_UINT8_T AC_FUNC_MALLOC AC_FUNC_REALLOC AC_CHECK_FUNCS([strcasecmp strdup strerror strndup stpcpy]) +AC_CHECK_FUNCS([ppoll]) # Check for operating system AC_MSG_CHECKING([whether to enable WIN32 build settings]) diff --git a/src/main.c b/src/main.c index 4f792c4..a276e90 100644 --- a/src/main.c +++ b/src/main.c @@ -159,7 +159,7 @@ static void set_signal_handlers(void) sigaction(SIGUSR2, &sa, NULL); } -#if defined(__FreeBSD__) || defined(__APPLE__) +#ifndef HAVE_PPOLL static int ppoll(struct pollfd *fds, nfds_t nfds, const struct timespec *timeout, const sigset_t *sigmask) { int ready; -- cgit v1.1-32-gdbae