diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2020-08-21 11:55:47 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2020-08-21 11:55:47 +0000 |
commit | 16f9beee812dcad50f6f8ccd8da3283d8273bb3b (patch) | |
tree | 7b3ac8fed4c6a7b27e57bd2b0fd6b49a37de6e83 /package/targets.mak | |
parent | 36cd749078bb7d7107e85f2c427213046faa19f3 (diff) | |
download | s6-networking-16f9beee812dcad50f6f8ccd8da3283d8273bb3b.tar.xz |
LibreSSL needs -lpthread
Diffstat (limited to 'package/targets.mak')
-rw-r--r-- | package/targets.mak | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/targets.mak b/package/targets.mak index 12f9065..a15d3bc 100644 --- a/package/targets.mak +++ b/package/targets.mak @@ -37,7 +37,7 @@ BIN_TARGETS += s6-tlsclient s6-tlsc s6-tlsserver s6-tlsd ifeq ($(SSL_IMPL),tls) LIB_DEFS += CRYPTOSUPPORT=stls -CRYPTO_LIB := -ltls -lssl -lcrypto +CRYPTO_LIB := -ltls -lssl -lcrypto -lpthread else ifeq ($(SSL_IMPL),bearssl) |