3

我正在尝试在我的 Mac 上从源代码安装 apache。但不断遇到问题。我尝试了很多不同的东西,但无法构建它。

首先,我无法正确配置,所以我重新安装了 apache apr。现在,我可以进行配置,但是当我运行 make 时,我得到了这个错误:

libtool: compile: unable to infer tagged configuration
libtool: compile: specify a tag with `--tag'

我尝试将此添加到 libtool 标记中:

./configure LIBTOOL='/usr/local/bin/glibtool --tag=CC'

这仍然给出了同样的错误。我读到山狮 glibtool 是类 unix 的 libtool,所以这就是我在这里尝试的原因。仍然无济于事。我还尝试将使用的 libtool 符号链接到我机器上的其他版本,但仍然无济于事,因为我遇到了同样的错误。

这是make命令运行的内容,我试过了symlinking /usr/share/apr-1/build-1/libtool

/usr/share/apr-1/build-1/libtool --silent --mode=compile /usr/local/Cellar/apple-gcc42/4.2.1-5666.3/bin/gcc-4.2 -std=gnu99   -O2 -arch x86_64   -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK  -I/opt/local/include -I/opt/X11/include  -I. -I/usr/local/src/httpd-2.4.3/os/unix -I/usr/local/src/httpd-2.4.3/include -I/usr/include/apr-1 -I/usr/local/include -I/usr/local/src/httpd-2.4.3/modules/aaa -I/usr/local/src/httpd-2.4.3/modules/cache -I/usr/local/src/httpd-2.4.3/modules/core -I/usr/local/src/httpd-2.4.3/modules/database -I/usr/local/src/httpd-2.4.3/modules/filters -I/usr/local/src/httpd-2.4.3/modules/ldap -I/usr/local/src/httpd-2.4.3/modules/loggers -I/usr/local/src/httpd-2.4.3/modules/lua -I/usr/local/src/httpd-2.4.3/modules/proxy -I/usr/local/src/httpd-2.4.3/modules/session -I/usr/local/src/httpd-2.4.3/modules/ssl -I/usr/local/src/httpd-2.4.3/modules/test -I/usr/local/src/httpd-2.4.3/server -I/usr/local/src/httpd-2.4.3/modules/arch/unix -I/usr/local/src/httpd-2.4.3/modules/dav/main -I/usr/local/src/httpd-2.4.3/modules/generators -I/usr/local/src/httpd-2.4.3/modules/mappers  -prefer-non-pic -static -c exports.c && touch exports.lo

这仍然没有奏效。

最后,如果我像这样运行配置,我会走得更远,./configure --with-apr='/usr/local/src/apr/apr-config(我安装系统的地方,但这仍然是坏的。)这让我更进一步,但它仍然无法完成 make,并给了我很多这样的错误。

exports.c:1809: error: redefinition of 'ap_hack_apr_version_string'
exports.c:1141: error: previous definition of 'ap_hack_apr_version_string' was here
4

1 回答 1

1

我终于想通了 ...

对于在 Mountain Lion 上安装 apache 时遇到问题的任何人,看起来源的 build/config_vars.mk 文件中的默认 LIBTOOLS 位置错误。

我用自制软件重新安装了 LIBTOOLS(将它放在 /usr/local/bin/glibtool 中)并将其设置为变量并且一切正常。

于 2013-01-10T04:22:11.163 回答