标签:
1.
./bootstrap: 6: ./bootstrap: autopoint: not found
解决方法:
$ sudo apt-get install autopoint
2.
autoreconf: Entering directory `.‘
autoreconf: running: intltoolize --automake --copy --force
Can‘t exec "intltoolize": No such file or directory at /usr/share/autoconf/Autom4te/FileUtils.pm line 345.
autoreconf: failed to run intltoolize: No such file or directory
autoreconf: autopoint is needed because this package uses Gettext
解决方法:
$ sudo apt-get install intltool
3.
autoreconf: Entering directory `.‘
autoreconf: running: intltoolize --automake --copy --force
autoreconf: running: aclocal --force -I m4
autoreconf: configure.ac: tracing
autoreconf: configure.ac: not using Libtool
autoreconf: running: /usr/bin/autoconf --force
configure.ac:15: error: possibly undefined macro: AC_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
解决方法:
$ sudo apt-get install libtool
标签:
原文地址:http://www.cnblogs.com/LicwStack/p/4985739.html