有个笨的方法:
在configure QT时,看哪个模块是NO的,像phonon模块等有时候是默认没有的,
比如:
进入QT的源码目录,
#./configure
......
QtXmlPatterns module yes
Phonon module ....... no
SVG module .......... yes
WebKit module ....... yes
STL support ......... yes
......
如果想把phonon模块编译上去,
那么可以这样操作:
#./configure --help
在输出中找到phonon,然后
#./configure -phonon
可以还会出错,具体问题是什么忘了,
那个错误可能是系统没有安装到这个模块,
那么就要先安装此模块,
然后在像前面的步骤进行编译。