3

现在我正在尝试在我的 Mac 上构建 Automake,到目前为止一切都在顺利进行。我构建了 Autoconf 和 m4,没有任何问题(与 git pulls 不同)。然后我到 Automake,这就是事情分崩离析的地方:

    checking whether autoconf is installed... yes
    checking whether autoconf works... yes
    checking whether autoconf is recent enough... no
    configure: error: Autoconf 2.65 or better is required.

如果我构建并安装 autoconf 2.68,问题仍然存在。我在这个上是否缺少某种技巧?

4

1 回答 1

5

make 文件在您的$PATH. 看看Sebastien 博客中的这篇文章,尤其是告诉您$PATH在构建 Automake 之前将新的 Autoconf bin 目录添加到的部分。如果您想遵循“标准”OSX 文件夹结构约定,请将 Autoconf 安装在/usr/local.

请允许我无耻地复制 Daniel Farrelly版本的 Sebastien 的剧本。

export build=~/devtools # or wherever you'd like to build
mkdir -p $build

##
# Autoconf
# http://ftpmirror.gnu.org/autoconf

cd $build
curl -OL http://ftpmirror.gnu.org/autoconf/autoconf-2.69.tar.gz
tar xzf autoconf-2.69.tar.gz
cd autoconf-2.69
./configure --prefix=/usr/local
make
sudo make install
export PATH=/usr/local/bin

##
# Automake
# http://ftpmirror.gnu.org/automake

cd $build
curl -OL http://ftpmirror.gnu.org/automake/automake-1.13.2.tar.gz
tar xzf automake-1.13.2.tar.gz
cd automake-1.13.2
./configure --prefix=/usr/local
make
sudo make install
于 2013-05-17T16:14:58.143 回答