我正在尝试安装GTK-DFB,并且cairo是必需的。当我尝试从源代码构建它时,它会抛出:
checking for cairo's PNG functions feature...
configure: WARNING: Could not find libpng in the pkg-config search path
checking whether cairo's PNG functions feature could be enabled... no
configure: error: recommended PNG functions feature could not be enabled
想法?
由于
答案 0 :(得分:4)
您需要安装libpng开发包;安装依赖于分布,但对于debian衍生产品来说应该足够了:
apt-get install libpng12-dev
答案 1 :(得分:2)
如果您使用的是Ubuntu,则可以采用另一种更快的解决方案:
apt-get build-dep gtk+2.0
答案 2 :(得分:0)