OpenSSL 1.1.1a インストール

OpenSSLの1.1.1aが公開されてのでインストールする。

https://www.openssl.org/news/newslog.html

  • 20-Nov-2018 OpenSSL 1.1.1a is now available, including bug and security fixes
  • 20-Nov-2018 OpenSSL 1.1.0j is now available, including bug and security fixes
  • 20-Nov-2018 OpenSSL 1.0.2q is now available, including bug and security fixes
cd /usr/local/src
/opt/curl/bin/curl -L https://www.openssl.org/source/openssl-1.1.1a.tar.gz -o openssl-1.1.1a.tar.gz
tar zxvf openssl-1.1.1a.tar.gz
cd openssl-1.1.1a

PERL="/opt/perl5/bin/perl" ./config -fPIC --prefix=/opt/openssl-1.1.1 shared
make
make install

完了