actube/src/contrib/install_openssl111.sh

20 lines
297 B
Bash
Raw Permalink Normal View History

2022-07-28 01:34:56 +02:00
#!/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