diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2018-05-19 13:39:49 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-05-19 14:15:11 -0700 |
commit | 6a91611e90cc9c63c0cd2fd32aaf47a85e90deec (patch) | |
tree | 767819ce58355516657ba87a29355a4e3a95fec3 | |
parent | 5047e90857314a8f2d53bdb91f2976979749eef7 (diff) | |
download | subsurface-6a91611e90cc9c63c0cd2fd32aaf47a85e90deec.tar.gz |
build-system: updated OpenSSL and libusb for Android
These are the latest, supported versions for OpenSSL. I have not tested
if Android would work with OpenSSL 1.1.
The lower versio for libzip is still required as libzip 1.2.0 doesn't
compile for Android.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rwxr-xr-x | scripts/get-dep-lib.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/scripts/get-dep-lib.sh b/scripts/get-dep-lib.sh index afa680720..c5c281575 100755 --- a/scripts/get-dep-lib.sh +++ b/scripts/get-dep-lib.sh @@ -7,7 +7,7 @@ CURRENT_LIBGIT2="v0.26.0" CURRENT_HIDAPI="hidapi-0.7.0" CURRENT_LIBCURL="curl-7_54_1" CURRENT_LIBUSB="v1.0.21" -CURRENT_OPENSSL="OpenSSL_1_1_0f" +CURRENT_OPENSSL="OpenSSL_1_1_0h" CURRENT_LIBSSH2="libssh2-1.8.0" CURRENT_XSLT="v1.1.29" CURRENT_SQLITE="3190200" @@ -38,8 +38,7 @@ fi # FIX FOR ANDROID, if [ "$PLATFORM" == "singleAndroid" ] ; then CURRENT_LIBZIP="1.1.3" - CURRENT_LIBUSB="v1.0.20" - CURRENT_OPENSSL="OpenSSL_1_0_2l" + CURRENT_OPENSSL="OpenSSL_1_0_2o" fi # no curl and old libs (never version breaks) # check whether to use curl or wget |