mirror of https://github.com/grpc/grpc-node.git
Remove use of OPENSSL_NO_THREADS with BoringSSL
This commit is contained in:
parent
8df65a91a2
commit
3eb67d8038
|
@ -91,7 +91,8 @@
|
|||
'GPR_BACKWARDS_COMPATIBILITY_MODE',
|
||||
'GRPC_ARES=0',
|
||||
'GRPC_UV',
|
||||
'GRPC_NODE_VERSION="1.16.0-pre1"'
|
||||
'GRPC_NODE_VERSION="1.16.0-pre1"',
|
||||
'_XOPEN_SOURCE=500'
|
||||
],
|
||||
'conditions': [
|
||||
['grpc_gcov=="true"', {
|
||||
|
@ -118,11 +119,6 @@
|
|||
'GPR_MUSL_LIBC_COMPAT'
|
||||
]
|
||||
}],
|
||||
['OS!="win" and runtime=="electron"', {
|
||||
"defines": [
|
||||
'OPENSSL_NO_THREADS'
|
||||
]
|
||||
}],
|
||||
# This is the condition for using boringssl
|
||||
['OS=="win" or runtime=="electron"', {
|
||||
"include_dirs": [
|
||||
|
|
|
@ -83,7 +83,8 @@
|
|||
'GPR_BACKWARDS_COMPATIBILITY_MODE',
|
||||
'GRPC_ARES=0',
|
||||
'GRPC_UV',
|
||||
'GRPC_NODE_VERSION="${settings.get('node_version', settings.version)}"'
|
||||
'GRPC_NODE_VERSION="${settings.get('node_version', settings.version)}"',
|
||||
'_XOPEN_SOURCE=500'
|
||||
],
|
||||
'conditions': [
|
||||
['grpc_gcov=="true"', {
|
||||
|
@ -102,11 +103,6 @@
|
|||
'GPR_MUSL_LIBC_COMPAT'
|
||||
]
|
||||
}],
|
||||
['OS!="win" and runtime=="electron"', {
|
||||
"defines": [
|
||||
'OPENSSL_NO_THREADS'
|
||||
]
|
||||
}],
|
||||
# This is the condition for using boringssl
|
||||
['OS=="win" or runtime=="electron"', {
|
||||
"include_dirs": [
|
||||
|
|
Loading…
Reference in New Issue