aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Pronchery <pierre@freebsdfoundation.org>2023-05-25 05:34:44 +0000
committerEd Maste <emaste@FreeBSD.org>2023-05-31 14:05:07 +0000
commitaa4cf5647cdc9f19c356414e67350ced3334a609 (patch)
tree813f0b1cb74be6b03c9f70a02bb4c24131c96ada
parent4e9a97de01a5bfbcb3a9029944261dec51ee8d0d (diff)
downloadsrc-aa4cf5647cdc9f19c356414e67350ced3334a609.tar.gz
src-aa4cf5647cdc9f19c356414e67350ced3334a609.zip
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
-rw-r--r--lib/libunbound/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libunbound/Makefile b/lib/libunbound/Makefile
index 4ce8fcb4ab92..0b7f92e3318f 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 \