From: Richard Levitte Date: Wed, 13 Jan 2021 22:55:51 +0000 (+0100) Subject: Fix crypto/des/build.info X-Git-Tag: openssl-3.0.0-alpha11~88 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3f6e891d423ed911eb779bfd1401a26ec18cfa41;p=thirdparty%2Fopenssl.git Fix crypto/des/build.info !$disabled{mdc2} was used to determine if DES files should be included in providers/liblegacy.a. Use !$disabled{des} instead. Fixes #13865 Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/13866) --- diff --git a/crypto/des/build.info b/crypto/des/build.info index b73e740beca..ad8553a41a7 100644 --- a/crypto/des/build.info +++ b/crypto/des/build.info @@ -31,7 +31,7 @@ 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 -IF[{- $disabled{'deprecated-3.0'} && !$disabled{"mdc2"} -}] +IF[{- $disabled{'deprecated-3.0'} && !$disabled{des} -}] SOURCE[../../providers/liblegacy.a]=$ALL DEFINE[../../providers/liblegacy.a]=$DESDEF ENDIF