mirror of
https://github.com/curl/curl.git
synced 2026-07-22 18:57:15 +03:00
include <sys/types.h> when checking availability of the bool type
This commit is contained in:
parent
4937281ddc
commit
2a6a22a3b0
2 changed files with 6 additions and 0 deletions
|
|
@ -376,6 +376,9 @@ AC_CHECK_TYPE([bool],[
|
|||
AC_DEFINE(HAVE_BOOL_T, 1,
|
||||
[Define to 1 if bool is an available type.])
|
||||
], ,[
|
||||
#ifdef HAVE_SYS_TYPES_H
|
||||
#include <sys/types.h>
|
||||
#endif
|
||||
#ifdef HAVE_STDBOOL_H
|
||||
#include <stdbool.h>
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -1729,6 +1729,9 @@ AC_CHECK_TYPE([bool],[
|
|||
AC_DEFINE(HAVE_BOOL_T, 1,
|
||||
[Define to 1 if bool is an available type.])
|
||||
], ,[
|
||||
#ifdef HAVE_SYS_TYPES_H
|
||||
#include <sys/types.h>
|
||||
#endif
|
||||
#ifdef HAVE_STDBOOL_H
|
||||
#include <stdbool.h>
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue