From 33e8d2d1da86ec2fec46397361af862802b89333 Mon Sep 17 00:00:00 2001 From: jsing <> Date: Wed, 22 Jan 2020 01:21:43 +0000 Subject: Split the TLSv1.3 guards into separate client and server guards. ok beck@ tb@ --- src/lib/libssl/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/lib/libssl/Makefile') diff --git a/src/lib/libssl/Makefile b/src/lib/libssl/Makefile index e3b9a5cac9..b30fcca9eb 100644 --- a/src/lib/libssl/Makefile +++ b/src/lib/libssl/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.58 2020/01/20 13:10:37 jsing Exp $ +# $OpenBSD: Makefile,v 1.59 2020/01/22 01:21:43 jsing Exp $ .include .ifndef NOMAN @@ -17,7 +17,8 @@ CFLAGS+= -Werror .endif CFLAGS+= -DLIBRESSL_INTERNAL .ifdef TLS1_3 -CFLAGS+= -DLIBRESSL_HAS_TLS1_3 +CFLAGS+= -DLIBRESSL_HAS_TLS1_3_CLIENT +CFLAGS+= -DLIBRESSL_HAS_TLS1_3_SERVER .endif CFLAGS+= -I${.CURDIR} -- cgit v1.2.3-55-g6feb