From aa4cf5647cdc9f19c356414e67350ced3334a609 Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Thu, 25 May 2023 07:34:44 +0200 Subject: [PATCH] libunbound: 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 may migrate to use the OpenSSL 3.0 APIs. PR: 271615 Reviewed by: emaste Sponsored by: The FreeBSD Foundation --- lib/libunbound/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/libunbound/Makefile b/lib/libunbound/Makefile index 4ce8fcb4ab9..0b7f92e3318 100644 --- a/lib/libunbound/Makefile +++ b/lib/libunbound/Makefile @@ -14,6 +14,7 @@ PACKAGE= unbound CFLAGS+= -I${UNBOUNDDIR} -I${LDNSDIR} -I${.OBJDIR} CFLAGS+= -I${SRCTOP}/usr.sbin/unbound +CFLAGS+= -DOPENSSL_API_COMPAT=0x10100000L SRCS= alloc.c as112.c authzone.c autotrust.c cachedb.c config_file.c \ configlexer.l configparser.y context.c dname.c dns.c dns64.c \