From 8a4e4a4242a7ab2df44eb535a019d38f2852c108 Mon Sep 17 00:00:00 2001 From: Sam Roberts Date: Thu, 25 Apr 2019 15:42:07 -0700 Subject: 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 Reviewed-By: Ben Noordhuis Reviewed-By: Richard Lau --- deps/openssl/config/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'deps/openssl') 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 -- cgit v1.2.3