Apple rebrands "OS X" as "macOS"

In 2012, with the release of OS X 10.8 Mountain Lion, the name of the
system was shortened from Mac OS X to OS X. In 2016, with the release
of macOS 10.12 Sierra, the name was changed from OS X to macOS to
streamline it with the branding of Apple's other primary operating
systems: iOS, watchOS, and tvOS.

Reference: https://en.wikipedia.org/wiki/MacOS
This commit is contained in:
Jim Huang 2019-06-23 15:29:41 +08:00 committed by Jim Huang
parent 3526b09903
commit a667971cbf
7 changed files with 16 additions and 16 deletions

View file

@ -47,11 +47,11 @@ if(OVERRIDE MATCHES "ON")
list(APPEND mi_defines MI_MALLOC_OVERRIDE)
if(APPLE)
if(INTERPOSE MATCHES "ON")
# use interpose on MacOSX
# use interpose on macOS
message(STATUS " Use interpose to override malloc (INTERPOSE=ON)")
list(APPEND mi_defines MI_INTERPOSE)
else()
# use zone's on MacOSX
# use zone's on macOS
message(STATUS " Use zone's to override malloc (INTERPOSE=OFF)")
list(APPEND mi_sources src/alloc-override-osx.c)
endif()