summaryrefslogtreecommitdiff
path: root/ConfigureChecks.cmake
diff options
context:
space:
mode:
authorAllen Winter <allen.winter@kdab.com>2020-10-31 17:38:01 -0400
committerAllen Winter <allen.winter@kdab.com>2020-10-31 17:38:01 -0400
commita3308a23912bba2db654a8c456165c31888cc897 (patch)
treebf27e1bf5971b87cfe119d3ba36aca16079528c6 /ConfigureChecks.cmake
parent72655371c4e1d48bfdefa61b0a0de3d62cb3149b (diff)
downloadlibical-git-a3308a23912bba2db654a8c456165c31888cc897.tar.gz
Fix build with icu-68.1
Use stdbool.h to define true and false when possible Issue#448
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r--ConfigureChecks.cmake1
1 files changed, 1 insertions, 0 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake
index e4d0e2ec..bba33fa9 100644
--- a/ConfigureChecks.cmake
+++ b/ConfigureChecks.cmake
@@ -10,6 +10,7 @@ check_include_files(sys/utsname.h HAVE_SYS_UTSNAME_H)
check_include_files(fcntl.h HAVE_FCNTL_H)
check_include_files(unistd.h HAVE_UNISTD_H)
check_include_files(wctype.h HAVE_WCTYPE_H)
+check_include_files(stdbool.h HAVE_STDBOOL_H)
include(CheckFunctionExists)
if(WIN32 AND MSVC)