ubuntu 下编译PHP5.5.7问题:configure: error: freetype.h not found.

 执行configura时提示
configure: error: freetype.h not found.
freetype明明是使用apt-get安装了的。也可以查询到这个文件
但是就是不行
root@ubuntu:/c2ms/packages/php-5.3.28# cat configure |grep freetype.h      if test -f "$i/include/freetype2/freetype/freetype.h"; then
      { echo "configure: error: freetype.h not found." 1>&2; exit 1; }
      if test -f "$i/include/freetype2/freetype/freetype.h"; then
      { echo "configure: error: freetype.h not found." 1>&2; exit 1; }
结果我按照这个路径查找,果然没这个文件
 ubuntu安装的目录文件只是这个:
include/freetype2/freetype.h
所以果断
ln -sf /usr/include/freetype2 /usr/include/freetype2/freetype
伤感了弄了半天,下次记得cat 不要太相信源码了!

你可能感兴趣的:(ubuntu 下编译PHP5.5.7问题:configure: error: freetype.h not found.)