工具
apache2 -v : Server version: Apache/2.4.7 (Ubuntu)
ubuntu 14.04 LTS
我想安装mod_auth_token
以保护我的一些文件,但我需要运行的第一个命令有问题:
命令
./configure
错误信息
configure: error: APXS not found in $PATH, please use with-apxs to specify the location of the apxs binary
除了locate apxs
返回 none 所以我想它无处可去
echo $PATH -> /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games
有任何想法吗 ?
更新1
找到了,apxs2
不见了,补充一下apt-get install apache2-dev
但是现在当我运行make
ormake check
或者make install
我收到警告并且安装停止时:
mod_auth_token.c:65:3: warning: missing sentinel in funcgtion call [ -Wformat=]
ap_set_string_slot(cmd, config, apr_pstrcat(cmd->pool, arg, '/'));
^
代码
if (arg[len -1] != '/') {
/*here*/ ap_set_string_slot(cmd, config, apr_pstrcat(cmd->pool, arg, '/'));
conf->prefix_len = len + 1;
....