openssl-1.0.1e

openssl-1.0.1e が出ていたのでインストールした。関連して OpenSSH と bind もリビルドしてインストールした。

wget http://www.openssl.org/source/openssl-1.0.1e.tar.gz
cd /usr/local/src
tar zxf openssl-1.0.1e.tar.gz
cd /usr/local/src/openssl-1.0.1e
./config; make; make test; make install

OpenSSL リビルド

cd /usr/local/src/openssh-6.1p1
make distclean
./configure --with-tcp-wrappers --with-ssl-dir=/usr/local/ssl --with-zlib=/usr/local --sysconfdir=/usr/local/etc/ssh
make; make install
rehash
/etc/rc.d/sshd restart
ssh -V

bind のリビルド

cd /usr/local/src/bind-9.9.3b1
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