Commit 69ba999 1 parent 52fc423 commit 69ba999 Copy full SHA for 69ba999
File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
## OpenSSL for iOS and Mac OS X (Intel & Apple Silicon M1) & Catalyst - arm64 / x86_64
2
2
3
- Supported version: 1.1.1u
3
+ Supported version: 1.1.1v
4
4
5
5
This repo provides a universal script for building static OpenSSL libraries for use in iOS and Mac OS X applications.
6
6
The actual library version is taken from https://github.com/openssl/openssl with tag 'OpenSSL_1_1_1u'
@@ -14,7 +14,7 @@ The actual library version is taken from https://github.com/openssl/openssl with
14
14
- Manually
15
15
```
16
16
# clone the repo
17
- git clone -b 1.1.1u https://github.com/apotocki/openssl-iosx
17
+ git clone -b 1.1.1v https://github.com/apotocki/openssl-iosx
18
18
19
19
# build libraries
20
20
cd openssl-iosx
@@ -25,9 +25,9 @@ The actual library version is taken from https://github.com/openssl/openssl with
25
25
- Use cocoapods. Add the following lines into your project's Podfile:
26
26
```
27
27
use_frameworks!
28
- pod 'openssl-iosx', '~> 1.1.1u '
28
+ pod 'openssl-iosx', '~> 1.1.1v '
29
29
# or optionally more precisely
30
- # pod 'openssl-iosx', :git => 'https://github.com/apotocki/openssl-iosx', :tag => '1.1.1u .0'
30
+ # pod 'openssl-iosx', :git => 'https://github.com/apotocki/openssl-iosx', :tag => '1.1.1v .0'
31
31
```
32
32
install new dependency:
33
33
```
Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = "openssl-iosx"
3
- s . version = "1.1.1u .0"
3
+ s . version = "1.1.1v .0"
4
4
s . summary = "OpenSSL"
5
5
s . homepage = "https://github.com/apotocki/openssl-iosx"
6
6
s . license = "Apache"
Original file line number Diff line number Diff line change 5
5
THREAD_COUNT=$( sysctl hw.ncpu | awk ' {print $2}' )
6
6
HOST_ARC=$( uname -m )
7
7
XCODE_ROOT=$( xcode-select -print-path )
8
- OPENSSL_VER=OpenSSL_1_1_1u
8
+ OPENSSL_VER=OpenSSL_1_1_1v
9
9
# ################# SETUP END
10
10
# DEVSYSROOT=$XCODE_ROOT/Platforms/iPhoneOS.platform/Developer
11
11
# SIMSYSROOT=$XCODE_ROOT/Platforms/iPhoneSimulator.platform/Developer
You can’t perform that action at this time.
0 commit comments