openssl-1.0.2

openssl-1.0.2 が出ていたのでインストールしておいた。関連して ssh と bind も。

https://www.openssl.org/source/openssl-1.0.2.tar.gz
cd /usr/local/src
tar zxf openssl-1.0.2.tar.gz
cd /usr/local/src/openssl-1.0.2
./config
make
make test
make install

ssh をリビルド

cd /usr/local/src/openssh-6.7p1
make distclean
./configure --with-tcp-wrappers --with-ssl-dir=/usr/local/ssl --with-zlib=/usr/local --sysconfdir=/usr/local/etc/ssh
make
make install
/etc/rc.d/sshd restart
ssh -V
OpenSSH_6.7p1, OpenSSL 1.0.2 22 Jan 2015

bind をリビルド

cd /usr/local/src/bind-9.10.2b1
make distclean
./configure --with-openssl=/usr/local/ssl
make
bin/tests/system/ifconfig.sh up
make test
make install
/etc/rc.d/named restart
/usr/local/sbin/named -V
BIND 9.10.2b1 id:fb3b6818 built by make with '--with-openssl=/usr/local/ssl'
compiled by GCC 4.2.1 20070831 patched [FreeBSD]
using OpenSSL version: OpenSSL 1.0.2 22 Jan 2015
using libxml2 version: 2.9.1