From 4bc16469560039f2d517d01f70fc2f3cc95ab98d Mon Sep 17 00:00:00 2001 From: Anton Tieleman Date: Sun, 13 Nov 2016 12:17:35 +0100 Subject: [PATCH] OpenSSL 1.1.0c --- README.md | 7 ++++--- travis-build.sh | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d063801..39f58a6 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# OpenSSL-for-iOS [![Build Status](https://travis-ci.org/x2on/OpenSSL-for-iPhone.svg)](https://travis-ci.org/x2on/OpenSSL-for-iPhone) [![license](https://img.shields.io/github/license/x2on/OpenSSL-for-iPhone.svg)](https://github.com/x2on/OpenSSL-for-iPhone/blob/master/LICENSE) [![OpenSSL version](https://img.shields.io/badge/OpenSSL-1.0.2j-lightgrey.svg)]() [![OpenSSL version](https://img.shields.io/badge/OpenSSL-1.1.0b-lightgrey.svg)]() [![iOS support](https://img.shields.io/badge/iOS-7.0%20--%2010.0-lightgrey.svg)]() [![tvOS support](https://img.shields.io/badge/tvOS-9.2--%2010.0-lightgrey.svg)]() +# OpenSSL-for-iOS [![Build Status](https://travis-ci.org/x2on/OpenSSL-for-iPhone.svg)](https://travis-ci.org/x2on/OpenSSL-for-iPhone) [![license](https://img.shields.io/github/license/x2on/OpenSSL-for-iPhone.svg)](https://github.com/x2on/OpenSSL-for-iPhone/blob/master/LICENSE) [![OpenSSL version](https://img.shields.io/badge/OpenSSL-1.0.2j-lightgrey.svg)]() [![OpenSSL version](https://img.shields.io/badge/OpenSSL-1.1.0c-lightgrey.svg)]() [![iOS support](https://img.shields.io/badge/iOS-7.0%20--%2010.0-lightgrey.svg)]() [![tvOS support](https://img.shields.io/badge/tvOS-9.2--%2010.0-lightgrey.svg)]() This is a script for using self-compiled builds of the OpenSSL-library on the iPhone. You can build apps with Xcode and the official SDK from Apple with this. I also made a small example-app for using the libraries with Xcode and the iPhone/iPhone-Simulator. @@ -9,9 +9,9 @@ You must build the OpenSSL-Libraries (1.0.2j) before running the sample with: ./build-libssl.sh ``` -To build OpenSSL 1.1.0b build the OpenSSL-Libraries with: +To build OpenSSL 1.1.0c build the OpenSSL-Libraries with: ```bash -./build-libssl.sh --branch=1.1.0 +./build-libssl.sh --version=1.1.0c ``` For all options see the help @@ -33,6 +33,7 @@ If you have problems building for arm64 please uninstall MacPorts (see [#28](htt * ## Changelog +* 2016-11-13: OpenSSL 1.1.0c * 2016-11-07: Optional support for OpenSSL 1.1.0b * 2016-09-28: OpenSSL 1.0.2j * 2016-09-22: OpenSSL 1.0.2i diff --git a/travis-build.sh b/travis-build.sh index 173322c..5f830c9 100755 --- a/travis-build.sh +++ b/travis-build.sh @@ -19,7 +19,7 @@ PID_ARCHS=$! mkdir targets cd targets cp -r ../include . -../build-libssl.sh --noparallel --verbose-on-error --ec-nistp-64-gcc-128 --version=1.1.0b | log_output "TARGETS" & +../build-libssl.sh --noparallel --verbose-on-error --ec-nistp-64-gcc-128 --version=1.1.0c | log_output "TARGETS" & PID_TARGETS=$! echo "SCRIPT Started jobs, waiting for jobs to finish"