mirror of
https://github.com/openssl/openssl.git
synced 2025-01-18 13:44:20 +08:00
Fix glibc specific conditional for Mac OS/X
MacOS seems to define __GLIBC__ but not __GLIBC_PREREQ. Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/5269)
This commit is contained in:
parent
2b66fd5720
commit
bed4afa81b
@ -231,7 +231,8 @@ static uint64_t get_timer_bits(void)
|
|||||||
# if defined(_POSIX_C_SOURCE) \
|
# if defined(_POSIX_C_SOURCE) \
|
||||||
&& defined(_POSIX_TIMERS) \
|
&& defined(_POSIX_TIMERS) \
|
||||||
&& _POSIX_C_SOURCE >= 199309L \
|
&& _POSIX_C_SOURCE >= 199309L \
|
||||||
&& (!defined(__GLIBC__) || __GLIBC_PREREQ(2, 17))
|
&& (!defined(__GLIBC__) \
|
||||||
|
|| (defined(__GLIBC_PREREQ) && __GLIBC_PREREQ(2, 17)))
|
||||||
{
|
{
|
||||||
struct timespec ts;
|
struct timespec ts;
|
||||||
clockid_t cid;
|
clockid_t cid;
|
||||||
|
Loading…
Reference in New Issue
Block a user