Ubuntu编译安装PHP7.3报错freetype-config not found
Ubuntu编译安装PHP7.3报错freetype-config not found
二维码
简介
Ubuntu编译安装PHP7.3报错freetype-config not found
出现这个报错的原因可能是没有安装freetype,先尝试执行安装命令
apt-get remove libfreetype6
已经安装报错依旧,这是需要添加一下软链接
ln -s /usr/include/freetype2/freetype /usr/include/freetype ln -s /usr/include/freetype2/ft2build.h /usr/include/ft2build.h
到这里问题应该已经解决,要是还是报错,那就是安装freetype版本不兼容问题,先卸载原来安装的版本,尝试编译安装低版本
cd /usr/local/src wget http://download.savannah.gnu.org/releases/freetype/freetype-2.8.1.tar.gz tar zxvf freetype-2.8.1.tar.gz cd freetype-2.8.1/ ./configure --prefix=/usr/include/ make && make install
重复上面的指引,重新创建软连接
END.