From d00150cbf28726256949adb63c26536bbab61652 Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Fri, 20 Jan 2017 17:23:40 +0100 Subject: [PATCH] configure: don't check stdint.h We probably have it if AC_HEADER_STDC succeeded. Signed-off-by: Bartosz Golaszewski --- configure.ac | 1 - 1 file changed, 1 deletion(-) 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])]) -- 2.30.2