Jak rozwiązać błąd dotyczący AM_PROG_LIBTOOL podczas budowania libopus z git?

25

Pobrałem libopus z git i starał się ją zbudować, jednak otrzymuję,

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

Jak rozwiązać ten błąd?

Evan Carroll
źródło

Odpowiedzi:

40

Musisz zainstalować libtool, który zapewnia niezbędne makra. Na Ubuntu

apt-get install libtool
Evan Carroll
źródło
2
To rozwiązało dla mnie dokładnie ten sam problem podczas uruchamiania FreeBSD. Dzięki!
ebrious