aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJia Tan <jiat0218@gmail.com>2023-09-12 22:34:06 +0800
committerJia Tan <jiat0218@gmail.com>2023-09-12 22:34:06 +0800
commit5d691fe58286b92d704c0dc5cd0c4df22881c6c6 (patch)
tree9dbfb16b991bc399d30b34cf2197e59b6c05f7aa
parentxz: Refactor thousand separator detection and disable it on MSVC. (diff)
downloadxz-5d691fe58286b92d704c0dc5cd0c4df22881c6c6.tar.xz
CMake: Fix unconditionally defining HAVE_CLOCK_MONOTONIC.
If HAVE_CLOCK_GETTIME was defined, then HAVE_CLOCK_MONOTONIC was always added as a compile definition even if the check for it failed.
-rw-r--r--CMakeLists.txt8
1 files changed, 3 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index c69b135e..63dd59f7 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -168,13 +168,11 @@ if(NOT WIN32 AND NOT DEFINED HAVE_CLOCK_GETTIME)
endif()
endif()
if(HAVE_CLOCK_GETTIME)
+ add_compile_definitions(HAVE_CLOCK_GETTIME)
+
# Check if CLOCK_MONOTONIC is available for clock_gettime().
check_symbol_exists(CLOCK_MONOTONIC time.h HAVE_CLOCK_MONOTONIC)
-
- add_compile_definitions(
- HAVE_CLOCK_GETTIME
- HAVE_CLOCK_MONOTONIC
- )
+ tuklib_add_definition_if(ALL HAVE_CLOCK_MONOTONIC)
endif()
endif()