SOFTELメモ Developer's blog

会社概要 ブログ 調査依頼 採用情報 ...
技術者募集中

error: Autoconf version 2.68 or higher is required

問題

古いLinux環境で、xdebugをコンパイルしようとしたら以下のエラーになりました。

# phpize
Configuring for:
PHP Api Version:         20190902
Zend Module Api No:      20190902
Zend Extension Api No:   320190902
configure.ac:12: error: Autoconf version 2.68 or higher is required
configure.ac:12: the top level
autom4te: /usr/bin/m4 failed with exit status: 63

答え

autoconfはバージョンアップしても環境にそれほど大きな影響はないようなので、

ソースを取得して configure, make, make install

https://ftp.jaist.ac.jp/pub/GNU/autoconf/

適当に autoconf-2.70 などダウンロードして解凍。

./configure
make
make install

関連するメモ

コメント