Skip to content

Commit afd16d4

Browse files
committed
OpenSSL 1.1.1k
1 parent 19b79d4 commit afd16d4

File tree

6 files changed

+9
-16
lines changed

6 files changed

+9
-16
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ endif
1111
#===== Versioning ==============================================================
1212

1313
## OpenSSL version to build
14-
VERSION ?= 1.1.1h
14+
VERSION ?= 1.1.1k
1515

1616
## Extra version of the distributed package
17-
PACKAGE_VERSION ?= 3
17+
PACKAGE_VERSION ?= 1
1818
export PACKAGE_VERSION
1919

2020
MIN_IOS_SDK = 10.0

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ let package = Package(
1414
targets: [
1515
.binaryTarget(name: "openssl",
1616
// update version in URL path
17-
url:"https://github.com/cossacklabs/openssl-apple/releases/download/1.1.10803/openssl-static-xcframework.zip",
17+
url:"https://github.com/cossacklabs/openssl-apple/releases/download/1.1.11101/openssl-static-xcframework.zip",
1818
// Run from package directory:
1919
// swift package compute-checksum output/openssl-static-xcframework.zip
20-
checksum: "4e03d2d4d5ee25216dc6353dc3d3336a23ee7191533fe9951ad607510b758a3b"),
20+
checksum: "ea9c1a3fa59a51c13a811f4f11ada330d9e3993c3bc225db102127595e2d97ba"),
2121
]
2222
)

build-libssl.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ set -u
2525
# SCRIPT DEFAULTS
2626

2727
# Default version in case no version is specified
28-
DEFAULTVERSION="1.1.1h"
28+
DEFAULTVERSION="1.1.1k"
2929

3030
# Default (=full) set of targets (OpenSSL >= 1.1.1) to build
3131
DEFAULTTARGETS=`cat <<TARGETS
@@ -37,7 +37,7 @@ tvos-sim-cross-x86_64 tvos64-cross-arm64
3737
TARGETS`
3838
3939
# Minimum iOS/tvOS SDK version to build for
40-
IOS_MIN_SDK_VERSION="12.0"
40+
IOS_MIN_SDK_VERSION="10.0"
4141
MACOS_MIN_SDK_VERSION="10.15"
4242
CATALYST_MIN_SDK_VERSION="10.15"
4343
WATCHOS_MIN_SDK_VERSION="4.0"
@@ -487,6 +487,7 @@ OPENSSL_CHECKSUMS="
487487
1.0.2u ecd0c6ffb493dd06707d38b14bb4d8c2288bb7033735606569d8f90f89669d16
488488
1.1.1g ddb04774f1e32f0c49751e21b67216ac87852ceb056b75209af2443400636d46
489489
1.1.1h 5c9ca8774bd7b03e5784f26ae9e9e6d749c9da2438545077e6b3d755a06595d9
490+
1.1.1k 892a0875b9872acd04a9fde79b1f943075d5ea162415de3047c327df33fbaee5
490491
"
491492
checksum_checked=false
492493
while read version expectedSHA256; do
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
{
2+
"1.1.11101": "https://github.com/cossacklabs/openssl-apple/releases/download/v1.1.11101/openssl-dynamic-xcframework.zip",
23
"1.1.10803": "https://github.com/cossacklabs/openssl-apple/releases/download/v1.1.10803/openssl-dynamic-xcframework.zip",
34
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
{
2+
"1.1.11101": "https://github.com/cossacklabs/openssl-apple/releases/download/v1.1.11101/openssl-static-xcframework.zip",
23
"1.1.10803": "https://github.com/cossacklabs/openssl-apple/releases/download/v1.1.10803/openssl-static-xcframework.zip",
34
}

config/20-all-platforms.conf

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -94,16 +94,6 @@ my %targets = ();
9494

9595
## Apple macOS
9696

97-
# Base (arm64)
98-
"darwin64-arm64-cc" => {
99-
inherit_from => [ "darwin-common", asm("aarch64_asm") ],
100-
CFLAGS => add("-Wall"),
101-
cflags => add("-arch arm64"),
102-
lib_cppflags => add("-DL_ENDIAN"),
103-
bn_ops => "SIXTY_FOUR_BIT_LONG",
104-
perlasm_scheme => "ios64",
105-
},
106-
10797
# Device (x86_64)
10898
"macos64-x86_64" => {
10999
inherit_from => [ "darwin64-x86_64-cc", "macos-base" ],

0 commit comments

Comments
 (0)