Date: Sat, 4 May 2024 12:37:31 GMT From: Martin Matuska <mm@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: 9377240725d2 - stable/13 - libarchive: Request the OpenSSL 1.1 API Message-ID: <202405041237.444CbVq5072177@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by mm: URL: https://cgit.FreeBSD.org/src/commit/?id=9377240725d2d04dbbfa4758828982d25782c923 commit 9377240725d2d04dbbfa4758828982d25782c923 Author: Pierre Pronchery <pierre@freebsdfoundation.org> AuthorDate: 2023-05-25 07:26:58 +0000 Commit: Martin Matuska <mm@FreeBSD.org> CommitDate: 2024-05-04 11:53:07 +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 (cherry picked from commit 5a7500dab9b8480dacd5a9b70bad1541391342e4) --- lib/libarchive/Makefile.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/libarchive/Makefile.inc b/lib/libarchive/Makefile.inc index 6d4668faf7ba..c98249519fa4 100644 --- a/lib/libarchive/Makefile.inc +++ b/lib/libarchive/Makefile.inc @@ -9,6 +9,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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202405041237.444CbVq5072177>