因此,我遵循了指导,并且我做到了:
./configure --prefix=/fmac/users/f****/apacheServer \
--exec-prefix=/fmac/users/f*****/apaacheServer而且它似乎没有任何错误或任何东西。
然后我就做了:
make
make install在安装时,我得到了以下错误:
libtool: install: error: cannot install `libaprutil-1.la' to a directory not
ending in /usr/local/apache2/lib你知道为什么我需要设置一些其他的配置变量吗?
发布于 2011-02-11 22:59:12
如果有人在谷歌上搜索这个答案,我想出了解决方法。我不得不:
make clean
在我的httpd-NN构建根目录中(其中NN是您正在构建的httpd版本)。
然后它成功了。
发布于 2014-05-13 07:58:51
这件事对我很有效:
如果您将apache、apr、apr-util安装在不同的位置(默认位置除外),并且没有root权限,则需要将apache配置为:
./configure --prefix=path/to/your/apachefolder --with-apr=/path/for/apr -with-apr-util=/path/for/apr-util --with-pcre=/path/for/pcre这对我很有效。我希望这能帮到你。
https://stackoverflow.com/questions/4961516
复制相似问题