diff options
author | Andy Polyakov <appro@openssl.org> | 2018-03-14 17:30:22 +0100 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2018-03-19 14:31:30 +0100 |
commit | 87ba25ee3fd152d807496609e821a9f5fc950d02 (patch) | |
tree | b596a17fd7b26d68b3b491d05ebcad6172b3cb42 /Configurations/15-android.conf | |
parent | MIPS assembly pack: default heuristic detection to little-endian. (diff) | |
download | openssl-87ba25ee3fd152d807496609e821a9f5fc950d02.tar.xz openssl-87ba25ee3fd152d807496609e821a9f5fc950d02.zip |
Configurations/15-android.conf: default to RC4_CHAR whenever possible.
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5613)
Diffstat (limited to 'Configurations/15-android.conf')
-rw-r--r-- | Configurations/15-android.conf | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Configurations/15-android.conf b/Configurations/15-android.conf index e7c9fa0d1d..36daf3179b 100644 --- a/Configurations/15-android.conf +++ b/Configurations/15-android.conf @@ -160,14 +160,17 @@ my %targets = ( # -march and/or -mfloat-abi flags. NDK defaults to armv5te. # inherit_from => [ "android", asm("armv4_asm") ], + bn_ops => add("RC4_CHAR"), }, "android-arm64" => { inherit_from => [ "android", asm("aarch64_asm") ], + bn_ops => add("RC4_CHAR"), perlasm_scheme => "linux64", }, "android-mips" => { inherit_from => [ "android", asm("mips32_asm") ], + bn_ops => add("RC4_CHAR"), perlasm_scheme => "o32", }, "android-mips64" => { @@ -181,6 +184,7 @@ my %targets = ( # prior versions original MIPS binary code will fail. # inherit_from => [ "android", asm("mips64_asm") ], + bn_ops => add("RC4_CHAR"), perlasm_scheme => "64", }, |