-
Notifications
You must be signed in to change notification settings - Fork 456
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #92 from gearboxworks/osx-mojave-fix
Attempt to fix #75
- Loading branch information
Showing
1 changed file
with
9 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
f2fa635
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi, curious how important the OS version check here is. If I remove this then I can get it to compile on MacOS v10.12 -- otherwise not
-- and I'm having trouble figuring out how to pass __MAC_OS_X_VERSION_MIN_REQUIRED in usefully.
f2fa635
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Interesting. So
__MAC_OS_X_VERSION_MIN_REQUIRED
is not defined in your case? What's your building environment? Some one familiar with macOS developing may know better, but to be safe, maybe change it to something like this?f2fa635
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Finally got around to testing on a collection of machines and the above didn't go but the recent update which uses
#if __MAC_OS_X_VERSION_MIN_REQUIRED < 101400
is working for me on 10.12 and 10.14 sdks. yay!