mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
CMake: Check for clock_gettime() even on Windows.
This mirrors configure.ac although currently MinGW-w64 builds don't use clock_gettime() even if it is found.
This commit is contained in:
parent
1c1a8c3ee4
commit
680e52cdd0
1 changed files with 19 additions and 21 deletions
|
@ -151,7 +151,6 @@ tuklib_integer(ALL)
|
|||
|
||||
# Check for clock_gettime(). Do this before checking for threading so
|
||||
# that we know there if CLOCK_MONOTONIC is available.
|
||||
if(NOT WIN32)
|
||||
check_symbol_exists(clock_gettime time.h HAVE_CLOCK_GETTIME)
|
||||
|
||||
if(NOT HAVE_CLOCK_GETTIME)
|
||||
|
@ -177,7 +176,6 @@ if(NOT WIN32)
|
|||
check_symbol_exists(CLOCK_MONOTONIC time.h HAVE_CLOCK_MONOTONIC)
|
||||
tuklib_add_definition_if(ALL HAVE_CLOCK_MONOTONIC)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# Options for new enough GCC or Clang on any arch or operating system:
|
||||
if(CMAKE_C_COMPILER_ID MATCHES GNU|Clang)
|
||||
|
|
Loading…
Reference in a new issue