diff options
Diffstat (limited to '.travis/install.sh')
-rwxr-xr-x | .travis/install.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.travis/install.sh b/.travis/install.sh index 5e8c11cc..499233d7 100755 --- a/.travis/install.sh +++ b/.travis/install.sh @@ -67,6 +67,9 @@ else # patches, but while that's in jenkins we don't get coverage data from it). OPENSSL_VERSION_NUMBER="0.9.8l" OPENSSL_DIR="ossl-098l" + elif [[ "${OPENSSL}" == "1.0.0" ]]; then + OPENSSL_VERSION_NUMBER="1.0.0t" + OPENSSL_DIR="ossl-100t" fi # download, compile, and install if it's not already present via travis cache if [ -n "$OPENSSL_DIR" ]; then |