diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-04-20 11:45:28 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-04-20 15:29:09 -0700 |
commit | d7103f97f70417476468608b1535758dd4b344b7 (patch) | |
tree | 10aa33c866b91d819c1fd2039aad8257ca3cd02f /packaging/android/build.sh | |
parent | 5d1fbbe57bd9b21bdd4124f8361aa6b22b9d9aad (diff) | |
download | subsurface-d7103f97f70417476468608b1535758dd4b344b7.tar.gz |
Android build: use static libssl / libcrypto
Android M does not allow using those as shared libraries.
See #1029
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'packaging/android/build.sh')
-rw-r--r-- | packaging/android/build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packaging/android/build.sh b/packaging/android/build.sh index f523b1c8f..2f306630e 100644 --- a/packaging/android/build.sh +++ b/packaging/android/build.sh @@ -181,10 +181,10 @@ if [ ! -e $PKG_CONFIG_LIBDIR/libssl.pc ] ; then HOSTCC=gcc \ CC=gcc \ ANDROID_DEV=$PREFIX \ - bash -x ./config shared no-ssl2 no-ssl3 no-comp no-hw no-engine --openssldir=$PREFIX + bash -x ./config no-shared no-ssl2 no-ssl3 no-comp no-hw no-engine --openssldir=$PREFIX make depend make - make install + make install_sw popd fi |