summaryrefslogtreecommitdiff
path: root/src/lib/libssl/Makefile
diff options
context:
space:
mode:
authorjsing <>2020-01-22 01:21:43 +0000
committerjsing <>2020-01-22 01:21:43 +0000
commit33e8d2d1da86ec2fec46397361af862802b89333 (patch)
tree57cea55ebca0c29b9c1f68035245c609e56c6cee /src/lib/libssl/Makefile
parentd2535f6d6c56956061dc8da2a8a2bfdd6b98a0a4 (diff)
downloadopenbsd-33e8d2d1da86ec2fec46397361af862802b89333.tar.gz
openbsd-33e8d2d1da86ec2fec46397361af862802b89333.tar.bz2
openbsd-33e8d2d1da86ec2fec46397361af862802b89333.zip
Split the TLSv1.3 guards into separate client and server guards.
ok beck@ tb@
Diffstat (limited to 'src/lib/libssl/Makefile')
-rw-r--r--src/lib/libssl/Makefile5
1 files changed, 3 insertions, 2 deletions
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 @@
1# $OpenBSD: Makefile,v 1.58 2020/01/20 13:10:37 jsing Exp $ 1# $OpenBSD: Makefile,v 1.59 2020/01/22 01:21:43 jsing Exp $
2 2
3.include <bsd.own.mk> 3.include <bsd.own.mk>
4.ifndef NOMAN 4.ifndef NOMAN
@@ -17,7 +17,8 @@ CFLAGS+= -Werror
17.endif 17.endif
18CFLAGS+= -DLIBRESSL_INTERNAL 18CFLAGS+= -DLIBRESSL_INTERNAL
19.ifdef TLS1_3 19.ifdef TLS1_3
20CFLAGS+= -DLIBRESSL_HAS_TLS1_3 20CFLAGS+= -DLIBRESSL_HAS_TLS1_3_CLIENT
21CFLAGS+= -DLIBRESSL_HAS_TLS1_3_SERVER
21.endif 22.endif
22CFLAGS+= -I${.CURDIR} 23CFLAGS+= -I${.CURDIR}
23 24