Skip to content

Commit 7df0fc5

Browse files
committed
build: move OPENSSL_API_COMPAT to else clause
Currently there are a number of deprecation warnings generated when linking with OpenSSL 3.0, for example: In file included from ../src/crypto/crypto_scrypt.h:6, from ../src/crypto/crypto_scrypt.cc:1: ../src/crypto/crypto_util.h:64:37: warning: ‘void RSA_free(RSA*)’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 64 | using RSAPointer = DeleteFnPtr<RSA, RSA_free>; The reason for this is that I had placed the macro OPENSSL_API_COMPAT inside of the node_shared_openssl="false" clause, but that was a mistake and this macro should have gone into the else clause instead. PR-URL: #38126 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent e96773b commit 7df0fc5

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

node.gypi

+4-3
Original file line numberDiff line numberDiff line change
@@ -326,9 +326,6 @@
326326
# For tests
327327
'./deps/openssl/openssl.gyp:openssl-cli',
328328
],
329-
# Set 1.0.0 as the API compability level to avoid the
330-
# deprecation warnings when using OpenSSL 3.0.
331-
'defines': ['OPENSSL_API_COMPAT=0x10000000L'],
332329
'conditions': [
333330
# -force_load or --whole-archive are not applicable for
334331
# the static library
@@ -364,6 +361,10 @@
364361
],
365362
}],
366363
]
364+
}, {
365+
# Set 1.0.0 as the API compability level to avoid the
366+
# deprecation warnings when using OpenSSL 3.0.
367+
'defines': [ 'OPENSSL_API_COMPAT=0x10000000L', ]
367368
}],
368369
[ 'openssl_quic=="true" and node_shared_ngtcp2=="false"', {
369370
'dependencies': [ './deps/ngtcp2/ngtcp2.gyp:ngtcp2' ]

0 commit comments

Comments
 (0)