autoreconf: not found

来源:互联网 发布:广东奥飞数据董事长 编辑:程序博客网 时间:2024/05/22 02:12

简介

编译wayland时候出现这样的错误提示 “autoreconf: not found”, “No package ‘libffi’ found”
,原因linux系统缺少autoreconf工具

解决方案

安装此工具

  sudo apt-get install autoconf automake libtool  sudo apt-get install libffi-dev

error: Can’t find expat.h. 缺libexpat1-dev库

sudo apt-get install libexpat1-dev

No package ‘pciaccess’ found

sudo apt-get install libpciaccess-dev

No package ‘libxml-2.0’ found

  apt-get install libxml2-dev

error: bison not found

sudo apt-get install bison

flex not found

sudo apt-get install flex

No module named mako

sudo apt-get install python-mako

No package ‘xcb-composite’ found
No package ‘xcursor’ found
No package ‘cairo-xcb’ found

sudo apt-get install libxcb-shm0-devsudo apt-get install xcbsudo apt-get install libxcursor-devsudo apt-get install  libcairo2-dev

引用

http://stackoverflow.com/questions/37321397/no-package-libxml-2-0-found
http://wiki.qt.io/QtWayland
https://wayland.freedesktop.org/building.html
http://wiki.ubuntu.org.cn/Wayland#.E5.AE.89.E8.A3.85_pkg-config
http://blog.csdn.net/jinzhuojun/article/details/47290707
http://blog.csdn.net/mkndg/article/details/38013939
http://www.cnx-software.com/2011/10/03/cross-compiling-mesa-3d-graphics-library-for-arm/
http://www.linuxidc.com/Linux/2013-06/86686.htm

0 1
原创粉丝点击