Skip to content

Commit

Permalink
Update OpenSSL to the latest stable version (3.2.1)
Browse files Browse the repository at this point in the history
  • Loading branch information
jlaine committed Mar 12, 2024
1 parent 39e0b97 commit 009f802
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/build-openssl.bat
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Buil
SET PATH=%PATH%;C:\Program Files\NASM

mkdir openssl
curl -L https://www.openssl.org/source/openssl-3.2.0.tar.gz -o openssl.tar.gz
curl -L https://www.openssl.org/source/openssl-3.2.1.tar.gz -o openssl.tar.gz
tar xzf openssl.tar.gz -C openssl --strip-components 1
cd openssl

Expand Down
2 changes: 1 addition & 1 deletion scripts/build-openssl.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def run(cmd, *, env=None):
os.chdir(build_dir)

# build openssl
extract("openssl", "https://www.openssl.org/source/openssl-3.2.0.tar.gz")
extract("openssl", "https://www.openssl.org/source/openssl-3.2.1.tar.gz")
os.chdir("openssl")
run(["./config"] + configure_args + ["no-apps", "no-comp", "no-dso", "no-shared", "no-tests"])
run(["make"])
Expand Down

0 comments on commit 009f802

Please sign in to comment.