summaryrefslogtreecommitdiff
path: root/ACE/include/makeinclude
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-10-28 14:42:07 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-10-28 14:42:07 +0100
commit61338c70ac750777c0b8e34f2573c4800e7de30b (patch)
tree5947719f2ad715269103431e3f9d57bdcf9d234e /ACE/include/makeinclude
parentc747d7f92366127f124a1fd38df9cf5100695345 (diff)
downloadATCD-61338c70ac750777c0b8e34f2573c4800e7de30b.tar.gz
Add support for MacOSX bigsur
* ACE/include/makeinclude/platform_macosx_bigsur.GNU: Added. * ACE/include/makeinclude/platform_macosx.GNU:
Diffstat (limited to 'ACE/include/makeinclude')
-rw-r--r--ACE/include/makeinclude/platform_macosx.GNU13
-rw-r--r--ACE/include/makeinclude/platform_macosx_bigsur.GNU2
2 files changed, 12 insertions, 3 deletions
diff --git a/ACE/include/makeinclude/platform_macosx.GNU b/ACE/include/makeinclude/platform_macosx.GNU
index f318adace60..697967fd794 100644
--- a/ACE/include/makeinclude/platform_macosx.GNU
+++ b/ACE/include/makeinclude/platform_macosx.GNU
@@ -20,7 +20,9 @@ MACOS_CODENAME_VER_10_11 := elcapitan
MACOS_CODENAME_VER_10_12 := sierra
MACOS_CODENAME_VER_10_13 := highsierra
MACOS_CODENAME_VER_10_14 := mojave
-MACOS_CODENAME_VER_latest := mojave
+MACOS_CODENAME_VER_10_latest := mojave
+MACOS_CODENAME_VER_11_0 := bigsur
+MACOS_CODENAME_VER_11_latest := bigsur
MACOS_CODENAME = $(MACOS_CODENAME_VER_$(MACOS_MAJOR_VERSION)_$(MACOS_MINOR_VERSION))
@@ -28,15 +30,20 @@ ifeq ($(MACOS_MAJOR_VERSION),10)
ifeq ($(shell test $(MACOS_MINOR_VERSION) -gt 14; echo $$?),0)
## if the detected version is greater than the latest know version,
## just use the latest known version
- MACOS_CODENAME = $(MACOS_CODENAME_VER_latest)
+ MACOS_CODENAME = $(MACOS_CODENAME_VER_10_latest)
else ifeq ($(shell test $(MACOS_MINOR_VERSION) -lt 2; echo $$?),0)
## Unsupported minor version
$(error Unsupported MacOS version $(MACOS_RELEASE_VERSION))
endif
+else ifeq ($(MACOS_MAJOR_VERSION),11)
+ ifeq ($(shell test $(MACOS_MINOR_VERSION) -gt 0; echo $$?),0)
+ ## if the detected version is greater than the latest know version,
+ ## just use the latest known version
+ MACOS_CODENAME = $(MACOS_CODENAME_VER_11_latest)
+ endif
else
## Unsupported major version
$(error Unsupported MacOS version $(MACOS_RELEASE_VERSION))
endif
include $(ACE_ROOT)/include/makeinclude/platform_macosx_$(MACOS_CODENAME).GNU
-
diff --git a/ACE/include/makeinclude/platform_macosx_bigsur.GNU b/ACE/include/makeinclude/platform_macosx_bigsur.GNU
new file mode 100644
index 00000000000..c8e8ef86ea5
--- /dev/null
+++ b/ACE/include/makeinclude/platform_macosx_bigsur.GNU
@@ -0,0 +1,2 @@
+include $(ACE_ROOT)/include/makeinclude/platform_macosx_mojave.GNU
+