diff options
author | Bob Beck <beck@cvs.openbsd.org> | 2017-04-29 22:22:25 +0000 |
---|---|---|
committer | Bob Beck <beck@cvs.openbsd.org> | 2017-04-29 22:22:25 +0000 |
commit | 9e066ad2cd6626b4382fa29518fe5d690d9c8253 (patch) | |
tree | 9cc05894997538744c46d79d9a820ca3ff861504 /lib/libssl | |
parent | 4fc0f61fd9c24b6e83f0983afa5acc7e245b5631 (diff) |
We now require you to have a working libpthread
Diffstat (limited to 'lib/libssl')
-rw-r--r-- | lib/libssl/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libssl/Makefile b/lib/libssl/Makefile index b1e67ed9acf..7656e88cea8 100644 --- a/lib/libssl/Makefile +++ b/lib/libssl/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.32 2017/03/05 14:39:53 jsing Exp $ +# $OpenBSD: Makefile,v 1.33 2017/04/29 22:22:24 beck Exp $ .include <bsd.own.mk> .ifndef NOMAN @@ -19,6 +19,7 @@ CFLAGS+= -DLIBRESSL_INTERNAL CFLAGS+= -I${.CURDIR} LDADD+= -L${BSDOBJDIR}/lib/libcrypto -lcrypto +LDADD+= -L${BSDOBJDIR}/lib/libpthread -lpthread VERSION_SCRIPT= Symbols.map SYMBOL_LIST= ${.CURDIR}/Symbols.list |