summaryrefslogtreecommitdiffstats
path: root/crypto/bn/build.info
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2019-05-29 17:31:22 +0100
committerMatt Caswell <matt@openssl.org>2019-06-12 09:16:43 +0100
commit636b087e3e3eb3401ac4d1a55bd2da0c15a728d5 (patch)
treeafa8a4dfbebbd1d494d90e7a80397e0287e9cc90 /crypto/bn/build.info
parent4ac6227621255ecde99aff3b11737c912f7a499b (diff)
Make BIGNUM code available from within the FIPS module
Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/9130)
Diffstat (limited to 'crypto/bn/build.info')
-rw-r--r--crypto/bn/build.info21
1 files changed, 13 insertions, 8 deletions
diff --git a/crypto/bn/build.info b/crypto/bn/build.info
index 7e34ce41b3..280fa3dad8 100644
--- a/crypto/bn/build.info
+++ b/crypto/bn/build.info
@@ -1,12 +1,17 @@
LIBS=../../libcrypto
-SOURCE[../../libcrypto]=\
- bn_add.c bn_div.c bn_exp.c bn_lib.c bn_ctx.c bn_mul.c bn_mod.c \
- bn_print.c bn_rand.c bn_shift.c bn_word.c bn_blind.c \
- bn_kron.c bn_sqrt.c bn_gcd.c bn_prime.c bn_err.c bn_sqr.c \
- {- $target{bn_asm_src} -} \
- bn_recp.c bn_mont.c bn_mpi.c bn_exp2.c bn_gf2m.c bn_nist.c \
- bn_depr.c bn_const.c bn_x931p.c bn_intern.c bn_dh.c bn_srp.c \
- bn_rsa_fips186_4.c
+
+{- our @src = ( qw( bn_add.c bn_div.c bn_exp.c bn_lib.c bn_ctx.c bn_mul.c
+ bn_mod.c bn_conv.c bn_rand.c bn_shift.c bn_word.c bn_blind.c
+ bn_kron.c bn_sqrt.c bn_gcd.c bn_prime.c bn_sqr.c
+ bn_recp.c bn_mont.c bn_mpi.c bn_exp2.c bn_gf2m.c bn_nist.c
+ bn_const.c bn_x931p.c bn_intern.c bn_dh.c
+ bn_rsa_fips186_4.c ), $target{bn_asm_src} ); "" -}
+
+SOURCE[../../libcrypto]={- join(' ', @src) -} bn_print.c bn_err.c bn_depr.c bn_srp.c
+
+SOURCE[../../providers/fips]={- join(' ', @src) -}
+
+
INCLUDE[../../libcrypto]=../../crypto/include
INCLUDE[bn_exp.o]=..