私の専用サーバーには 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 を再度インストールしようとしました。しかし、「libssl または openssl/ssl.h が見つかりません」というエラーが繰り返し表示されます。何が足りないのか、誰か分かりますか?
答え1
の開発ファイルは<package>
通常 にあります<package>-devel
。 をインストールしますopenssl-devel
。
答え2
わかりました。間違いが見つかりました。openssl だけでなく openssl-devel も次のようにダウンロードする必要がありました。
yum install openssl-devel