New files
This commit is contained in:
19
src/contrib/install_openssl111.sh
Normal file
19
src/contrib/install_openssl111.sh
Normal file
@ -0,0 +1,19 @@
|
||||
#!/bin/sh
|
||||
|
||||
|
||||
VERSION="1.1.1f"
|
||||
#VERSION="1.0.1l"
|
||||
#VERSION="1.0.2"
|
||||
|
||||
if [ ! -e openssl-${VERSION}.tar.gz ]
|
||||
then
|
||||
wget https://www.openssl.org/source/openssl-${VERSION}.tar.gz
|
||||
fi
|
||||
|
||||
tar xzvf openssl-${VERSION}.tar.gz
|
||||
#patch -p0 -i openssl-${VERSION}_cisco.patch
|
||||
cd openssl-${VERSION}
|
||||
./config
|
||||
make -j16
|
||||
|
||||
|
Reference in New Issue
Block a user