我正在尝试在 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.
我在上面提到的两个位置都看到了标题。
任何指针?
谢谢!