From: Ioan-Adrian Ratiu Date: Thu, 28 Jul 2016 22:19:37 +0000 (+0300) Subject: configure.ac: explicitely check stdint.h X-Git-Tag: dbus-1.10.10~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1bfde222926be624a30a6e4b2cdc2c5064a36298;p=thirdparty%2Fdbus.git configure.ac: explicitely check stdint.h Otherwise HAVE_STDINT_H will not be defined or the var will not be picked up from cache so builds could fail with errors like: | ../../dbus-1.10.8/dbus/dbus-internals.h:239:8: error: ‘uintptr_t’ undeclared (first use in this function) Signed-off-by: Ioan-Adrian Ratiu [smcv: fix Autoconf underquoting] Reviewed-by: Simon McVittie --- diff --git a/configure.ac b/configure.ac index cf5c5b9a2..a228d6348 100644 --- a/configure.ac +++ b/configure.ac @@ -699,6 +699,8 @@ AC_CHECK_HEADERS(byteswap.h) AC_CHECK_HEADERS(unistd.h) +AC_CHECK_HEADERS([stdint.h]) + AC_CHECK_HEADERS(ws2tcpip.h) AC_CHECK_HEADERS(alloca.h)