web-dev-qa-db-ja.com

gitからlibopusをビルドするときにAM_PROG_LIBTOOLに関するエラーを解決するにはどうすればよいですか?

Gitから libopus をダウンロードしてビルドしようとしましたが、

Updating build configuration files, please wait....
configure.ac:38: warning: macro 'AM_PROG_LIBTOOL' not found in library
configure.ac:38: error: possibly undefined macro: AM_PROG_LIBTOOL
      If this token and others are legitimate, please use m4_pattern_allow.
      See the Autoconf documentation.
autoreconf: /usr/bin/autoconf failed with exit status: 1

このエラーを解決するにはどうすればよいですか?

26
Evan Carroll

必要なマクロを提供するlibtoolをインストールする必要があります。 Ubuntuでは、

apt-get install libtool
41
Evan Carroll