Apache Thrift 0.9.0 won't configure per instructions

杀马特。学长 韩版系。学妹 提交于 2019-12-22 11:22:48

问题


Apache Thrift 0.9.0 won't configure per instructions on base CentOS install. When you try to do the ./configure, it gives you an "Error: libcrypto required"

The documentation says that you need:

sudo yum install automake libtool flex bison pkgconfig gcc-c++ boost-devel libevent-devel zlib-devel python-devel ruby-devel

http://thrift.apache.org/docs/install/centos/


回答1:


The documentation is missing the openssl dependency, you also need to include:

openssl-devel.x86_64 in your package install list above

What you really need to install is

sudo yum install automake libtool flex bison pkgconfig gcc-c++ boost-devel libevent-devel zlib-devel python-devel ruby-devel openssl-devel.x86_64

Or just this if you've already installed the above per the original instructions.

sudo yum install openssl-devel.x86_64


来源:https://stackoverflow.com/questions/14388135/apache-thrift-0-9-0-wont-configure-per-instructions

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!