From: Roland McGrath Date: Fri, 1 Aug 2008 01:06:31 +0000 (+0000) Subject: 2008-07-31 Roland McGrath X-Git-Tag: v4.5.18~21 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=639658b75493e752b2bccfa4c03c411a860a8912;p=strace 2008-07-31 Roland McGrath * configure.ac: Add AC_HEADER_STDBOOL. * defs.h [HAVE_STDBOOL_H]: #include . Fixes Debian##492774. --- diff --git a/configure.ac b/configure.ac index da98ebe2..0a622e30 100644 --- a/configure.ac +++ b/configure.ac @@ -158,6 +158,7 @@ AC_PROG_GCC_TRADITIONAL AC_PROG_INSTALL AC_C_CONST AC_HEADER_STDC +AC_HEADER_STDBOOL AC_HEADER_DIRENT AC_HEADER_STAT AC_CHECK_MEMBERS([struct stat.st_blksize, diff --git a/defs.h b/defs.h index 61fb41bb..df11dc6c 100644 --- a/defs.h +++ b/defs.h @@ -80,6 +80,10 @@ #include #include +#ifdef HAVE_STDBOOL_H +#include +#endif + #ifdef STDC_HEADERS #include #endif /* STDC_HEADERS */