0

我正在尝试在 CentOS 上构建 libwurfl ( https://github.com/filosganga/libwurfl )。我已经安装了所有依赖库,但是在为 libwurfl 运行 configure 时遇到问题。我经常遇到 Apache headers not found 问题。

如果我使用 --with-apxs 如下所示,

./configure --with-apxs=/usr/sbin/apxs/

输出:

checking for apr.h... yes
checking httpd.h usability... no
checking httpd.h presence... no
checking for httpd.h... no
configure: error: Apache headers not found.

如果我添加 --with-apache

./configure --with-apxs=/usr/sbin/apxs/ --with-apache=/usr/include/httpd/ 

输出:

checking for apxs... no
checking apr.h usability... no
checking apr.h presence... no
checking for apr.h... no
configure: error: Apache Portable Runtime headers not found.

我在上面提到的两个位置都看到了标题。

任何指针?

谢谢!

4

1 回答 1

0

在安装和配置 apr-1.5.2 和 httpd 2.2.31 之后,我在 Ubuntu 14.04 上编译了它。然后我以这种方式编译它:./configure --with-apache='/usr/local/apache2'

于 2015-09-14T16:10:15.820 回答