在Centos上安装Plone失败:无法findlibssl或openssl / ssl.h

我的专用服务器有CentOS 5.5。 我试图安装Plone,所以我基本上做到了:

wget launchpad.net/plone/4.0/4.0.2/+download/Plone-4.0.2-UnifiedInstaller.tgz tar xzf Plone-4.0.2-UnifiedInstaller.tgz cd Plone-4.0.2-UnifiedInstaller ./install.sh zeo 

我遇到了以下错误:

 Unable to find libssl or openssl/ssl.h. If you wish to build without SSL support, run install.sh again with --without-ssl flag. Otherwise, install your platform's openssl-dev libraries and headers and try again. 

在这个错误之后,我成功安装了openssl:

 yum install openssl 

我试图再次安装Plone。 但我不断收到错误:“无法findlibssl或openssl / ssl.h”。 任何人都有一个想法我想要什么?

<package>开发文件通常在<package>-devel 。 安装openssl-devel

好的,我发现我的错误。 我不仅要下载openssl,还要openssl-devel像这样:

 yum install openssl-devel