1 // Copyright 2020 The Crashpad Authors. All rights reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 //     http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #ifndef CRASHPAD_COMPAT_MAC_AVAILABILITYVERSIONS_H_
16 #define CRASHPAD_COMPAT_MAC_AVAILABILITYVERSIONS_H_
17 
18 #if __has_include_next(<AvailabilityVersions.h>)
19 #include_next <AvailabilityVersions.h>
20 #endif
21 
22 // 10.7 SDK
23 
24 #ifndef __MAC_10_7
25 #define __MAC_10_7 1070
26 #endif
27 
28 // 10.8 SDK
29 
30 #ifndef __MAC_10_8
31 #define __MAC_10_8 1080
32 #endif
33 
34 // 10.9 SDK
35 
36 #ifndef __MAC_10_9
37 #define __MAC_10_9 1090
38 #endif
39 
40 // 10.10 SDK
41 
42 #ifndef __MAC_10_10
43 #define __MAC_10_10 101000
44 #endif
45 
46 // 10.11 SDK
47 
48 #ifndef __MAC_10_11
49 #define __MAC_10_11 101100
50 #endif
51 
52 // 10.12 SDK
53 
54 #ifndef __MAC_10_12
55 #define __MAC_10_12 101200
56 #endif
57 
58 // 10.13 SDK
59 
60 #ifndef __MAC_10_13
61 #define __MAC_10_13 101300
62 #endif
63 
64 #ifndef __MAC_10_13_4
65 #define __MAC_10_13_4 101304
66 #endif
67 
68 // 10.14 SDK
69 
70 #ifndef __MAC_10_14
71 #define __MAC_10_14 101400
72 #endif
73 
74 // 10.15 SDK
75 
76 #ifndef __MAC_10_15
77 #define __MAC_10_15 101500
78 #endif
79 
80 // 11.0 SDK
81 
82 #ifndef __MAC_10_16
83 #define __MAC_10_16 101600
84 #endif
85 
86 #ifndef __MAC_11_0
87 #define __MAC_11_0 110000
88 #endif
89 
90 #endif  // CRASHPAD_COMPAT_MAC_AVAILABILITYVERSIONS_H_
91