Skip to content

Commit 444d952

Browse files
committed
Lower SDK minimums to iOS 8.0 and macOS 10.9
These are the versions currently supported by Themis. While we can definitely bump them up to iOS 10.0 and macOS 10.14 somewhere in 2020, let's keep them matching Themis requirements for now.
1 parent 60551b4 commit 444d952

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

assets/MacOSX/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
<key>CFBundleVersion</key>
2020
<string>1</string>
2121
<key>MinimumOSVersion</key>
22-
<string>10.11</string>
22+
<string>10.9</string>
2323
</dict>
2424
</plist>

assets/iPhone/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
<key>CFBundleVersion</key>
2020
<string>1</string>
2121
<key>MinimumOSVersion</key>
22-
<string>11.0</string>
22+
<string>8.0</string>
2323
</dict>
2424
</plist>

build-libssl.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ DEFAULTARCHS="ios_x86_64 ios_arm64 tv_x86_64 tv_arm64 mac_x86_64 watchos_armv7k
3434
DEFAULTTARGETS="ios-sim-cross-x86_64 ios64-cross-arm64 ios64-cross-arm64e tvos-sim-cross-x86_64 tvos64-cross-arm64 macos64-x86_64 watchos-cross-armv7k watchos-cross-arm64_32 watchos-sim-cross-i386"
3535

3636
# Minimum iOS/tvOS SDK version to build for
37-
IOS_MIN_SDK_VERSION="12.0"
37+
IOS_MIN_SDK_VERSION="8.0"
3838
TVOS_MIN_SDK_VERSION="12.0"
39-
MACOS_MIN_SDK_VERSION="10.15"
39+
MACOS_MIN_SDK_VERSION="10.9"
4040
WATCHOS_MIN_SDK_VERSION="4.0"
4141

4242
# Init optional env variables (use available variable or default to empty string)

create-openssl-framework.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,15 +67,15 @@ if [ $FWTYPE == "dynamic" ]; then
6767
elif [[ $PLATFORM == AppleTV* ]]; then
6868
MIN_SDK="-tvos_version_min 11.0"
6969
elif [[ $PLATFORM == MacOSX* ]]; then
70-
MIN_SDK="-macosx_version_min 10.11"
70+
MIN_SDK="-macosx_version_min 10.9"
7171
elif [[ $PLATFORM == iPhoneSimulator* ]]; then
72-
MIN_SDK="-ios_simulator_version_min 11.0"
72+
MIN_SDK="-ios_simulator_version_min 8.0"
7373
elif [[ $PLATFORM == WatchOS* ]]; then
7474
MIN_SDK="-watchos_version_min 4.0"
7575
elif [[ $PLATFORM == WatchSimulator* ]]; then
7676
MIN_SDK="-watchos_simulator_version_min 4.0"
7777
else
78-
MIN_SDK="-ios_version_min 11.0"
78+
MIN_SDK="-ios_version_min 8.0"
7979
fi
8080

8181
#cd $TARGETDIR

0 commit comments

Comments
 (0)