forked from ooni/probe-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: upgrade C dependencies (ooni#1339)
This diff updates C dependencies to the latest version. Part of ooni/probe#2524.
- Loading branch information
1 parent
937f7e2
commit 99b6d88
Showing
4 changed files
with
31 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,14 +26,14 @@ func cdepsOpenSSLBuildMain(globalEnv *cBuildEnv, deps buildtoolmodel.Dependencie | |
restore := cdepsMustChdir(work) | ||
defer restore() | ||
|
||
// See https://github.com/Homebrew/homebrew-core/blob/master/Formula/[email protected] | ||
cdepsMustFetch("https://www.openssl.org/source/openssl-3.1.2.tar.gz") | ||
// See https://github.com/Homebrew/homebrew-core/blob/master/Formula/o/[email protected] | ||
cdepsMustFetch("https://www.openssl.org/source/openssl-3.1.3.tar.gz") | ||
deps.VerifySHA256( // must be mockable | ||
"a0ce69b8b97ea6a35b96875235aa453b966ba3cba8af2de23657d8b6767d6539", | ||
"openssl-3.1.2.tar.gz", | ||
"f0316a2ebd89e7f2352976445458689f80302093788c466692fb2a188b2eacf6", | ||
"openssl-3.1.3.tar.gz", | ||
) | ||
must.Run(log.Log, "tar", "-xf", "openssl-3.1.2.tar.gz") | ||
_ = deps.MustChdir("openssl-3.1.2") // must be mockable | ||
must.Run(log.Log, "tar", "-xf", "openssl-3.1.3.tar.gz") | ||
_ = deps.MustChdir("openssl-3.1.3") // must be mockable | ||
|
||
mydir := filepath.Join(topdir, "CDEPS", "openssl") | ||
for _, patch := range cdepsMustListPatches(mydir) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters