marginleft 发表于 2012-6-7 09:57:30

ubuntu补丁

因为sslv2自身安全原因。ubuntu发行版本中删除了opensslv2.
详见http://stackoverflow.com/questions/8206546/undefined-symbol-sslv2-method
这导致很多软件编译出问题,包括facebook的HipHop for PHP 还有php。所以编译php的时候要打补丁。
建议在ubuntu.sh中加上这个补丁,就不用自己手动搞了。尤其是新手。

#patch debian_patches_disable_SSLv2_for_openssl_1_0_0
cd ext/openssl/
wget http://gfzj.sinaapp.com/patches/ ... openssl_1_0_0.patch
patch -p3 <debian_patches_disable_SSLv2_for_openssl_1_0_0.patch
cd ../../
页: [1]
查看完整版本: ubuntu补丁