Skip to content

Commit b68132e

Browse files
sam-githubtargos
authored andcommitted
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: #27376 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Richard Lau <[email protected]>
1 parent 615d386 commit b68132e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

deps/openssl/config/Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ CONFIGURE = ./Configure
2424
# no-comp: against CRIME attack
2525
# no-shared: openssl-cli needs static link
2626
# no-afalgeng: old Linux kernel < 4.0 does not support it
27-
COPTS = no-comp no-shared no-afalgeng
27+
# enable-ssl-trace: cause the optional SSL_trace API to be built
28+
COPTS = no-comp no-shared no-afalgeng enable-ssl-trace
2829

2930
# disable platform check in Configure
3031
NO_WARN_ENV = CONFIGURE_CHECKER_WARN=1

0 commit comments

Comments
 (0)