Update OpenSSL to version 3.0.15.

This commit is contained in:
Christian Sarre 2024-09-17 13:18:55 +03:00
parent c87845770d
commit 0e7884d13a

View file

@ -95,9 +95,9 @@ build-x86_64-linux-musl:
# Build OpenSSL statically # Build OpenSSL statically
- apt-get install -y build-essential wget musl-tools - apt-get install -y build-essential wget musl-tools
- wget https://www.openssl.org/source/openssl-3.0.14.tar.gz - wget https://github.com/openssl/openssl/releases/download/openssl-3.0.15/openssl-3.0.15.tar.gz
- tar xzvf openssl-3.0.14.tar.gz - tar xzvf openssl-3.0.15.tar.gz
- cd openssl-3.0.14 - cd openssl-3.0.15
- ./config no-async -fPIC --openssldir=/usr/local/ssl --prefix=/usr/local - ./config no-async -fPIC --openssldir=/usr/local/ssl --prefix=/usr/local
- make - make
- make install - make install