File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -10,9 +10,9 @@ set -o pipefail
10
10
MY_DIR=$( dirname " ${BASH_SOURCE[0]} " )
11
11
source $MY_DIR /utils.sh
12
12
13
- OPENSSL_ROOT=openssl-1.1.1l
14
- # Hash from https://www.openssl.org/source/openssl-1.1.1l .tar.gz.sha256
15
- OPENSSL_HASH=0b7a3e5e59c34827fe0c3a74b7ec8baef302b98fa80088d7f9153aa16fa76bd1
13
+ OPENSSL_ROOT=openssl-3.0.0
14
+ # Hash from https://www.openssl.org/source/openssl-3.0.0 .tar.gz.sha256
15
+ OPENSSL_HASH=59eedfcb46c25214c9bd37ed6078297b4df01d012267fe9e9eee31f61bc70536
16
16
17
17
cd /tmp
18
18
@@ -33,6 +33,10 @@ if ! perl -e 'use 5.10.0' &> /dev/null; then
33
33
make install > /dev/null
34
34
popd
35
35
export PATH=/tmp/perl-openssl/bin:${PATH}
36
+ else
37
+ # more perl modules are needed than the bare minimum already installed in CentOS
38
+ # c.f. https://github.com/openssl/openssl/blob/openssl-3.0.0/NOTES-PERL.md#general-notes
39
+ yum -y install perl-core
36
40
fi
37
41
38
42
# Download
You can’t perform that action at this time.
0 commit comments