0

我已经下载了 vlc 源代码。运行下面的脚本后

sh compile.sh

我有一个错误

mkdir -p -- /root/workspace/android/vlc/contrib/arm-linux-androideabi/share/aclocal && cd png && autoreconf -fiv -I/root/workspace/android/vlc/contrib/arm-linux-androideabi/share/aclocal
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal -I /root/workspace/android/vlc/contrib/arm-linux-androideabi/share/aclocal --force -I scripts
configure.ac:66: error: Libtool version 2.4.2 or higher is required
scripts/libtool.m4:46: LT_PREREQ is expanded from...
configure.ac:66: the top level
autom4te: /usr/bin/m4 failed with exit status: 63
aclocal: /usr/local/bin/autom4te failed with exit status: 63
autoreconf: aclocal failed with exit status: 63
make: *** [.png] Error 63

我以为是关于 libtool 版本的,但是在我安装 libtool 2.4.2 后问题仍然存在

有人可以告诉我发生了什么问题。

最好的祝福!

埃里克·沉

4

1 回答 1

0

虽然我的 ubuntu 安装了 libtool2.4.2,但我也遇到了这个问题。此解决方法解决了该问题。

在其中一个 configure.ac 文件中找到 LT_PREREQ([2.4.2]) 并将其替换为 LT_PREREQ([2.4])

于 2013-11-28T14:04:42.620 回答