Linux下安装过程中编译PHP时报错:configure: error: libjpeg.(a|so) not found

Linux下安装PHP过程中,编译时出现configure: error: libjpeg.(a|so) not found 错误的解决办法
 
检查之后发现已经安装了libjpeg

[root@localhost php-5.2.14]# yum list installed|grep libpng
libpng.x86_64           2:1.2.49-1.el6_2

或者:

[root@localhost php-5.2.14]# rpm -qa|grep libjpeg
libjpeg-turbo-1.2.1-3.el6_5.x86_64

安装libjpeg-devel

yum -y install libjpeg-devel

[root@localhost php-5.2.14]# yum list installed|grep libjpeg
libjpeg-turbo.x86_64    1.2.1-3.el6_5   @base                                   
libjpeg-turbo-devel.x86_64
[root@localhost php-5.2.14]# rpm -ql libjpeg-turbo-devel.x86_64
/usr/include/jconfig.h
/usr/include/jerror.h
/usr/include/jmorecfg.h
/usr/include/jpeglib.h
/usr/lib64/libjpeg.so
/usr/share/doc/libjpeg-turbo-devel-1.2.1
/usr/share/doc/libjpeg-turbo-devel-1.2.1/coderules.txt
/usr/share/doc/libjpeg-turbo-devel-1.2.1/example.c
/usr/share/doc/libjpeg-turbo-devel-1.2.1/jconfig.txt
/usr/share/doc/libjpeg-turbo-devel-1.2.1/libjpeg.txt
/usr/share/doc/libjpeg-turbo-devel-1.2.1/structure.txt

但是在/usr/lib目录下没有libjpeg.so这个文件,在/usr/lib64下是有的,虽然使用–with-jpeg-dir=/usr/lib64 依然无效,最后用
 
[root@ www.linuxidc.com ~]#ln -s /usr/lib64/libjpeg.so.62 /usr/lib/libjpeg.so
 
问题解决, libpng 报的错误解决方法一样

本篇文章来源于 Linux公社网站(www.linuxidc.com)  原文链接:http://www.linuxidc.com/Linux/2012-08/68896.htm

--------------------------------------------------------------------------------

configure: error: png.h not found.错误的解决方法

转自:http://51yanyu.net/wangluo/20140704_9729.html

今天安装PHP的时候提示这个错误 configure: error: png.h not found.,这个是选择安装GD模块才会出现的错误,详细错误信息如下

If configure fails try --with-vpx-dir=<DIR>
If configure fails try --with-jpeg-dir=<DIR>
configure: error: png.h not found.

我找了下资料说是libpng没有安装,于是我执行命令
$>yum install libpng
但是并没有解决,想了下是不是还有什么devel包没安装吧,试了下面这个命令
$> yum install libpng-devel
终于解决了,呵呵。记录下来,方便大家和自己下次查看。

声明: 本文由( 烟雨网 )原创编译,转载请保留链接: configure: error: png.h not found.错误的解决方法

--------------------------------------------------------------------------------------------------

转自:http://blog.csdn.net/zhangxh1013/article/details/7829470
configure: error: Cannot find ldap.h 
 
[root@localhost php-5.2.14]# yum list installed|grep ldap
apr-util-ldap.x86_64    1.3.9-3.el6_0.1 @anaconda-CentOS-201303020151.x86_64/6.4
openldap.x86_64         2.4.39-8.el6    @base

list

 yum list openldap
 yum list openldap-devel
 安装 :
 yum install openldap-devel




  1. #使用wget可以通过以下路径下载  
  2. wget ftp://mcrypt.hellug.gr/pub/crypto/mcrypt/attic/libmcrypt/libmcrypt-2.5.7.tar.gz  
  3.    
  4. #解压  
  5. tar -zxvf libmcrypt-2.5.7.tar.gz   
  6.    
  7. #进入目录  
  8. cd libmcrypt-2.5.7  
  9.    
  10. #编译(默认安装到/usr/local/lib/)  
  11. ./configure --prefix=/usr/local/libmcrypt  
  12.    
  13. #执行安装  
  14. make && make install  


  1. phpize  
  2.   
  3. ./configure --with-php-config=/usr/local/php5/bin/php-config \  
  4.   
  5. --with-libmcrypt=/usr/lib/libmcrypt  
  6.   
  7. make  
  8.   
  9. make test  
  10.   
  11. make install  
  12.   
  13. vim /etc/php.ini    
  14.   
  15. #加入extension=mcrypt.so  

猜你喜欢

转载自blog.csdn.net/giscong/article/details/60869096