ubuntu 编译vlc android 总结

来源:互联网 发布:淘宝上怎么搜联通黑卡 编辑:程序博客网 时间:2024/05/22 17:16

出错问题:
1. 提示gettext版本不对

The AM_GNU_GETTEXT_VERSION declaration in your configure.ac               file requires the infrastructure from gettext-0.19.3 but this version               is older. Please upgrade to gettext-0.19.3 or newer.

gettext -V 差看本地版本低于0.19.3
按要求下载 https://launchpad.net/ubuntu/+source/gettext/0.19.7-2ubuntu3
解压后进入目录,执行如下目录

./configuremakemake install (权限不够加sudo即可)

2.
由于是虚拟机中装的ubuntu系统,建立共享文件后,ubuntu中打开共享文件时,提示“您无访问。。的权限”

sudo usermod -a -G vboxsf yourusernanme

3.
Java RunTime Environment (JRE) or Java Development Kit (JDK) must be available in order to run Eclipse. No java virtual machine was found after searching the following locations:
解决办法是在终端进入你的eclipse目录,然后输入:
mkdir jre
cd jre
ln -s 你的JDK目录/bin bin

4.
configure: error: You need 32-bits luac when using using lua from contrib
解决办法 :

sudo apt-get install liblua5.1-0-dev:i386sudo apt-get build-dep vlc

参考:http://askubuntu.com/questions/365907/configure-error-you-need-32-bits-luac-when-using-using-lua-from-contrib

0 0
原创粉丝点击