Skip to content

Commit

Permalink
->version 1.1.1w
Browse files Browse the repository at this point in the history
  • Loading branch information
apotocki committed Sep 11, 2023
1 parent 69ba999 commit 9af0c8c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## OpenSSL for iOS and Mac OS X (Intel & Apple Silicon M1) & Catalyst - arm64 / x86_64

Supported version: 1.1.1v
Supported version: 1.1.1w

This repo provides a universal script for building static OpenSSL libraries for use in iOS and Mac OS X applications.
The actual library version is taken from https://github.com/openssl/openssl with tag 'OpenSSL_1_1_1u'
Expand All @@ -14,7 +14,7 @@ The actual library version is taken from https://github.com/openssl/openssl with
- Manually
```
# clone the repo
git clone -b 1.1.1v https://github.com/apotocki/openssl-iosx
git clone -b 1.1.1w https://github.com/apotocki/openssl-iosx
# build libraries
cd openssl-iosx
Expand All @@ -25,9 +25,9 @@ The actual library version is taken from https://github.com/openssl/openssl with
- Use cocoapods. Add the following lines into your project's Podfile:
```
use_frameworks!
pod 'openssl-iosx', '~> 1.1.1v'
pod 'openssl-iosx', '~> 1.1.1w'
# or optionally more precisely
# pod 'openssl-iosx', :git => 'https://github.com/apotocki/openssl-iosx', :tag => '1.1.1v.0'
# pod 'openssl-iosx', :git => 'https://github.com/apotocki/openssl-iosx', :tag => '1.1.1w.0'
```
install new dependency:
```
Expand Down
2 changes: 1 addition & 1 deletion openssl-iosx.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "openssl-iosx"
s.version = "1.1.1v.0"
s.version = "1.1.1w.0"
s.summary = "OpenSSL"
s.homepage = "https://github.com/apotocki/openssl-iosx"
s.license = "Apache"
Expand Down
2 changes: 1 addition & 1 deletion scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -e
THREAD_COUNT=$(sysctl hw.ncpu | awk '{print $2}')
HOST_ARC=$( uname -m )
XCODE_ROOT=$( xcode-select -print-path )
OPENSSL_VER=OpenSSL_1_1_1v
OPENSSL_VER=OpenSSL_1_1_1w
################## SETUP END
#DEVSYSROOT=$XCODE_ROOT/Platforms/iPhoneOS.platform/Developer
#SIMSYSROOT=$XCODE_ROOT/Platforms/iPhoneSimulator.platform/Developer
Expand Down

0 comments on commit 9af0c8c

Please sign in to comment.