红联Linux门户
Linux帮助

提示autoreconf: not found的解决方案

发布时间:2017-04-28 14:56:44来源:blog.csdn.net/x356982611作者:天已青色等烟雨来
简介
编译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
apt-get install libxcb-shm0-dev
 
本文永久更新地址:http://www.linuxdiyf.com/linux/30374.html