diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2022-09-22 20:12:40 +0200 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2022-09-22 20:12:40 +0200 |
| commit | 8bbedd65a8c0128ce66d83a17bca2e5027c000b5 (patch) | |
| tree | 9f2c2ade29e375535573e5e5a5695e3fc227f6e4 /FL/mac.H | |
| parent | 647b0a800852a800a38239c086bbcdb60d4d112e (diff) | |
Fix issue #501: build error under macOS 10.10
Diffstat (limited to 'FL/mac.H')
| -rw-r--r-- | FL/mac.H | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -78,6 +78,21 @@ typedef class FLWindow *Window; // pointer to the FLWindow objective-c class #ifndef MAC_OS_X_VERSION_10_14 #define MAC_OS_X_VERSION_10_14 101400 #endif +#ifndef MAC_OS_X_VERSION_10_15 +#define MAC_OS_X_VERSION_10_15 101500 +#endif +#ifndef MAC_OS_X_VERSION_10_16 +#define MAC_OS_X_VERSION_10_16 101600 +#endif +#ifndef MAC_OS_VERSION_11_0 +#define MAC_OS_VERSION_11_0 110000 +#endif +#ifndef MAC_OS_VERSION_12_0 +#define MAC_OS_VERSION_12_0 120000 +#endif +#ifndef MAC_OS_VERSION_13_0 +#define MAC_OS_VERSION_13_0 130000 +#endif #ifndef NSINTEGER_DEFINED // appears with 10.5 in NSObjCRuntime.h |
