From 55c1f5bc15d7fd614e7b0a1bc3abd915e22f07b3 Mon Sep 17 00:00:00 2001 From: Stephen Hinton Date: Wed, 28 Sep 2016 14:53:30 -0500 Subject: [PATCH 1/2] OpenSSL 1.0.2j --- README.md | 1 + build-libssl.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d42aa69e..122bdbcc 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,7 @@ If you have problems building for arm64 please uninstall MacPorts (see [#28](htt * ## Changelog +* 2016-09-28: OpenSSL 1.0.2j * 2016-09-22: OpenSSL 1.0.2i * 2016-09-18: Xcode 8 support, iOS 10.0, Add command line options, Optimize build * 2016-08-09: Xcode 7.3 support, iOS 9.3 diff --git a/build-libssl.sh b/build-libssl.sh index 51866c6c..a7fcf335 100755 --- a/build-libssl.sh +++ b/build-libssl.sh @@ -22,7 +22,7 @@ # -u Attempt to use undefined variable outputs error message, and forces an exit set -u -DEFAULTVERSION="1.0.2i" # Default version in case no version is specified +DEFAULTVERSION="1.0.2j" # Default version in case no version is specified IOS_MIN_SDK_VERSION="7.0" # Minimum iOS SDK version to build for TVOS_MIN_SDK_VERSION="9.0" # Minimum tvOS SDK version to build for From 3fbca9aee8a943136f3e779c8511aff9a310cc1e Mon Sep 17 00:00:00 2001 From: Stephen Hinton Date: Wed, 28 Sep 2016 14:54:59 -0500 Subject: [PATCH 2/2] doesn't contains -> doesn't contain --- create-openssl-framework.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/create-openssl-framework.sh b/create-openssl-framework.sh index 5e65d65c..605a1716 100755 --- a/create-openssl-framework.sh +++ b/create-openssl-framework.sh @@ -30,7 +30,7 @@ echo "Created $FWNAME.framework" check_bitcode=`otool -arch arm64 -l $FWNAME.framework/$FWNAME | grep __bitcode` if [ -z "$check_bitcode" ] then - echo "INFO: $FWNAME.framework doesn't contains Bitcode" + echo "INFO: $FWNAME.framework doesn't contain Bitcode" else echo "INFO: $FWNAME.framework contains Bitcode" fi