From 893dd2f6479bd6b82dc16c8ed8f4bf4d3469ffc5 Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Fri, 20 Jan 2017 15:57:54 +0100 Subject: [PATCH] configure: check sys/poll.h availability Signed-off-by: Bartosz Golaszewski --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index 10d7083..4d458fe 100644 --- a/configure.ac +++ b/configure.ac @@ -58,6 +58,7 @@ AC_FUNC_MALLOC AC_CHECK_HEADERS([getopt.h], [], [AC_MSG_ERROR([getopt.h header not found])]) AC_CHECK_HEADERS([stdint.h], [], [AC_MSG_ERROR([stdint.h header not found])]) AC_CHECK_HEADERS([dirent.h], [], [AC_MSG_ERROR([dirent.h header not found])]) +AC_CHECK_HEADERS([sys/poll.h], [], [AC_MSG_ERROR([sys/poll.h header not found])]) AC_CHECK_HEADERS([linux/gpio.h], [], [AC_MSG_ERROR([linux/gpio.h header not found])]) AC_CHECK_HEADERS([sys/signalfd.h], [], [AC_MSG_ERROR([sys/signalfd.h header not found])]) -- 2.30.2