summaryrefslogtreecommitdiffstats
path: root/crypto/md4/build.info
diff options
context:
space:
mode:
authorPauli <paul.dale@oracle.com>2020-01-09 10:37:28 +1000
committerPauli <paul.dale@oracle.com>2020-01-12 12:02:17 +1000
commit8ffb20ce05c13f137c169ebdfd11f702da82e9eb (patch)
tree47f523e711260dcaa1a96600e742ece528cd785c /crypto/md4/build.info
parent01b0768d098698701c5491d8386019491a3dfdc7 (diff)
Deprecate the low level MD4 functions.
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> (Merged from https://github.com/openssl/openssl/pull/10790)
Diffstat (limited to 'crypto/md4/build.info')
-rw-r--r--crypto/md4/build.info11
1 files changed, 9 insertions, 2 deletions
diff --git a/crypto/md4/build.info b/crypto/md4/build.info
index 20846e0dce..7b36a0421e 100644
--- a/crypto/md4/build.info
+++ b/crypto/md4/build.info
@@ -1,3 +1,10 @@
LIBS=../../libcrypto
-SOURCE[../../libcrypto]=\
- md4_dgst.c md4_one.c
+
+SOURCE[../../libcrypto]=md4_dgst.c md4_one.c
+
+# When all deprecated symbols are removed, libcrypto doesn't export the
+# MD4 functions, so we must include them directly in liblegacy.a
+IF[{- $disabled{"deprecated"}
+ && (defined $config{"api"} && $config{"api"} >= 30000) -}]
+ SOURCE[../../providers/liblegacy.a]=md4_dgst.c md4_one.c
+ENDIF