From: Michael Jeanson Date: Thu, 8 Oct 2015 19:54:15 +0000 (-0400) Subject: Fix: Use proper macro to detect stdbool.h X-Git-Tag: v0.9.0~3 X-Git-Url: http://git.liburcu.org/?p=urcu.git;a=commitdiff_plain;h=7dea28e7c3827cfcfaea71caa81648ea8a19cfe5;hp=27d5e30639728ffe280ece6ca6037f6c608ed7f1 Fix: Use proper macro to detect stdbool.h Using AC_HEADER_STDBOOL make more sense since we don't use gnulib and it works with older autoconf versions. Signed-off-by: Michael Jeanson Signed-off-by: Mathieu Desnoyers --- diff --git a/configure.ac b/configure.ac index 6d7f6ce..e097714 100644 --- a/configure.ac +++ b/configure.ac @@ -93,7 +93,7 @@ AC_CHECK_FUNCS([ \ ]) # Check for headers -AC_CHECK_HEADER_STDBOOL +AC_HEADER_STDBOOL AC_CHECK_HEADERS([ \ limits.h \ stddef.h \