diff options
author | Dilshod Mukhtarov <dilshodm@gmail.com> | 2024-09-09 12:02:34 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2024-09-09 13:45:04 (GMT) |
commit | 628a80773060e62b4f7823e6591d3bf068a074d8 (patch) | |
tree | 3a4c5e9ced72c9835b71afe6abe3257c7b47f8d6 /Utilities | |
parent | 16fbb8c14245da53f49b0991ad530198262c5f85 (diff) | |
download | CMake-628a80773060e62b4f7823e6591d3bf068a074d8.zip CMake-628a80773060e62b4f7823e6591d3bf068a074d8.tar.gz CMake-628a80773060e62b4f7823e6591d3bf068a074d8.tar.bz2 |
librhash: aligned_alloc is not available with glibc < 2.16
Revise the version check from commit e14300816b (librhash: aligned_alloc
is not available with glibc < 2.15, 2024-02-14, v3.29.0-rc2~30^2).
Issue: #25679
Diffstat (limited to 'Utilities')
-rw-r--r-- | Utilities/cmlibrhash/librhash/util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Utilities/cmlibrhash/librhash/util.h b/Utilities/cmlibrhash/librhash/util.h index a0a0674..4da1be6 100644 --- a/Utilities/cmlibrhash/librhash/util.h +++ b/Utilities/cmlibrhash/librhash/util.h @@ -44,7 +44,7 @@ extern "C" { # define rhash_aligned_free(ptr) _aligned_free(ptr) #elif !defined(NO_STDC_ALIGNED_ALLOC) && (__STDC_VERSION__ >= 201112L || defined(_ISOC11_SOURCE)) \ - && !(defined(__GLIBC__) && (__GLIBC__ < 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ < 15))) \ + && !(defined(__GLIBC__) && (__GLIBC__ < 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ < 16))) \ && !(defined(__ibmxl__) && defined(__clang__) && defined(__linux__)) \ && !defined(__APPLE__) && !defined(__HAIKU__) && !defined(__sun) \ && (!defined(__ANDROID_API__) || __ANDROID_API__ >= 28) |