郁闷...编译php --with-gd时的问题!!!
我的系统里装了(rpm的)gd-2.0.28以及其他需要的libjpeg,libpng,libfreetype等..
都在/usr/lib下面...
但是编译php是说
checking for GD support... yes
checking for the location of libjpeg... /usr/lib/
checking for the location of libpng... /usr/lib/
checking for the location of libXpm... no
checking for FreeType 1.x support... no
checking for FreeType 2... /usr/lib/
checking for T1lib support... no
checking whether to enable truetype string function in GD... yes
checking whether to enable JIS-mapped Japanese font support in GD... yes
configure: error: libjpeg.(a|so) not found.
编译php的参数是:::
- [root@x232 php-4.3.11]# ./configure --prefix=/usr/local/php4/ --with-config-file-path
- =/usr/local/php4/etc --with-mysql=/usr/local/mysql --with-apxs2=/usr/local/apache2/bi
- n/apxs --with-gd=/usr/lib/ --enable-gd-native-ttf --with-jpeg-dir=/usr/lib/ --with-pn
- g-dir=/usr/lib/ --with-zlib-dir=/usr/lib/ --with-freetype-dir=/usr/lib/ --enable-ftp
- --enable-mbstring --enable-mbstr-enc-trans --enable-mbregex --enable-trans-s --enable
- -track-vars --enable-gd-jis-conv --enable-force-cgi-redirect
复制代码
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
哥们,俺比你还郁闷~~
我用的apache2+php5,编译没出错,就是gd2图形库不成功。
明明通过了编译安装,郁闷...
libjpeg.(a|so) not found.
少库文件,PHP自编译真的很麻烦哦,还是rpm比较好吧
装libjpeg的库的包就可以了。然后在编译php的时候指定libjpeg的安装位置。