I installed OpenSSL from source by:
wget https://www.openssl.org/source/openssl-1.0.2h.tar.gz
tar -xvzf openssl-1.0.2h.tar.gz
cd openssl-1.0.2h/
./config --prefix=/usr/local/openssl --openssldir=/usr/local/openssl
sudo make
sudo make install
But when I type openssl on the command line, it says 'The program 'openssl' is currently not installed'. What should I do?
enable-ec_nistp_64_gcc_128
. It also discusses how to add an RPATH. You might be surprised to learn whatldd /usr/local/openssl/bin/openssl
returns. It may be usinglibssl
andlibcrypto
from/usr/lib
. – Nov 09 '16 at 12:17