Skip to content

Commit

Permalink
Upgrade to OpenSSL 3.3.1 for SAM CLI Installer
Browse files Browse the repository at this point in the history
  • Loading branch information
dkphm committed Aug 6, 2024
1 parent fe5649d commit 080a87e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions installer/pyinstaller/build-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ if [ "$python_version" = "" ]; then
fi

if [ "$openssl_version" = "" ]; then
openssl_version="1.1.1w";
openssl_version="3.3.1";
fi

if [ "$zlib_version" = "" ]; then
Expand Down Expand Up @@ -49,7 +49,7 @@ mkdir -p .build/output/openssl
cd .build/output/openssl

echo "Building OpenSSL"
curl -L "https://github.com/openssl/openssl/releases/download/OpenSSL_${openssl_version//./_}/openssl-${openssl_version}.tar.gz" --output openssl.tar.gz
curl -L "https://github.com/openssl/openssl/releases/download/openssl-${openssl_version}/openssl-${openssl_version}.tar.gz" --output openssl.tar.gz
tar xzf openssl.tar.gz
cd openssl-${openssl_version}
# install_sw installs OpenSSL without manual pages
Expand Down
2 changes: 1 addition & 1 deletion installer/pyinstaller/build-mac.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ if [ "$python_library_zip_filename" = "" ]; then
fi

if [ "$openssl_version" = "" ]; then
openssl_version="1.1.1w";
openssl_version="3.3.1";
fi

if [ "$python_version" = "" ]; then
Expand Down

0 comments on commit 080a87e

Please sign in to comment.