Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/crypto/external/bsd/openssl/dist/crypto/evp Enable AES_ASM e...



details:   https://anonhg.NetBSD.org/src/rev/93fa8df54364
branches:  trunk
changeset: 321242:93fa8df54364
user:      christos <christos%NetBSD.org@localhost>
date:      Wed Mar 07 16:06:29 2018 +0000

description:
Enable AES_ASM explicitly not by just looking at the processor, like we
do for other archs!

diffstat:

 crypto/external/bsd/openssl/dist/crypto/evp/e_aes.c |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 253536570c32 -r 93fa8df54364 crypto/external/bsd/openssl/dist/crypto/evp/e_aes.c
--- a/crypto/external/bsd/openssl/dist/crypto/evp/e_aes.c       Wed Mar 07 16:05:44 2018 +0000
+++ b/crypto/external/bsd/openssl/dist/crypto/evp/e_aes.c       Wed Mar 07 16:06:29 2018 +0000
@@ -979,7 +979,7 @@
 
 #endif
 
-#if defined(OPENSSL_CPUID_OBJ) && (defined(__arm__) || defined(__arm) || defined(__aarch64__))
+#if defined(OPENSSL_CPUID_OBJ) && defined(AES_ASM) && (defined(__arm__) || defined(__arm) || defined(__aarch64__))
 # include "arm_arch.h"
 # if __ARM_MAX_ARCH__>=7
 #  if defined(BSAES_ASM)



Home | Main Index | Thread Index | Old Index