我正在尝试安装ActuMeq C++客户端安装(CMS)
当我尝试配置时,出现以下错误。

configure: WARNING: APR not found
The Apache Portable Runtime (APR) library cannot be found.
Please install APR on this system and supply the appropriate
--with-apr option to 'configure'
configure: error: no suitable APR found

我确实安装了apr和apr util,如下所示:
~/activemq-cpp-library-3.3.0 $ rpm -qa|grep apr
apr-1.2.7-11.el5_6.5
apr-devel-1.2.7-11.el5_6.5
apr-1.2.7-11.el5_6.5
apr-util-1.2.7-11.el5_5.2
xorg-x11-drv-dynapro-1.1.0-2
apr-util-1.2.7-11.el5_5.2
apr-devel-1.2.7-11.el5_6.5

我可以添加前缀——用apr来配置它,但我不知道路径。
当我这样做的时候
$ locate apr | less

它把所有有APR的东西都变好了。
我该怎么解决?

最佳答案

activemq cpp需要apr和apr util版本1.3或更高版本,您可以在自述文件中找到它们以及其他必需的依赖项。

关于c++ - ActiveMq C++客户端安装显示未安装APR,为什么?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7957837/

10-11 19:13