git: 57a3b81785c0 - main - libcrypto: add rsa_depr.c to the build

From: Ed Maste <emaste_at_FreeBSD.org>
Date: Fri, 18 Aug 2023 20:16:53 UTC
The branch main has been updated by emaste:

URL: https://cgit.FreeBSD.org/src/commit/?id=57a3b81785c0f7f458789d0baa5c8265ecfd5bac

commit 57a3b81785c0f7f458789d0baa5c8265ecfd5bac
Author:     Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2023-08-18 19:03:40 +0000
Commit:     Ed Maste <emaste@FreeBSD.org>
CommitDate: 2023-08-18 20:15:48 +0000

    libcrypto: add rsa_depr.c to the build
    
    It provides the RSA_generate_key function, which is deprecated as of
    3.0 but is used by various ports.
    
    Reviewed by:    kbowling
    Sponsored by:   The FreeBSD Foundation
    Differential Revision: https://reviews.freebsd.org/D41506
---
 secure/lib/libcrypto/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/secure/lib/libcrypto/Makefile b/secure/lib/libcrypto/Makefile
index 006577737d7b..d4102c6cd0cf 100644
--- a/secure/lib/libcrypto/Makefile
+++ b/secure/lib/libcrypto/Makefile
@@ -474,7 +474,7 @@ SRCS+=	rmd-586.S
 .endif
 
 # rsa
-SRCS+=	rsa_ameth.c rsa_asn1.c rsa_backend.c rsa_chk.c rsa_crpt.c
+SRCS+=	rsa_ameth.c rsa_asn1.c rsa_backend.c rsa_chk.c rsa_crpt.c rsa_depr.c
 SRCS+=	rsa_err.c rsa_gen.c rsa_lib.c rsa_meth.c rsa_mp.c rsa_mp_names.c
 SRCS+=	rsa_none.c rsa_oaep.c rsa_ossl.c rsa_pk1.c rsa_pmeth.c rsa_prn.c
 SRCS+=	rsa_pss.c rsa_saos.c rsa_schemes.c rsa_sign.c rsa_sp800_56b_check.c