From 87ba25ee3fd152d807496609e821a9f5fc950d02 Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Wed, 14 Mar 2018 17:30:22 +0100 Subject: [PATCH] Configurations/15-android.conf: default to RC4_CHAR whenever possible. Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/5613) --- Configurations/15-android.conf | 4 ++++ 1 file changed, 4 insertions(+) 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", }, -- 2.25.1