./configure时nasm没装
./configure时报错:
ERROR: No NASM found, you need NASM to compile the asm source in *x86* arch.
apt-get install nasm
后解决问题
./configure时报错:
ERROR: No NASM found, you need NASM to compile the asm source in *x86* arch.
apt-get install nasm
后解决问题
./configure时出错:
in the prefix, you’ve chosen, are no KDE headers installed. This will fail.
So, check this please and use another prefix!
apt-get install kdelibs4-dev
后即解决
./configure时报错:“
configure: error: Qt (>= Qt 3.1 (20021021) and < 4.0) (headers and libraries) not found
”
apt-get install libqt3-mt-dev
后问题解决
ubuntu8.0.4的系统
在家的ubuntu8.0.4上编K3b Monkey’s Audio Encoder and Decoder plugin的时候
./configure就出错了
错误提示:“configure: error: Can’t find X includes”
网上有人说要
apt-get install kdebase-dev
可是如果这样的话需要装100多M的东西
后来发现
仅装xorg-dev即可
像这样
apt-get install xorg-dev
编一个东西的时候
执行./configure的时候出的错
“configure: error: cannot run /bin/sh config/config.sub”
结果发现是系统没有装libtool的缘故
所以yum install libtool
然后再./configure则没有这个问题了