Reorder Electron OpenSSL dependency (#1636)
* Reorder Electron OpenSSL dependency * changelog
This commit is contained in:
parent
ac82bd285d
commit
ae8e50fc36
|
@ -8,6 +8,7 @@ X.Y.Z Release notes
|
|||
|
||||
### Bug fixes
|
||||
* [Object Server] Fixed a typing error leading to `_getExistingUser` wasn't defined in the Chrome debugging support library (#1625).
|
||||
* [Electron] Fixed a `dlopen` error related to OpenSSL that prevented using realm-js on Linux (#1636).
|
||||
|
||||
### Internal
|
||||
* None.
|
||||
|
|
|
@ -44,6 +44,11 @@
|
|||
],
|
||||
"include_dirs": [
|
||||
"src"
|
||||
],
|
||||
"conditions": [
|
||||
["runtime=='electron'", {
|
||||
"dependencies": [ "OpenSSL" ]
|
||||
}]
|
||||
]
|
||||
},
|
||||
{
|
||||
|
|
|
@ -190,9 +190,6 @@
|
|||
}
|
||||
}, {
|
||||
"dependencies": [ "vendored-realm" ]
|
||||
}],
|
||||
["runtime=='electron'", {
|
||||
"dependencies": [ "OpenSSL" ]
|
||||
}]
|
||||
]
|
||||
},
|
||||
|
@ -226,9 +223,6 @@
|
|||
}
|
||||
}, {
|
||||
"dependencies": [ "vendored-realm" ]
|
||||
}],
|
||||
["runtime=='electron'", {
|
||||
"dependencies": [ "OpenSSL" ]
|
||||
}]
|
||||
],
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue