summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorIoan-Adrian Ratiu <adrian.ratiu@ni.com>2016-07-29 01:19:37 +0300
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2016-07-29 19:12:59 +0100
commit1bfde222926be624a30a6e4b2cdc2c5064a36298 (patch)
treee8fab2e215f8318c7433773852e9b62060d2f1b2 /configure.ac
parentbed268845241ac0315b5684adb82c6994d3acaa3 (diff)
downloaddbus-1bfde222926be624a30a6e4b2cdc2c5064a36298.tar.gz
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 <adrian.ratiu@ni.com> [smcv: fix Autoconf underquoting] Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index cf5c5b9a..a228d634 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)