MailCore / mailcore2

MailCore 2 provide a simple and asynchronous API to work with e-mail protocols IMAP, POP and SMTP. The API has been redesigned from ground up.
Other
2.61k stars 627 forks source link

Exclude DriverKit SDK from macOS SDK version variable. #1855

Closed futureimperfect closed 4 years ago

futureimperfect commented 4 years ago

The DriverKit SDK can appear in the output from xcodebuild -showsdks, and as such macosx19.0 is parsed as a macOS SDK in build scripts, causing them to fail. This change explicitly excludes the DriverKit SDK, which fixed the build script(s) for me.

$ xcodebuild -showsdks
<snip>
macOS SDKs:
    DriverKit 19.0                  -sdk driverkit.macosx19.0
    macOS 10.15                     -sdk macosx10.15
</snip>
dinhvh commented 4 years ago

Thank you!