diff options
author | Sergey Kandaurov <pluknet@nginx.com> | 2020-05-01 13:02:30 +0300 |
---|---|---|
committer | Sergey Kandaurov <pluknet@nginx.com> | 2020-05-01 13:02:30 +0300 |
commit | 1a6fc01fb853052536b49cbb4fe612c8ac4467ab (patch) | |
tree | ec74065b84cd7935af6b7adda6b4f9869fa57f7f /auto/lib | |
parent | cf5168c9e028d19f8408b46f35299a91990f0848 (diff) | |
download | nginx-1a6fc01fb853052536b49cbb4fe612c8ac4467ab.tar.gz nginx-1a6fc01fb853052536b49cbb4fe612c8ac4467ab.zip |
Configure: fixed static compilation with OpenSSL 1.1.1 / BoringSSL.
See 7246:04ebf29eaf5b for details.
Diffstat (limited to 'auto/lib')
-rw-r--r-- | auto/lib/openssl/conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/auto/lib/openssl/conf b/auto/lib/openssl/conf index faebd8fa4..046317f8a 100644 --- a/auto/lib/openssl/conf +++ b/auto/lib/openssl/conf @@ -149,7 +149,7 @@ if [ $USE_OPENSSL_QUIC = YES ]; then ngx_feature_run=no ngx_feature_incs="#include <openssl/ssl.h>" ngx_feature_path= - ngx_feature_libs="-lssl -lcrypto $NGX_LIBDL" + ngx_feature_libs="-lssl -lcrypto $NGX_LIBDL $NGX_LIBPTHREAD" ngx_feature_test="SSL_CTX_set_quic_method(NULL, NULL)" . auto/feature |