Como resolvo um erro sobre o AM_PROG_LIBTOOL ao criar o libopus a partir do git?

25

Eu baixei o libopus do git e tentei construí-lo, por mais que eu consiga,

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

Como eu resolvo esse erro?

Evan Carroll
fonte

Respostas:

40

Você precisa instalar o libtool, que fornece as macros necessárias. No Ubuntu,

apt-get install libtool
Evan Carroll
fonte
2
Isso resolveu exatamente o mesmo problema para mim enquanto rodava o FreeBSD. Obrigado!
ebrious