aboutsummaryrefslogtreecommitdiff
path: root/crypto/bn
diff options
context:
space:
mode:
authorShane Lontis <shane.lontis@oracle.com>2019-10-15 12:35:41 +1000
committerShane Lontis <shane.lontis@oracle.com>2019-10-16 16:10:39 +1000
commit64fd90fbe99dde18de3fc7c3a6b06793d87a4aad (patch)
tree8c1870ea8b90719689752e9fccd2f919bf67dc84 /crypto/bn
parentf97a8af2f3f3573f0759693117c9d33d2a63c27e (diff)
downloadopenssl-64fd90fbe99dde18de3fc7c3a6b06793d87a4aad.zip
openssl-64fd90fbe99dde18de3fc7c3a6b06793d87a4aad.tar.gz
openssl-64fd90fbe99dde18de3fc7c3a6b06793d87a4aad.tar.bz2
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/bn')
-rw-r--r--crypto/bn/build.info5
1 files changed, 4 insertions, 1 deletions
diff --git a/crypto/bn/build.info b/crypto/bn/build.info
index 75b84d0..5ad8bf1 100644
--- a/crypto/bn/build.info
+++ b/crypto/bn/build.info
@@ -108,9 +108,12 @@ $COMMON=bn_add.c bn_div.c bn_exp.c bn_lib.c bn_ctx.c bn_mul.c \
bn_const.c bn_x931p.c bn_intern.c bn_dh.c \
bn_rsa_fips186_4.c $BNASM
SOURCE[../../libcrypto]=$COMMON bn_print.c bn_err.c bn_depr.c bn_srp.c
-DEFINE[../../libcrypto]=$BNDEF
SOURCE[../../providers/libfips.a]=$COMMON
+# Implementations are now spread across several libraries, so the defines
+# need to be applied to all affected libraries and modules.
+DEFINE[../../libcrypto]=$BNDEF
DEFINE[../../providers/libfips.a]=$BNDEF
+DEFINE[../../providers/libimplementations.a]=$BNDEF
INCLUDE[../../libcrypto]=../../crypto/include