PHP源码包编译安装错误及解决方法汇总

本文涉及的产品
云数据库 RDS MySQL Serverless,0.5-2RCU 50GB
简介:

在我们源码编译安装PHP的时候,总会遇到各种各样的问题,每次编译的时候都会提示我们去安装其他

要依赖的包,笔者根据自己多次安装的经验以及网络上找到的不少资料,将出错提示与解决方法做了一

个小小的汇总。


首先,我们在编译的时候需要安装很多的包,而这些包不一定在我们本来的yum源中有,所以我们可以

先去安装一个yum的扩展源。


yum  install  -y  release


yum install -y freetype-devel libevent libevent-devel libxml2 libxml2-devel ncurses ncurses-devel  openssl openssl-devel  libjpeg libjpeg-devel libpng libpng–devel zlib-devel  bzip2 bzip2-devel libmcrypt libmcrypt-devel


然后我们再来看看可能会遇到的各种错误以及解决方法:


错误:configure: error: freetype-config not found.


解决:yum install freetype-devel



错误:configure: error: libevent >= 1.4.11 could not be found 


解决:yum -y install libevent libevent-devel 



错误:configure: error: Please reinstall the mysql distributio 


解决:yum -y install mysql-devel 



错误:make: *** [sapi/fpm/php-fpm] error 1 


解决:用make ZEND_EXTRA_LIBS='-liconv'编译 



错误:configure: error: XML configuration could not be found 

解决:yum -y install libxml2 libxml2-devel 



错误:configure: error: No curses/termcap library found 

解决:yum -y install ncurses ncurses-devel 



错误:configure: error: xml2-config not found 

解决:yum -y install libxml2 libxml2-devel 



错误:configure: error: Cannot find OpenSSL's <evp.h> 

解决:yum install openssl openssl-devel 



错误:configure: error: Please reinstall the libcurl distribution -easy.h should be in <curl-dir>/include/curl/ 

解决:yum install curl curl-devel 



错误:configure: error: Cannot find ldap.h 

解决:yum install openldap openldap-devel 



错误:configure: error: libjpeg.(aso) not found 

解决:yum install libjpeglibjpeg -devel 



错误:configure: error: libpng.(aso) not found. 

解决:yum install libpnglibpng –devel 



错误:onfigure: error: freetype.h not found. 

解决:yum install freetype-devel 



错误:configure: error: cannot find output from lex; giving up 

解决:yum -y install flex 



错误:configure: error: mod_deflate has been requested but can not be built due to prerequisite failures 

解决:yum -y install zlib-devel openssl-devel 



错误:Configure: error: Unable to locate gmp.h 

解决:yum install gmp-devel 



错误:Configure: error: Cannot find MySQL header files under /usr. 

Note that the MySQL client library is not bundled anymore! 

解决:yum install mysql-devel




更多的补充内容:

安装php: ./configure 
configure: error: XML configuration could not be found 

yum -y install libxml2 libxml2-devel 

Cannot find OpenSSL's <evp.h> 
yum install openssl openssl-devel 

1) Configure: error: xml2-config not found. Please check your libxml2 installation. 
#yum install libxml2 libxml2-devel (For RedHat & Fedora) 
# aptitude install libxml2-dev (For Ubuntu) 

2) Checking for pkg-config… /usr/bin/pkg-config 
configure: error: Cannot find OpenSSL's <evp.h> 
#yum install openssl openssl-devel 

3) Configure: error: Please reinstall the BZip2 distribution 
# yum install bzip2 bzip2-devel 

4) Configure: error: Please reinstall the libcurl distribution - 
easy.h should be in <curl-dir>/include/curl/ 
# yum install curl curl-devel  


5) Configure: error: libjpeg.(also) not found. 
# yum install libjpeg libjpeg-devel 

6) Configure: error: libpng.(also) not found. 
# yum install libpng libpng-devel 

7) Configure: error: freetype.h not found. 
#yum install freetype-devel 

8) Configure: error: Unable to locate gmp.h 
# yum install gmp-devel 

9) Configure: error: Cannot find MySQL header files under /usr. 
Note that the MySQL client library is not bundled anymore! 
# yum install mysql-devel  


10) Configure: error: Please reinstall the ncurses distribution 
# yum install ncurses ncurses-devel 

11) Checking for unixODBC support… configure: error: ODBC header file ‘/usr/include/sqlext.h' not found! 
# yum install unixODBC-devel 

12) Configure: error: Cannot find pspell 
# yum install pspell-devel 

13) configure: error: mcrypt.h not found. Please reinstall libmcrypt. 
# yum install libmcrypt libmcrypt-devel


14) Configure: error: snmp.h not found. Check your SNMP installation. 
# yum install net-snmp net-snmp-devel

本文转自奇迹的少年博客51CTO博客,原文链接http://blog.51cto.com/raffaelexr/1711783如需转载请自行联系原作者
liliangchun

相关实践学习
基于CentOS快速搭建LAMP环境
本教程介绍如何搭建LAMP环境,其中LAMP分别代表Linux、Apache、MySQL和PHP。
全面了解阿里云能为你做什么
阿里云在全球各地部署高效节能的绿色数据中心,利用清洁计算为万物互联的新世界提供源源不断的能源动力,目前开服的区域包括中国(华北、华东、华南、香港)、新加坡、美国(美东、美西)、欧洲、中东、澳大利亚、日本。目前阿里云的产品涵盖弹性计算、数据库、存储与CDN、分析与搜索、云通信、网络、管理与监控、应用服务、互联网中间件、移动服务、视频服务等。通过本课程,来了解阿里云能够为你的业务带来哪些帮助 &nbsp; &nbsp; 相关的阿里云产品:云服务器ECS 云服务器 ECS(Elastic Compute Service)是一种弹性可伸缩的计算服务,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。产品详情: https://www.aliyun.com/product/ecs
相关文章
|
4月前
|
Linux 应用服务中间件 PHP
Linux下搭建PHP环境-源码编译安装PHP7.2
Linux下搭建PHP环境-源码编译安装PHP7.2
153 0
|
7月前
|
关系型数据库 MySQL Linux
百度搜索:蓝易云【Centos8 stream系统编译安装PHP教程。】
以上是在CentOS 8 Stream系统上编译安装PHP的基本教程。请注意,具体的配置和参数可能因您的需求而有所不同,您可以根据自己的情况进行调整。同时,请确保在执行任何操作之前备份重要的文件和配置。
224 0
|
4月前
|
小程序 JavaScript Shell
centos编译安装PHP(2)
Php编译安装成功之后,是没有php.ini文件的,需要我们从源码包中复制过去。
45 1
|
4月前
|
前端开发 JavaScript Shell
centos编译安装PHP(1)
当然,我是直接在服务器上下载的: bash 复制代码
72 1
|
5月前
|
PHP
运行php服务,电脑抓不了包
运行php服务,电脑抓不了包
26 0
|
7月前
|
Ubuntu PHP Apache
百度搜索:蓝易云【Ubuntu 18.04系统编译安装PHP教程。】
现在,您已经成功地在Ubuntu 18.04上编译和安装了PHP 7.4,并将其与Apache集成。请注意,这只是基本的安装过程,您可能需要根据自己的需求进一步配置和调整PHP。确保在实际操作中根据您的需求进行适当的配置和保护。
203 0
|
7月前
|
Ubuntu 应用服务中间件 PHP
百度搜索:蓝易云【Ubuntu 20.04系统编译安装PHP教程。】
请注意,以上是一个基本的编译安装PHP的示例,您可能需要根据您的特定需求进行进一步配置和调整。
82 0
|
7月前
|
PHP
百度搜索:蓝易云【Debian11系统编译安装PHP教程。】
在Web浏览器中访问该文件,如果看到PHP信息页面,则表示安装成功。 以上是在Debian 11系统上编译安装PHP的基本步骤。请根据实际情况进行相应的调整和配置。
59 0