From 469c325a49dc5a522fed21e2ee8ff91e5c6e5c64 Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Tue, 9 May 2023 08:44:23 -0400 Subject: [PATCH] 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