diff options
| author | martin <martin@NetBSD.org> | 2020-05-13 12:24:10 +0000 |
|---|---|---|
| committer | martin <martin@NetBSD.org> | 2020-05-13 12:24:10 +0000 |
| commit | 6a46b540d90646ea3072423b6e79c0eaf1aec1b1 (patch) | |
| tree | fdc793ff1d621eafca41f31b4a58d67f60553a14 /crypto | |
| parent | 7c8d18b70d4bc449cb1cf75cc83303ba4bcfd1b8 (diff) | |
Pull up following revision(s) (requested by nia in ticket #899):
crypto/external/bsd/openssl/lib/libcrypto/evp.inc: revision 1.9
Ensure that -DOPENSSL_CPUID_OBJ is passed when compiling AES EVP bits
This way CPUs that support AES-NI actually get detected properly ;_;
(... just one part of the puzzle)
Diffstat (limited to 'crypto')
| -rw-r--r-- | crypto/external/bsd/openssl/lib/libcrypto/evp.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/external/bsd/openssl/lib/libcrypto/evp.inc b/crypto/external/bsd/openssl/lib/libcrypto/evp.inc index 06e76dd5978..6a975660ac6 100644 --- a/crypto/external/bsd/openssl/lib/libcrypto/evp.inc +++ b/crypto/external/bsd/openssl/lib/libcrypto/evp.inc @@ -1,4 +1,4 @@ -# $NetBSD: evp.inc,v 1.8 2018/09/23 13:33:04 christos Exp $ +# $NetBSD: evp.inc,v 1.8.2.1 2020/05/13 12:24:10 martin Exp $ # # @(#) Copyright (c) 1995 Simon J. Gerraty # @@ -85,6 +85,7 @@ EVP_AES_SRCS = e_aes.c .for cryptosrc in ${EVP_AES_SRCS} CPPFLAGS.${cryptosrc} += ${AESCPPFLAGS} +CPPFLAGS.${cryptosrc} += ${CRYPTOCPPFLAGS} .endfor CPPFLAGS.e_aes.c += -I${OPENSSLSRC}/crypto/modes |
