autoconfでのエラーの対処
ソフトをコンパイルする時にautogen.sh
ファイルが付属していてそれを
実行して初期設定を行う事がありますが、そこで
$ ./autogen.sh
...
configure.ac:94: error: possibly undefined macro: AC_PROG_LIBTOOL
If this token and others are legitimate, please use m4_pattern_allow.
See the Autoconf documentation.
こんな感じのエラーが出る時。
autoconf
が中で使われていて直接使っても同じエラーが出ます。
$ /usr/bin/autoconf
configure.ac:94: error: possibly undefined macro: AC_PROG_LIBTOOL
If this token and others are legitimate, please use m4_pattern_allow.
See the Autoconf documentation.
これはlibtool
が足りないためで、それをインストールすればOK。
$ yum install libtool
とか
$ apt-get install libtool
とか。
Sponsored Links