aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Pronchery <pierre@freebsdfoundation.org>2023-09-21 11:42:06 +0000
committerEd Maste <emaste@FreeBSD.org>2023-09-24 16:18:28 +0000
commit444eda0dda6407c56c80638f2218ce80e7c90a1f (patch)
tree65cdb8e922149e6d8778a405b6a7941107aba44a
parentf5892bbbaf54bfd40638359621265c47d1e419c3 (diff)
downloadsrc-444eda0dda6407c56c80638f2218ce80e7c90a1f.tar.gz
src-444eda0dda6407c56c80638f2218ce80e7c90a1f.zip
libcrypto: complete the support for the 0.9.8 API
When importing OpenSSL 3 in base, some but not all source files implementing the deprecated 0.9.8 API were imported. With this change, it becomes possible again to compile software targeting this API. PR: 272220 Fixes: b077aed33b7b ("Merge OpenSSL 3.0.9") Reviewed by: emaste Sponsored by: The FreeBSD Foundation Pull Request: https://github.com/freebsd/freebsd-src/pull/851 (cherry picked from commit b15b39521644ebffdcc091bd283ed410b0ae9274) (cherry picked from commit ab64f100ca5ddd37029695646003abaf49c3065e) Approved by: re (gjb)
-rw-r--r--secure/lib/libcrypto/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/secure/lib/libcrypto/Makefile b/secure/lib/libcrypto/Makefile
index 827dee41201d..70208cd17c8a 100644
--- a/secure/lib/libcrypto/Makefile
+++ b/secure/lib/libcrypto/Makefile
@@ -196,14 +196,14 @@ SRCS+= des_enc.c fcrypt_b.c
.endif
# dh
-SRCS+= dh_ameth.c dh_asn1.c dh_backend.c dh_check.c dh_err.c dh_gen.c
+SRCS+= dh_ameth.c dh_asn1.c dh_backend.c dh_check.c dh_depr.c dh_err.c dh_gen.c
SRCS+= dh_group_params.c dh_kdf.c dh_key.c dh_lib.c dh_meth.c dh_pmeth.c
SRCS+= dh_prn.c dh_rfc5114.c
# dsa
-SRCS+= dsa_ameth.c dsa_asn1.c dsa_backend.c dsa_check.c dsa_err.c dsa_gen.c
-SRCS+= dsa_key.c dsa_lib.c dsa_meth.c dsa_ossl.c dsa_pmeth.c dsa_prn.c
-SRCS+= dsa_sign.c dsa_vrf.c
+SRCS+= dsa_ameth.c dsa_asn1.c dsa_backend.c dsa_check.c dsa_depr.c dsa_err.c
+SRCS+= dsa_gen.c dsa_key.c dsa_lib.c dsa_meth.c dsa_ossl.c dsa_pmeth.c
+SRCS+= dsa_prn.c dsa_sign.c dsa_vrf.c
# dso
SRCS+= dso_dlfcn.c dso_err.c dso_lib.c