git: 469c325a49dc - main - libfido2: specify OpenSSL 1.1 API
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 09 May 2023 13:46:18 UTC
The branch main has been updated by emaste:
URL: https://cgit.FreeBSD.org/src/commit/?id=469c325a49dc5a522fed21e2ee8ff91e5c6e5c64
commit 469c325a49dc5a522fed21e2ee8ff91e5c6e5c64
Author: Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2023-05-09 12:44:23 +0000
Commit: Ed Maste <emaste@FreeBSD.org>
CommitDate: 2023-05-09 13:46:09 +0000
libfido2: specify 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
libfido2 update may switch to use OpenSSL 3.0 APIs.
Sponsored by: The FreeBSD Foundation
---
lib/libfido2/Makefile | 1 +
1 file changed, 1 insertion(+)
diff --git a/lib/libfido2/Makefile b/lib/libfido2/Makefile
index a9e1c526d45d..86ac1153f384 100644
--- a/lib/libfido2/Makefile
+++ b/lib/libfido2/Makefile
@@ -64,6 +64,7 @@ CFLAGS+= -DHAVE_SYS_RANDOM_H
CFLAGS+= -DHAVE_TIMESPECSUB
CFLAGS+= -DHAVE_TIMINGSAFE_BCMP
CFLAGS+= -DHAVE_UNISTD_H
+CFLAGS+= -DOPENSSL_API_COMPAT=0x10100000L
CFLAGS+= -DTLS=__thread
CFLAGS+= -D_FIDO_MAJOR=1
CFLAGS+= -D_FIDO_MINOR=10