git: 5a7500dab9b8 - main - libarchive: Request the OpenSSL 1.1 API
Date: Thu, 25 May 2023 19:09:17 UTC
The branch main has been updated by emaste:
URL: https://cgit.FreeBSD.org/src/commit/?id=5a7500dab9b8480dacd5a9b70bad1541391342e4
commit 5a7500dab9b8480dacd5a9b70bad1541391342e4
Author: Pierre Pronchery <pierre@freebsdfoundation.org>
AuthorDate: 2023-05-25 07:26:58 +0000
Commit: Ed Maste <emaste@FreeBSD.org>
CommitDate: 2023-05-25 19:08:05 +0000
libarchive: Request the OpenSSL 1.1 API
OPENSSL_API_COMPAT can be used to specify the OpenSSL API version in
use for the purpose of hiding deprecated interfaces and enabling
the appropriate deprecation notices.
This change is a NFC while we're still using OpenSSL 1.1.1 but will
avoid deprecation warnings upon the switch to OpenSSL 3.0.
A future update should migrate to use the OpenSSL 3.0 APIs.
PR: 271615
Reviewed by: emaste
Event: Kitchener-Waterloo Hackathon 202305
Sponsored by: The FreeBSD Foundation
---
lib/libarchive/Makefile.inc | 1 +
1 file changed, 1 insertion(+)
diff --git a/lib/libarchive/Makefile.inc b/lib/libarchive/Makefile.inc
index 409e1972191d..a03f87d7b6c3 100644
--- a/lib/libarchive/Makefile.inc
+++ b/lib/libarchive/Makefile.inc
@@ -10,6 +10,7 @@ CFLAGS+= -DPLATFORM_CONFIG_H=\"${.CURDIR}/config_freebsd.h\"
.if ${MK_OPENSSL} != "no"
CFLAGS+= -DWITH_OPENSSL
+CFLAGS+= -DOPENSSL_API_COMPAT=0x10100000L
LIBADD+= crypto
.else
LIBADD+= md