aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrent Cook <busterb@gmail.com>2023-02-11 06:32:04 -0600
committerBrent Cook <busterb@gmail.com>2023-02-13 20:36:37 -0600
commit5427234a789706dcd469d932fb633e4a7f0226ca (patch)
tree346d9e525c4fa4b15a57036c01c04728caf0a3fe
parent97124d674264c5bc2b0a7754452aabed399b85cf (diff)
downloadportable-5427234a789706dcd469d932fb633e4a7f0226ca.tar.gz
portable-5427234a789706dcd469d932fb633e4a7f0226ca.tar.bz2
portable-5427234a789706dcd469d932fb633e4a7f0226ca.zip
disable asm by default
-rw-r--r--configure.ac5
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 8119508..6080109 100644
--- a/configure.ac
+++ b/configure.ac
@@ -94,8 +94,9 @@ int main() {return 0;}
94]) 94])
95 95
96AC_ARG_ENABLE([asm], 96AC_ARG_ENABLE([asm],
97 AS_HELP_STRING([--disable-asm], [Disable assembly])) 97 AS_HELP_STRING([--enable-asm], [Enable assembly]))
98AM_CONDITIONAL([OPENSSL_NO_ASM], [test "x$enable_asm" = "xno"]) 98# Disable below while updating to support upstream assembly changes
99AM_CONDITIONAL([OPENSSL_NO_ASM], [test "x$enable_asm" = xyes])
99 100
100# Conditionally enable assembly by default 101# Conditionally enable assembly by default
101AM_CONDITIONAL([HOST_ASM_ELF_ARM], 102AM_CONDITIONAL([HOST_ASM_ELF_ARM],