ActiveMq C++客户端安装显示 APR 未安装,为什么?
我正在尝试安装 ActiveMQ 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
我可以添加前缀 --with-apr 来配置它,但我不知道路径。
当我这样做时,
$ locate apr | less
它会 grep 包含 apr 的所有内容。
我该如何解决这个问题?
I m trying to install ActiveMQ C++ client install (CMS)
I am getting the following error, when i try to configure.
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
I do have apr and apr-util install as follows:
~/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
Well i can add the prefix --with-apr to configure it but i dont know the path.
When i do
$ locate apr | less
It greps everything that has apr in it.
How can i resolve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ActiveMQ-CPP 需要 APR 和 APR-Util 版本 1.3 或更高版本,您可以在 README 文件中找到这些以及其他所需的依赖项中列出的内容。
ActiveMQ-CPP requires APR and APR-Util version 1.3 or higher, you can find these listed in the README file along with the other required dependencies.