diff options
-rw-r--r-- | src/lib/libssl/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/libssl/Makefile b/src/lib/libssl/Makefile index ca6e402278..cd37f3ce86 100644 --- a/src/lib/libssl/Makefile +++ b/src/lib/libssl/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.54 2019/01/23 00:50:39 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.55 2019/02/04 15:55:16 jsing Exp $ |
2 | 2 | ||
3 | .include <bsd.own.mk> | 3 | .include <bsd.own.mk> |
4 | .ifndef NOMAN | 4 | .ifndef NOMAN |
@@ -16,6 +16,9 @@ CFLAGS+= -Wall -Wundef | |||
16 | CFLAGS+= -Werror | 16 | CFLAGS+= -Werror |
17 | .endif | 17 | .endif |
18 | CFLAGS+= -DLIBRESSL_INTERNAL | 18 | CFLAGS+= -DLIBRESSL_INTERNAL |
19 | .ifdef TLS1_3 | ||
20 | CFLAGS+= -DLIBRESSL_HAS_TLS1_3 | ||
21 | .endif | ||
19 | CFLAGS+= -I${.CURDIR} | 22 | CFLAGS+= -I${.CURDIR} |
20 | 23 | ||
21 | LDADD+= -L${BSDOBJDIR}/lib/libcrypto -lcrypto | 24 | LDADD+= -L${BSDOBJDIR}/lib/libcrypto -lcrypto |