要安装memcached,我运行:
./configure从memcached服务器位置接收到错误:
checking for libevent directory... configure: error: libevent is required. You can get it from http://www.monkey.org/~provos/libevent/
If it's already installed, specify its path using --with-libevent=/dir/因此,我从http://www.monkey.org/~provos/libevent/下载并运行./配置从下载的libevent文件夹手动安装libevent。
但当我尝试指挥时:
./configure --with-libevent=/export/home/me/libevent-2.0.21-stable/我也收到了同样的错误:
checking for libevent directory... configure: error: libevent is required. You can get it from http://www.monkey.org/~provos/libevent/
If it's already installed, specify its path using --with-libevent=/dir/我怎样才能检查安装在哪里?我是否正确指定了路径?
当我从防火墙后面安装memcached时,我需要手动安装libevent。
发布于 2014-04-27 03:14:57
下载和解压缩libevent之后,您必须配置、构建和安装它。
只有这样,您才能返回到memcached目录并重新运行它的配置,如果它不是在标准位置之一(如/lib、/usr/lib或/usr/local/lib),则指定在何处安装了libevent。
https://stackoverflow.com/questions/23317867
复制相似问题