summaryrefslogtreecommitdiff
path: root/crypto/des/build.info
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2023-01-25 16:32:02 +0100
committerPauli <pauli@openssl.org>2023-01-31 11:10:22 +1100
commitf6a6f7b6aa84dab44384780cb77050d15c5f575e (patch)
treeb796dd6ceeab4fc712109c26624a23a5eef48e5d /crypto/des/build.info
parentf66c1272f92bed6bc8aa17f6a8956d9e2e5b7798 (diff)
downloadopenssl-new-f6a6f7b6aa84dab44384780cb77050d15c5f575e.tar.gz
Avoid duplicating symbols in legacy.a with some build options
If no-module or no-shared is used, the symbols from libcrypto should not be duplicated in legacy.a Also the BIGNUM functions are currently not needed in legacy.a at all. Fixes #20124 Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/20137)
Diffstat (limited to 'crypto/des/build.info')
-rw-r--r--crypto/des/build.info5
1 files changed, 3 insertions, 2 deletions
diff --git a/crypto/des/build.info b/crypto/des/build.info
index 4284272cfa..5a13e4f9be 100644
--- a/crypto/des/build.info
+++ b/crypto/des/build.info
@@ -23,11 +23,12 @@ $ALL=$COMMON\
SOURCE[../../libcrypto]=$ALL $DESASM
SOURCE[../../providers/libfips.a]=$COMMON $DESASM
-SOURCE[../../providers/liblegacy.a]=$DESASM
+IF[{- !$disabled{module} && !$disabled{shared} -}]
+ SOURCE[../../providers/liblegacy.a]=$DESASM
+ENDIF
DEFINE[../../libcrypto]=$DESDEF
DEFINE[../../providers/libfips.a]=$DESDEF
-DEFINE[../../providers/liblegacy.a]=$DESDEF
# When all deprecated symbols are removed, libcrypto doesn't export the
# DES functions, so we must include them directly in liblegacy.a