我想将 OpenSSL 从 0.9.8w 升级到 1.0.0I 或 1.0.1a。
我在用
os.name Linux
os.version 2.6.18-164.9.1.el5
答案1
使用 git 提取源代码并自己构建它很容易。
mkdir ~/openssl
cd ~/openssl
git clone git://git.openssl.org/openssl.git .
从安装文档:
./config
make
make test
make install
最后一个命令应以超级用户身份执行。
请注意, git checkout xxx 可用于选择您要使用的版本。