<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">diff --git Source/WebCore/page/Crypto.cpp Source/WebCore/page/Crypto.cpp
index 69c36e97..07969aad 100644
--- Source/WebCore/page/Crypto.cpp
+++ Source/WebCore/page/Crypto.cpp
@@ -36,7 +36,7 @@
 #include &lt;JavaScriptCore/ArrayBufferView.h&gt;
 #include &lt;wtf/CryptographicallyRandomNumber.h&gt;
 
-#if OS(DARWIN)
+#if OS(DARWIN) &amp;&amp; (__MAC_OS_X_VERSION_MIN_REQUIRED &gt; 1090)
 #include &lt;CommonCrypto/CommonCryptor.h&gt;
 #include &lt;CommonCrypto/CommonRandom.h&gt;
 #endif
@@ -58,7 +58,7 @@ ExceptionOr&lt;void&gt; Crypto::getRandomValues(ArrayBufferView&amp; array)
         return Exception { TypeMismatchError };
     if (array.byteLength() &gt; 65536)
         return Exception { QuotaExceededError };
-#if OS(DARWIN)
+#if OS(DARWIN) &amp;&amp; (__MAC_OS_X_VERSION_MIN_REQUIRED &gt; 1090)
     auto rc = CCRandomGenerateBytes(array.baseAddress(), array.byteLength());
     RELEASE_ASSERT(rc == kCCSuccess);
 #else
</pre></body></html>