From 655a4b88d1f2a68f3dc2e46d70abf79b86202946 Mon Sep 17 00:00:00 2001 From: Jim Warner Date: Thu, 22 Sep 2011 04:10:05 -0500 Subject: [PATCH] build-sys: use AC_HEADER_STDBOOL in configure.ac The AC_CHECK_HEADER_STDBOOL, which was used earlier, requires autoconf 2.68 (2010-09-22), without great functional benefit in comparison AC_HEADER_STDBOOL. The only thing newer macro does is a problem for many user who has older autoconf in use. Reference: http://lists.gnu.org/archive/html/autoconf-commit/2011-02/msg00000.html Signed-off-by: Jim Warner Signed-off-by: Sami Kerola --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index b73f3687..bfba7e38 100644 --- a/configure.ac +++ b/configure.ac @@ -43,7 +43,7 @@ AC_CHECK_HEADERS([\ ]) # Checks for typedefs, structures, and compiler characteristics. -AC_CHECK_HEADER_STDBOOL +AC_HEADER_STDBOOL AC_CHECK_MEMBERS([struct stat.st_rdev]) AC_C_INLINE AC_C_RESTRICT