summaryrefslogtreecommitdiff
path: root/src/lib/libssl/Makefile
diff options
context:
space:
mode:
authorjsing <>2020-05-10 14:22:51 +0000
committerjsing <>2020-05-10 14:22:51 +0000
commite3c950e99fdc9bd1236909cca3074806223d651b (patch)
tree24ef4e392f9a47dd96a11297a8b36b4198afe23d /src/lib/libssl/Makefile
parent2c5bb57394ae3bd0d749e60f9e5489396e6f7d75 (diff)
downloadopenbsd-e3c950e99fdc9bd1236909cca3074806223d651b.tar.gz
openbsd-e3c950e99fdc9bd1236909cca3074806223d651b.tar.bz2
openbsd-e3c950e99fdc9bd1236909cca3074806223d651b.zip
Provide an easy way to get debug information from TLSv1.3 handshakes.
This makes it easier to debug TLSv1.3 handshake failures. "Yes please!" tb@, ok beck@
Diffstat (limited to 'src/lib/libssl/Makefile')
-rw-r--r--src/lib/libssl/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/libssl/Makefile b/src/lib/libssl/Makefile
index 7631dd4cd4..d88e1e9a73 100644
--- a/src/lib/libssl/Makefile
+++ b/src/lib/libssl/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.64 2020/03/13 16:40:42 jsing Exp $ 1# $OpenBSD: Makefile,v 1.65 2020/05/10 14:22:51 jsing Exp $
2 2
3.include <bsd.own.mk> 3.include <bsd.own.mk>
4.ifndef NOMAN 4.ifndef NOMAN
@@ -20,6 +20,9 @@ CFLAGS+= -DLIBRESSL_INTERNAL
20CFLAGS+= -DLIBRESSL_HAS_TLS1_3_CLIENT 20CFLAGS+= -DLIBRESSL_HAS_TLS1_3_CLIENT
21CFLAGS+= -DLIBRESSL_HAS_TLS1_3_SERVER 21CFLAGS+= -DLIBRESSL_HAS_TLS1_3_SERVER
22.endif 22.endif
23.ifdef TLS1_3_DEBUG
24CFLAGS+= -DTLS13_DEBUG
25.endif
23CFLAGS+= -I${.CURDIR} 26CFLAGS+= -I${.CURDIR}
24 27
25LDADD+= -L${BSDOBJDIR}/lib/libcrypto -lcrypto 28LDADD+= -L${BSDOBJDIR}/lib/libcrypto -lcrypto