Êtes-vous certain que votre PATH
n'a pas été corrompu? J'ai les outils automatiques dans /usr/bin
sur ma machine:
> ls -lah /usr/bin/auto*
-rwxr-xr-x 1 root wheel 13K 16 mai 2011 /usr/bin/autoconf
-rwxr-xr-x 1 root wheel 8,2K 16 mai 2011 /usr/bin/autoheader
-rwxr-xr-x 1 root wheel 30K 16 mai 2011 /usr/bin/autom4te
-rwxr-xr-x 2 root wheel 227K 16 mai 2011 /usr/bin/automake
-rwxr-xr-x 2 root wheel 227K 16 mai 2011 /usr/bin/automake-1.10
-rwxr-xr-x 1 root wheel 73K 3 fév 21:55 /usr/bin/automator
-rwxr-xr-x 1 root wheel 20K 16 mai 2011 /usr/bin/autoreconf
-rwxr-xr-x 1 root wheel 17K 16 mai 2011 /usr/bin/autoscan
-rwxr-xr-x 1 root wheel 33K 16 mai 2011 /usr/bin/autoupdate
Modifier : il semblerait que j'avais quand même 4.2 sur ma machine. Donc ce qui précède n'est probablement pas du tout utile.
Vous pourriez essayer d'utiliser le paquet autoconf à partir de homebrew. Il ne semble pas être un tonneau disponible par défaut avec homebrew, mais vous pouvez toujours l'obtenir ici en plaçant ce qui suit dans /usr/local/Library/Formula/autoconf.rb
:
require 'formula'
class Autoconf < Formula
url 'http://ftp.gnu.org/gnu/autoconf/autoconf-2.13.tar.gz'
homepage 'http://www.gnu.org/software/autoconf/'
md5 '9de56d4a161a723228220b0f425dc711'
def install
system "./configure", "--program-suffix=213",
"--prefix=#{prefix}",
"--infodir=#{info}"
system "make install"
end
end