summaryrefslogtreecommitdiff
path: root/deps
diff options
context:
space:
mode:
authorSam Roberts <vieuxtech@gmail.com>2019-04-25 15:42:07 -0700
committerMichaƫl Zasso <targos@protonmail.com>2019-04-30 08:17:29 +0200
commitb68132e01aa372c124d4c47b2821fc765987d01f (patch)
tree4aff81ca2a84f1e486812ff4a3775c772b198f04 /deps
parent615d3863908844400330964924ac2cad4a467736 (diff)
downloadandroid-node-v8-b68132e01aa372c124d4c47b2821fc765987d01f.tar.gz
android-node-v8-b68132e01aa372c124d4c47b2821fc765987d01f.tar.bz2
android-node-v8-b68132e01aa372c124d4c47b2821fc765987d01f.zip
deps: configure OpenSSL's SSL_trace to be built
OpenSSL doesn't compile `SSL_trace()` by default for historical reasons. Add the enable-ssl-trace option to the OpenSSL Configure arguments. PR-URL: https://github.com/nodejs/node/pull/27376 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Diffstat (limited to 'deps')
-rw-r--r--deps/openssl/config/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/deps/openssl/config/Makefile b/deps/openssl/config/Makefile
index ff87bba712..b6eabce211 100644
--- a/deps/openssl/config/Makefile
+++ b/deps/openssl/config/Makefile
@@ -24,7 +24,8 @@ CONFIGURE = ./Configure
# no-comp: against CRIME attack
# no-shared: openssl-cli needs static link
# no-afalgeng: old Linux kernel < 4.0 does not support it
-COPTS = no-comp no-shared no-afalgeng
+# enable-ssl-trace: cause the optional SSL_trace API to be built
+COPTS = no-comp no-shared no-afalgeng enable-ssl-trace
# disable platform check in Configure
NO_WARN_ENV = CONFIGURE_CHECKER_WARN=1