26

I've downloaded libopus from git and tried to build it, however I get,

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

How do I resolve this error?

Evan Carroll
  • 9,518

1 Answers1

41

You need to install libtool, which provides the necessary macros. On Ubuntu,

apt-get install libtool
Evan Carroll
  • 9,518