Skip to content

Commit 5d1463a

Browse files
Matheus MarchiniMylesBorins
Matheus Marchini
authored andcommitted
build: define HAVE_OPENSSL macro for cctest
cctest build target wasn't defining the HAVE_OPENSSL macro when node_use_openssl was true, causing inconsistencies on most `node::Environment` member's addresses. For example, if someone wanted to access the context of an environment by using `node::Environment::context()`, the object returned by the function was pointing to an invalid address. PR-URL: #17461 Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Daniel Bevenius <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Anna Henningsen <[email protected]>
1 parent c951e2c commit 5d1463a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

node.gyp

+3
Original file line numberDiff line numberDiff line change
@@ -859,6 +859,9 @@
859859
'<(OBJ_PATH)<(OBJ_SEPARATOR)node_crypto_clienthello.<(OBJ_SUFFIX)',
860860
'<(OBJ_PATH)<(OBJ_SEPARATOR)tls_wrap.<(OBJ_SUFFIX)',
861861
],
862+
'defines': [
863+
'HAVE_OPENSSL=1',
864+
],
862865
}],
863866
['v8_enable_inspector==1', {
864867
'sources': [

0 commit comments

Comments
 (0)