From: Bartosz Golaszewski Date: Fri, 20 Jan 2017 16:23:40 +0000 (+0100) Subject: configure: don't check stdint.h X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=d00150cbf28726256949adb63c26536bbab61652;p=qemu-gpiodev%2Flibgpiod.git configure: don't check stdint.h We probably have it if AC_HEADER_STDC succeeded. Signed-off-by: Bartosz Golaszewski --- diff --git a/configure.ac b/configure.ac index 0b5f15b..8e0fd4f 100644 --- a/configure.ac +++ b/configure.ac @@ -37,7 +37,6 @@ AC_CHECK_FUNC([asprintf], [], [AC_MSG_ERROR([asprintf() unavailable])]) AC_CHECK_FUNC([readdir], [], [AC_MSG_ERROR([readdir() unavailable])]) AC_CHECK_FUNC([ppoll], [], [AC_MSG_ERROR([ppoll() unavailable])]) 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])])