From: Bartosz Golaszewski Date: Fri, 20 Jan 2017 14:57:54 +0000 (+0100) Subject: configure: check sys/poll.h availability X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=893dd2f6479bd6b82dc16c8ed8f4bf4d3469ffc5;p=qemu-gpiodev%2Flibgpiod.git configure: check sys/poll.h availability Signed-off-by: Bartosz Golaszewski --- 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])])