Skip to content

Commit 887b3bb

Browse files
Merge pull request nodegit#1877 from ianhattendorf/fix/openssl-no-shared
Don't build shared OpenSSL libs
2 parents 7a1dea0 + ed0b777 commit 887b3bb

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

utils/acquireOpenSSL.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class HashVerify extends stream.Transform {
4141
}
4242

4343
const buildDarwin = async (buildCwd, macOsDeploymentTarget) => {
44-
await execPromise(`./Configure darwin64-x86_64-cc shared enable-ec_nistp_64_gcc_128 no-ssl2 no-ssl3 no-comp --prefix="${
44+
await execPromise(`./Configure darwin64-x86_64-cc no-shared enable-ec_nistp_64_gcc_128 no-ssl2 no-ssl3 no-comp --prefix="${
4545
extractPath
4646
}" --openssldir="${extractPath}" -mmacosx-version-min=${macOsDeploymentTarget}`, {
4747
cwd: buildCwd

utils/build-openssl.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@call %1 %2
22

3-
perl .\Configure %3 shared no-ssl2 no-ssl3 no-comp --prefix="%cd%\.." --openssldir="%cd%\.." || goto :error
3+
perl .\Configure %3 no-shared no-ssl2 no-ssl3 no-comp --prefix="%cd%\.." --openssldir="%cd%\.." || goto :error
44

55
nmake || goto :error
66
nmake test || goto :error

0 commit comments

Comments
 (0)