Skip to content

Instantly share code, notes, and snippets.

@rudSarkar
Created August 2, 2021 14:32
Show Gist options
  • Save rudSarkar/438df302aea0b742ea8518c3a6165968 to your computer and use it in GitHub Desktop.
Save rudSarkar/438df302aea0b742ea8518c3a6165968 to your computer and use it in GitHub Desktop.
Setup openssl with zlib support
eval sudo wget https://www.openssl.org/source/openssl-1.1.1k.tar.gz
eval sudo tar -zxvf openssl-1.1.0e.tar.gz
eval sudo cd openssl-1.1.0e
eval sudo rm ../openssl-1.1.0e.tar.gz
eval sudo ./config zlib
eval sudo make
eval sudo make install
eval which openssl
eval echo "OpenSSL installed with zlib support"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment