summaryrefslogtreecommitdiffstats
path: root/crypto/bn
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2012-01-18 01:40:36 +0000
committerDr. Stephen Henson <steve@openssl.org>2012-01-18 01:40:36 +0000
commit7b23c126e604dbc7e13bdf69b968ae9f8131a7fc (patch)
tree37fa70ae3a6de301f081bb2214adbcaf10bdef09 /crypto/bn
parent25e3d2225acaf6ce60243210b2607393e4dc57ff (diff)
undef some symbols that cause problems with make depend for fips builds
Diffstat (limited to 'crypto/bn')
-rw-r--r--crypto/bn/bn_lcl.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/crypto/bn/bn_lcl.h b/crypto/bn/bn_lcl.h
index d7dff0d90c..eecfd8cc99 100644
--- a/crypto/bn/bn_lcl.h
+++ b/crypto/bn/bn_lcl.h
@@ -472,6 +472,10 @@ extern "C" {
}
#endif /* !BN_LLONG */
+#if defined(OPENSSL_DOING_MAKEDEPEND) && defined(OPENSSL_FIPS)
+#undef bn_div_words
+#endif
+
void bn_mul_normal(BN_ULONG *r,BN_ULONG *a,int na,BN_ULONG *b,int nb);
void bn_mul_comba8(BN_ULONG *r,BN_ULONG *a,BN_ULONG *b);
void bn_mul_comba4(BN_ULONG *r,BN_ULONG *a,BN_ULONG *b);