Skip to content

Commit

Permalink
Try latest OpenSSL
Browse files Browse the repository at this point in the history
  • Loading branch information
geneotech committed Feb 13, 2024
1 parent 36a3015 commit 7798ba0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmake/linux_actions/install_openssl3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ sudo apt update
sudo apt install -y build-essential checkinstall zlib1g-dev

# Define OpenSSL version
OPENSSL_VERSION="openssl-3.0.8"
OPENSSL_VERSION="openssl-3.2.1"

# Download OpenSSL from the official source
sudo wget "https://github.com/openssl/openssl/releases/download/${OPENSSL_VERSION}/${OPENSSL_VERSION}.tar.gz"
Expand All @@ -23,15 +23,15 @@ cd "${OPENSSL_VERSION}/"

echo "OpenSSL3: Calling ./config"
# Configure OpenSSL
sudo ./config no-shared
sudo ./config no-shared no-tests

echo "OpenSSL3: Calling make"
# Build OpenSSL
sudo make

echo "OpenSSL3: Calling make install"
# Install OpenSSL
sudo make install
sudo make install_sw

# Update links and cache for shared libraries
sudo ldconfig
Expand Down

0 comments on commit 7798ba0

Please sign in to comment.