From c95d15a1c12a0931bad5a0827f725b88eb7037da Mon Sep 17 00:00:00 2001 From: a Date: Thu, 9 May 2024 02:41:15 -0400 Subject: [PATCH] Disable many new openssl modules that don't impact tor --- external/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/external/Makefile b/external/Makefile index 4ffb12f6..43fadcd5 100644 --- a/external/Makefile +++ b/external/Makefile @@ -141,10 +141,12 @@ export ANDROID_NDK_ROOT=$(ANDROID_NDK_HOME) openssl/Makefile: openssl/Configure $(wildcard openssl/Configurations/*.*) cd openssl && PATH=$(PATH) && CFLAGS="$(CFLAGS) -Wno-macro-redefined" \ ./Configure \ - no-comp no-dtls no-ec2m no-psk no-srp no-ssl3 \ + no-comp no-dtls no-engine no-ec2m no-psk no-srp no-ssl3 \ no-camellia no-idea no-md2 no-md4 no-mdc2 no-rc2 no-rc4 no-rc5 no-rmd160 no-whirlpool \ - no-dso no-hw no-ui-console \ + no-dso no-ui-console \ no-shared no-tests \ + no-siv no-sm2 no-sm3 no-sm4 \ + no-dsa no-scrypt no-bf no-blake2 no-chacha \ android-$(NDK_ABI) \ -D__ANDROID_API__=$(NDK_PLATFORM_LEVEL) \ --prefix=/ \