1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-23 07:12:12 -07:00

Remove support for macos 10.4 and 10.5, because xcode 10.0 does not support these versions.

Copied from Perforce
 Change: 195087
This commit is contained in:
Gareth Rees 2018-09-18 14:18:52 +01:00
parent 56d1c0bc12
commit df34ac67df
3 changed files with 8 additions and 4 deletions

View file

@ -5534,7 +5534,7 @@
GCC_WARN_UNUSED_LABEL = YES;
GCC_WARN_UNUSED_PARAMETER = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MACOSX_DEPLOYMENT_TARGET = 10.4;
MACOSX_DEPLOYMENT_TARGET = 10.6;
SDKROOT = macosx;
SYMROOT = xc;
WARNING_CFLAGS = (
@ -5973,7 +5973,7 @@
GCC_WARN_UNUSED_LABEL = YES;
GCC_WARN_UNUSED_PARAMETER = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MACOSX_DEPLOYMENT_TARGET = 10.4;
MACOSX_DEPLOYMENT_TARGET = 10.6;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = macosx;
SYMROOT = xc;
@ -6032,7 +6032,7 @@
GCC_WARN_UNUSED_LABEL = YES;
GCC_WARN_UNUSED_PARAMETER = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MACOSX_DEPLOYMENT_TARGET = 10.4;
MACOSX_DEPLOYMENT_TARGET = 10.6;
SDKROOT = macosx;
SYMROOT = xc;
WARNING_CFLAGS = (

View file

@ -12,6 +12,10 @@ Release 1.118.0
New features
............
#. The MPS now supports macOS 10.6 (Snow Leopard) or later; it no
longer supports 10.4 (Tiger) and 10.5 (Leopard). This is because
Xcode 10.0 no longer supports these versions.
#. The arena's :term:`spare commit limit` is now expressed as a
fraction of the :term:`committed <mapped>` memory (rather than a
fixed size, as previously). This allows the :term:`spare committed

View file

@ -80,7 +80,7 @@ The MPS is currently supported for deployment on:
- FreeBSD 7 or later, on IA-32 and x86-64, using GCC or Clang/LLVM;
- macOS 10.4 or later, on IA-32 and x86-64, using Clang/LLVM.
- macOS 10.6 or later, on IA-32 and x86-64, using Clang/LLVM.
The MPS is highly portable and has run on many other processors and
operating systems in the past (see `Building the MPS