diff options
author | Allen Winter <allen.winter@kdab.com> | 2015-05-19 19:44:09 -0400 |
---|---|---|
committer | Allen Winter <allen.winter@kdab.com> | 2015-05-19 19:44:09 -0400 |
commit | 92f39ba83116ee67ab43a43458e94542ee878fb3 (patch) | |
tree | 374dcd1e397340487290f69771bcd836149e5a65 /ConfigureChecks.cmake | |
parent | b6cb79f91e74c89877e5767e6810251df012f44b (diff) | |
download | libical-git-92f39ba83116ee67ab43a43458e94542ee878fb3.tar.gz |
use gmtime_r consistently (on Windows it is a wrapper on gmtime())
gmtime() on Windows is thread-safe.
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r-- | ConfigureChecks.cmake | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 00448dde..755a41db 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -4,11 +4,9 @@ check_include_files(dirent.h HAVE_DIRENT_H) check_include_files(endian.h HAVE_ENDIAN_H) check_include_files(inttypes.h HAVE_INTTYPES_H) check_include_files(pthread.h HAVE_PTHREAD_H) -check_include_files(stdint.h HAVE_STDINT_H) check_include_files(sys/endian.h HAVE_SYS_ENDIAN_H) check_include_files(sys/param.h HAVE_SYS_PARAM_H) check_include_files(sys/utsname.h HAVE_SYS_UTSNAME_H) -check_include_files(time.h HAVE_TIME_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) |