-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
deps: upgrade openssl sources to 1.1.1j
This updates all sources in deps/openssl/openssl by: $ cd deps/openssl/ $ rm -rf openssl $ tar zxf ~/tmp/openssl-1.1.1j.tar.gz $ mv openssl-1.1.1j openssl $ git add --all openssl $ git commit openssl PR-URL: #37412 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Beth Griggs <[email protected]>
- Loading branch information
1 parent
4184806
commit afbce66
Showing
90 changed files
with
824 additions
and
322 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
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
$ ! Used by the main descrip.mms to print the installation complete | ||
$ ! message. | ||
$ ! Arguments: | ||
$ ! P1 startup / setup / shutdown scripts directory | ||
$ ! P2 distinguishing version number ("major version") | ||
$ | ||
$ systartup = p1 | ||
$ osslver = p2 | ||
$ | ||
$ WRITE SYS$OUTPUT "Installation complete" | ||
$ WRITE SYS$OUTPUT "" | ||
$ WRITE SYS$OUTPUT "The following commands need to be executed to enable you to use OpenSSL:" | ||
$ WRITE SYS$OUTPUT "" | ||
$ WRITE SYS$OUTPUT "- to set up OpenSSL logical names:" | ||
$ WRITE SYS$OUTPUT " @''systartup'openssl_startup''osslver'" | ||
$ WRITE SYS$OUTPUT "" | ||
$ WRITE SYS$OUTPUT "- to define the OpenSSL command" | ||
$ WRITE SYS$OUTPUT " @''systartup'openssl_utils''osslver'" | ||
$ WRITE SYS$OUTPUT "" |
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
$ ! Used by the main descrip.mms to print the statging installation | ||
$ ! complete | ||
$ ! message. | ||
$ ! Arguments: | ||
$ ! P1 staging software installation directory | ||
$ ! P2 staging data installation directory | ||
$ ! P3 final software installation directory | ||
$ ! P4 final data installation directory | ||
$ ! P5 startup / setup / shutdown scripts directory | ||
$ ! P6 distinguishing version number ("major version") | ||
$ | ||
$ staging_instdir = p1 | ||
$ staging_datadir = p2 | ||
$ final_instdir = p3 | ||
$ final_datadir = p4 | ||
$ systartup = p5 | ||
$ osslver = p6 | ||
$ | ||
$ WRITE SYS$OUTPUT "Staging installation complete" | ||
$ WRITE SYS$OUTPUT "" | ||
$ WRITE SYS$OUTPUT "Finish or package in such a way that the contents of the following directory" | ||
$ WRITE SYS$OUTPUT "trees end up being copied:" | ||
$ WRITE SYS$OUTPUT "" | ||
$ WRITE SYS$OUTPUT "- from ", staging_instdir | ||
$ WRITE SYS$OUTPUT " to ", final_instdir | ||
$ WRITE SYS$OUTPUT "- from ", staging_datadir | ||
$ WRITE SYS$OUTPUT " to ", final_datadir | ||
$ WRITE SYS$OUTPUT "" | ||
$ WRITE SYS$OUTPUT "When in its final destination, the following commands need to be executed" | ||
$ WRITE SYS$OUTPUT "to use OpenSSL:" | ||
$ WRITE SYS$OUTPUT "" | ||
$ WRITE SYS$OUTPUT "- to set up OpenSSL logical names:" | ||
$ WRITE SYS$OUTPUT " @''systartup'openssl_startup''osslver'" | ||
$ WRITE SYS$OUTPUT "" | ||
$ WRITE SYS$OUTPUT "- to define the OpenSSL command" | ||
$ WRITE SYS$OUTPUT " @''systartup'openssl_utils''osslver'" | ||
$ WRITE SYS$OUTPUT "" |
Oops, something went wrong.