|
|
发表于 2005-1-11 15:09:28
|
显示全部楼层
找到原因了。
出现的是:
[PHP]
checking for libpng12... yes
checking pixbuf loaders to build...
checking for sys/wait.h that is POSIX.1 compatible... yes
checking return type of signal handlers... (cached) void
checking for x86 platform... yes
checking compiler support for MMX... yes
checking for freetype-config... /usr/bin/freetype-config
checking For sufficiently new FreeType (at least 2.0.1)... yes
configure: error: Pango 1.2.0 and Xft backend is required for x11 target [/PHP]
这样的吧。因为/usr/lib/pkgconfig/pangoxft.pc 不存在的原因。
重新装次pango,当然要设置PKG_CONFIG_PATH中加入/usr/X11R6/lib/pkgconfig
In order for Pango to find Xft, the PKG_CONFIG_PATH must include /usr/X11R6/lib/pkgconfig. This is a good time to add it if you haven't already
觉得可以是你装pango这里没有处理,所以pango没有找到xft,自然没有pangoxft.pc了,因此gtk报错。
ps : 不好意思哈,不知道你是在终端中做的,我每次都是chroot安装的 :p |
|