mirror of https://github.com/grpc/grpc-node.git
Merge pull request #589 from murgatroid99/boringssl_threads
Remove use of OPENSSL_NO_THREADS with BoringSSL
This commit is contained in:
commit
290a9a0e3a
|
@ -118,11 +118,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": [
|
||||
|
@ -228,6 +223,9 @@
|
|||
'cflags': [
|
||||
'-Wno-implicit-fallthrough'
|
||||
],
|
||||
'defines': [
|
||||
'_XOPEN_SOURCE=700'
|
||||
],
|
||||
'dependencies': [
|
||||
],
|
||||
'sources': [
|
||||
|
|
|
@ -102,11 +102,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": [
|
||||
|
@ -200,6 +195,9 @@
|
|||
'cflags': [
|
||||
'-Wno-implicit-fallthrough'
|
||||
],
|
||||
'defines': [
|
||||
'_XOPEN_SOURCE=700'
|
||||
],
|
||||
'dependencies': [
|
||||
% for dep in getattr(lib, 'deps', []):
|
||||
'${dep}',
|
||||
|
|
Loading…
Reference in New Issue