diff options
author | Anton Lundin <glance@acc.umu.se> | 2015-07-16 00:59:33 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-07-16 14:09:25 -0700 |
commit | 17bab9554ddeff98997e61eac68367a8dfe0c36e (patch) | |
tree | a8be8f6f480012b49cf9e3663cbf8632f1e52e6f /packaging/android | |
parent | b8b597ec729ca1b2d52a8d900a8898173c042043 (diff) | |
download | subsurface-17bab9554ddeff98997e61eac68367a8dfe0c36e.tar.gz |
Build openssl without legacy protocols.
SSL2 and SSL3 are deprecated, and we can gladly leave them out of our
build.
Signed-off-by: Anton Lundin <glance@acc.umu.se>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'packaging/android')
-rw-r--r-- | packaging/android/build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/android/build.sh b/packaging/android/build.sh index 2d7eadf49..23621c08e 100644 --- a/packaging/android/build.sh +++ b/packaging/android/build.sh @@ -135,7 +135,7 @@ if [ ! -e $PKG_CONFIG_LIBDIR/libssl.pc ] ; then HOSTCC=gcc \ CC=gcc \ ANDROID_DEV=$PREFIX \ - bash -x ./config shared no-comp no-hw no-engine --openssldir=$PREFIX + bash -x ./config shared no-ssl2 no-ssl3 no-comp no-hw no-engine --openssldir=$PREFIX make depend make make install |