diff options
author | Shane Lontis <shane.lontis@oracle.com> | 2019-10-15 12:35:41 +1000 |
---|---|---|
committer | Shane Lontis <shane.lontis@oracle.com> | 2019-10-16 16:10:39 +1000 |
commit | 64fd90fbe99dde18de3fc7c3a6b06793d87a4aad (patch) | |
tree | 8c1870ea8b90719689752e9fccd2f919bf67dc84 /crypto/ripemd | |
parent | f97a8af2f3f3573f0759693117c9d33d2a63c27e (diff) | |
download | openssl-new-64fd90fbe99dde18de3fc7c3a6b06793d87a4aad.tar.gz |
Fix missing Assembler defines
Implementations are now spread across several libraries, so the assembler
related defines need to be applied to all affected libraries and modules.
AES_ASM define was missing from libimplementations.a which disabled AESNI
aarch64 changes were made by xkqian.
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/10180)
Diffstat (limited to 'crypto/ripemd')
-rw-r--r-- | crypto/ripemd/build.info | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/crypto/ripemd/build.info b/crypto/ripemd/build.info index c4baf63141..a0a45b0e84 100644 --- a/crypto/ripemd/build.info +++ b/crypto/ripemd/build.info @@ -13,7 +13,11 @@ IF[{- !$disabled{asm} -}] ENDIF SOURCE[../../libcrypto]=rmd_dgst.c rmd_one.c $RMD160ASM + +# Implementations are now spread across several libraries, so the defines +# need to be applied to all affected libraries and modules DEFINE[../../libcrypto]=$RMD160DEF +DEFINE[../providers/libimplementations.a]=$RMD160DEF GENERATE[rmd-586.s]=asm/rmd-586.pl DEPEND[rmd-586.s]=../perlasm/x86asm.pl |