From: Florian Forster Date: Thu, 12 Jun 2008 09:40:10 +0000 (+0200) Subject: Build system: Check for and include . X-Git-Tag: collectd-4.5.0~117^2~7 X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=fbf19197157cee85e6b10de37dffdb462ebeff12;p=collectd.git Build system: Check for and include . --- diff --git a/configure.in b/configure.in index 381cc4d8..ebde3b5d 100644 --- a/configure.in +++ b/configure.in @@ -57,7 +57,7 @@ AC_HEADER_STDC AC_HEADER_SYS_WAIT AC_HEADER_DIRENT -AC_CHECK_HEADERS(stdint.h stdio.h errno.h math.h stdarg.h syslog.h fcntl.h signal.h assert.h sys/types.h sys/socket.h sys/select.h poll.h netdb.h arpa/inet.h sys/resource.h sys/param.h kstat.h regex.h sys/ioctl.h endian.h sys/isa_defs.h) +AC_CHECK_HEADERS(stdio.h stdint.h stdbool.h errno.h math.h stdarg.h syslog.h fcntl.h signal.h assert.h sys/types.h sys/socket.h sys/select.h poll.h netdb.h arpa/inet.h sys/resource.h sys/param.h kstat.h regex.h sys/ioctl.h endian.h sys/isa_defs.h) # For ping library AC_CHECK_HEADERS(netinet/in_systm.h, [], [], diff --git a/src/collectd.h b/src/collectd.h index 0ccf5336..0df763ec 100644 --- a/src/collectd.h +++ b/src/collectd.h @@ -56,6 +56,9 @@ #if HAVE_STDINT_H # include #endif +#if HAVE_STDBOOL_H +# include +#endif #if HAVE_UNISTD_H # include #endif