File openssl_binary_detection.patch of Package nodejs16
43
1
Allow non-standard openssl binary names
2
3
Index: node-v14.15.1/test/common/index.js
4
===================================================================
5
--- node-v14.15.1.orig/test/common/index.js
6
+++ node-v14.15.1/test/common/index.js
7
8
get opensslCli() {
9
if (opensslCli !== null) return opensslCli;
10
11
+ let cli_candidates = [];
12
+
13
if (process.config.variables.node_shared_openssl) {
14
// Use external command
15
- opensslCli = 'openssl';
16
+ cli_candidates = cli_candidates.concat(['openssl-1_1', 'openssl']);
17
} else {
18
// Use command built from sources included in Node.js repository
19
- opensslCli = path.join(path.dirname(process.execPath), 'openssl-cli');
20
+ cli_candidates.push(path.join(path.dirname(process.execPath), 'openssl-cli'));
21
}
22
23
- if (exports.isWindows) opensslCli += '.exe';
24
+ let checkOpensslCli = function(opensslCli) {
25
+ if (exports.isWindows) opensslCli += '.exe';
26
+ const opensslCmd = spawnSync(opensslCli, ['version']);
27
+ if (opensslCmd.status !== 0 || opensslCmd.error !== undefined) {
28
+ // OpenSSL command cannot be executed
29
+ opensslCli = false;
30
+ }
31
+ return opensslCli;
32
+ };
33
34
- const opensslCmd = spawnSync(opensslCli, ['version']);
35
- if (opensslCmd.status !== 0 || opensslCmd.error !== undefined) {
36
- // OpenSSL command cannot be executed
37
- opensslCli = false;
38
+ for (let i=0; i<cli_candidates.length && !opensslCli; i=i+1) {
39
+ opensslCli = checkOpensslCli(cli_candidates[i]);
40
}
41
return opensslCli;
42
},
43