Commit db6b904d authored by Joshua Peraza's avatar Joshua Peraza Committed by Commit Bot

mac: fix sdk version comparison

Change-Id: Iccd1c76b691c734b9049a8c9a14d9b01fe0b665c
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1864374Reviewed-by: default avatarMark Mentovai <mark@chromium.org>
Commit-Queue: Joshua Peraza <jperaza@chromium.org>
Cr-Commit-Position: refs/heads/master@{#707105}
parent 7f04d479
...@@ -53,7 +53,9 @@ typedef CR_FORWARD_ENUM(unsigned int, NSSearchPathDirectory); ...@@ -53,7 +53,9 @@ typedef CR_FORWARD_ENUM(unsigned int, NSSearchPathDirectory);
typedef unsigned int NSSearchPathDomainMask; typedef unsigned int NSSearchPathDomainMask;
#endif #endif
#if defined(OS_IOS) || defined(MAC_OS_X_VERSION_10_15) #if defined(OS_IOS) || \
(defined(MAC_OS_X_VERSION_10_15) && \
MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_15)
typedef struct CF_BRIDGED_TYPE(id) __SecCertificate* SecCertificateRef; typedef struct CF_BRIDGED_TYPE(id) __SecCertificate* SecCertificateRef;
typedef struct CF_BRIDGED_TYPE(id) __SecKey* SecKeyRef; typedef struct CF_BRIDGED_TYPE(id) __SecKey* SecKeyRef;
typedef struct CF_BRIDGED_TYPE(id) __SecPolicy* SecPolicyRef; typedef struct CF_BRIDGED_TYPE(id) __SecPolicy* SecPolicyRef;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment