configure: error: ZLib not installed
时间:2014-05-02 22:38:51
收藏:0
阅读:289
安装libpng,出现“configure: error: ZLib not installed”。
解决方法:
1. 进入ZLib的安装包,不必加--prefix参数命令:
./configure make && make install
2. 进入libpng解压缩包中,输入:
./configure --prefix=/usr/local/libpng make && make install
成功!
评论(0)