diff options
author | Rechi <Rechi@users.noreply.github.com> | 2018-05-30 10:00:00 +0200 |
---|---|---|
committer | Rechi <Rechi@users.noreply.github.com> | 2018-05-30 10:00:00 +0200 |
commit | 6ea8315cfcc9420d4fcfe3ba716a57a57cb768d7 (patch) | |
tree | 8bdaa522bc38a2e03378344054dc95c3f9ab651e | |
parent | 9358ae9d275cb2a4aa94e99568d30773a6381e26 (diff) |
[osx] bump minimum version to 10.9
-rw-r--r-- | cmake/scripts/osx/ArchSetup.cmake | 2 | ||||
-rw-r--r-- | docs/README.osx.md | 2 | ||||
-rw-r--r-- | tools/depends/configure.ac | 3 |
3 files changed, 3 insertions, 4 deletions
diff --git a/cmake/scripts/osx/ArchSetup.cmake b/cmake/scripts/osx/ArchSetup.cmake index d0c5506b0d..9ba0596c9c 100644 --- a/cmake/scripts/osx/ArchSetup.cmake +++ b/cmake/scripts/osx/ArchSetup.cmake @@ -36,5 +36,5 @@ list(APPEND DEPLIBS "-framework DiskArbitration" "-framework IOKit" "-framework CoreGraphics" "-framework CoreMedia" "-framework VideoToolbox") -set(CMAKE_OSX_DEPLOYMENT_TARGET 10.8) +set(CMAKE_OSX_DEPLOYMENT_TARGET 10.9) set(CMAKE_XCODE_ATTRIBUTE_CLANG_LINK_OBJC_RUNTIME OFF) diff --git a/docs/README.osx.md b/docs/README.osx.md index 872b80f3ce..ba66ed95cc 100644 --- a/docs/README.osx.md +++ b/docs/README.osx.md @@ -29,7 +29,7 @@ There are 3 ways to build Kodi for Mac: Kodi for Mac is composed of a main binary with numerous dynamic libraries and codecs that support a multitude of music and video formats. -The minimum version of OSX you need to run(!) Kodi is 10.8 atm. +The minimum version of OSX you need to run(!) Kodi is 10.9 atm. - On El Capitan (OSX 10.11.x) we recommend using Xcode 8.x. - On Sierra (macOS 10.12.x) we recommend using Xcode 8.x. diff --git a/tools/depends/configure.ac b/tools/depends/configure.ac index afb8a81666..b7beed09b7 100644 --- a/tools/depends/configure.ac +++ b/tools/depends/configure.ac @@ -300,7 +300,6 @@ case $host in # now that we know which sdk, error check sdk_name case $use_sdk in - 10.8);; 10.9);; 10.10);; 10.11);; @@ -310,7 +309,7 @@ case $host in AC_MSG_ERROR(error in configure of --with-sdk=$use_sdk) esac sdk_name=macosx$use_sdk - platform_min_version="macosx-version-min=10.8" + platform_min_version="macosx-version-min=10.9" use_sdk_path=[`$use_xcodebuild -version -sdk $sdk_name Path`] platform_os="osx" |