The branch OpenSSL_1_1_1-stable has been updated via 2f3b120401533db82e99ed28de5fc8aab1b76b33 (commit) from 9e44ffc281326330937eee0e94b6fd4bfcaa98eb (commit)
- Log ----------------------------------------------------------------- commit 2f3b120401533db82e99ed28de5fc8aab1b76b33 Author: Lenny Primak <le...@flowlogix.com> Date: Sat Sep 11 18:53:45 2021 -0500 MacOS prior to 10.12 does not support random API correctly Fixes #16517 Reviewed-by: Paul Dale <pa...@openssl.org> Reviewed-by: Tomas Mraz <to...@openssl.org> (Merged from https://github.com/openssl/openssl/pull/16587) ----------------------------------------------------------------------- Summary of changes: include/crypto/rand.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/crypto/rand.h b/include/crypto/rand.h index 674f840fd1..8247d16c55 100644 --- a/include/crypto/rand.h +++ b/include/crypto/rand.h @@ -22,7 +22,7 @@ # if defined(__APPLE__) && !defined(OPENSSL_NO_APPLE_CRYPTO_RANDOM) # include <Availability.h> -# if (defined(__MAC_OS_X_VERSION_MIN_REQUIRED) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101000) || \ +# if (defined(__MAC_OS_X_VERSION_MIN_REQUIRED) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101200) || \ (defined(__IPHONE_OS_VERSION_MIN_REQUIRED) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 80000) # define OPENSSL_APPLE_CRYPTO_RANDOM 1 # include <CommonCrypto/CommonCryptoError.h>