diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-09-12 12:17:43 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-09-12 14:31:37 +0200 |
commit | dd7b96ee874611a9e965badb166a408881223039 (patch) | |
tree | b2184bcd64c35ac3c233a05a6f8f8351e22a604c | |
parent | 2523e10b5856bebd534385f4beec0386e2c800fa (diff) |
Support for building with macOS SDK < 10.12 is long gone
...according to 372d2d78906aac32ddaf7eaa3c2037ea3d5af1ae "Update OSX SDK
checking". (With the current code, there was still a possibility to pass in an
explicit --with-macosx-sdk= with a value of 10.9, 10.10, or 10.11, but I assume
that was an oversight rather than a desirable feature, and that nobody, esp. not
the "official" TDF builds, actually used it.)
Change-Id: Ib3cb7309f6aa7c506687e9746acfcf365422901f
Reviewed-on: https://gerrit.libreoffice.org/60375
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
-rw-r--r-- | configure.ac | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/configure.ac b/configure.ac index e46ef61e61db..489ec023a120 100644 --- a/configure.ac +++ b/configure.ac @@ -2742,15 +2742,6 @@ if test $_os = Darwin -o $_os = iOS; then case $with_macosx_sdk in - 10.9) - MACOSX_SDK_VERSION=1090 - ;; - 10.10) - MACOSX_SDK_VERSION=101000 - ;; - 10.11) - MACOSX_SDK_VERSION=101100 - ;; 10.12) MACOSX_SDK_VERSION=101200 ;; |