Skip to content

Commit

Permalink
Add new SDK version define
Browse files Browse the repository at this point in the history
  • Loading branch information
NeRdTheNed committed Apr 3, 2023
1 parent 255d4f8 commit 1ef9f61
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
13 changes: 13 additions & 0 deletions include/macrOS/GeneratedAvail.h
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,9 @@
#ifndef MAC_OS_VERSION_13_1
#define MAC_OS_VERSION_13_1 130100
#endif
#ifndef MAC_OS_VERSION_13_3
#define MAC_OS_VERSION_13_3 130300
#endif

#if defined(MAC_OS_X_VERSION_10_0) && MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_0
#define macrOS_ALWAYS_HAVE_10_0_0
Expand Down Expand Up @@ -267,6 +270,10 @@
#define macrOS_NEVER_HAVE_13_0_0
#define macrOS_ALWAYS_HAVE_13_1_0
#endif
#if defined(MAC_OS_VERSION_13_3) && MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_VERSION_13_3
#define macrOS_NEVER_HAVE_13_1_0
#define macrOS_ALWAYS_HAVE_13_3_0
#endif

#if defined(__ppc64__) || defined(__ppc__)
#ifndef macrOS_NEVER_HAVE_10_7_0
Expand Down Expand Up @@ -362,6 +369,9 @@
#ifndef macrOS_NEVER_HAVE_13_1_0
#define macrOS_NEVER_HAVE_13_1_0
#endif
#ifndef macrOS_NEVER_HAVE_13_3_0
#define macrOS_NEVER_HAVE_13_3_0
#endif
#endif

#if defined(__i386__) || defined(__x86_64__)
Expand Down Expand Up @@ -413,6 +423,9 @@
#ifndef macrOS_NEVER_HAVE_13_1_0
#define macrOS_NEVER_HAVE_13_1_0
#endif
#ifndef macrOS_NEVER_HAVE_13_3_0
#define macrOS_NEVER_HAVE_13_3_0
#endif
#endif

#if defined(__aarch64__)
Expand Down
3 changes: 2 additions & 1 deletion tools/Avail.java
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,8 @@ final class Avail {
new MacVersion(11, 3, 0),
new MacVersion(12, 0, 0),
new MacVersion(13, 0, 0),
new MacVersion(13, 1, 0)
new MacVersion(13, 1, 0),
new MacVersion(13, 3, 0)
};

/**
Expand Down

0 comments on commit 1ef9f61

Please sign in to comment.