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

本文涉及的产品
RDS MySQL DuckDB 分析主实例,基础系列 4核8GB
RDS Agent(兼容OpenClaw),2核4GB
RDS DuckDB + QuickBI 企业套餐,8核32GB + QuickBI 专业版
简介:

在我们源码编译安装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

相关实践学习
每个IT人都想学的“Web应用上云经典架构”实战
本实验从Web应用上云这个最基本的、最普遍的需求出发,帮助IT从业者们通过“阿里云Web应用上云解决方案”,了解一个企业级Web应用上云的常见架构,了解如何构建一个高可用、可扩展的企业级应用架构。
MySQL数据库入门学习
本课程通过最流行的开源数据库MySQL带你了解数据库的世界。 &nbsp; 相关的阿里云产品:云数据库RDS MySQL 版 阿里云关系型数据库RDS(Relational Database Service)是一种稳定可靠、可弹性伸缩的在线数据库服务,提供容灾、备份、恢复、迁移等方面的全套解决方案,彻底解决数据库运维的烦恼。 了解产品详情:&nbsp;https://www.aliyun.com/product/rds/mysql&nbsp;
相关文章
|
SQL 安全 程序员
PHP编程中的关键性错误及解决方法
在PHP编程过程中,程序员常常会遇到一些关键性错误,这些错误可能会导致程序运行异常甚至崩溃。本文将重点探讨PHP编程中常见的关键性错误,并提供解决方法,帮助程序员更好地应对这些问题,提高编程效率和代码质量。
174 1
没有可用的软件包 php5-mysql,但是它被其它的软件包引用了。解决方法
没有可用的软件包 php5-mysql,但是它被其它的软件包引用了。解决方法
516 0
|
Linux 应用服务中间件 PHP
Linux下搭建PHP环境-源码编译安装PHP7.2
Linux下搭建PHP环境-源码编译安装PHP7.2
835 0
|
关系型数据库 MySQL Linux
百度搜索:蓝易云【Centos8 stream系统编译安装PHP教程。】
以上是在CentOS 8 Stream系统上编译安装PHP的基本教程。请注意,具体的配置和参数可能因您的需求而有所不同,您可以根据自己的情况进行调整。同时,请确保在执行任何操作之前备份重要的文件和配置。
499 0
|
数据采集 网络安全 PHP
用PHP抓取HTTPS资源时的常见问题与解决方法
本文探讨了在PHP中抓取HTTPS资源时常见的问题及其解决方案,包括SSL证书验证、反爬机制应对、HTTPS代理设置及提高抓取效率。通过代码示例展示了如何使用代理IP和合理设置请求头等方法,以高效获取贝壳网的房价数据。
290 0
|
应用服务中间件 Linux 网络安全
【Azure 应用服务】PHP应用部署在App Service for Linux环境中,上传文件大于1MB时,遇见了413 Request Entity Too Large 错误的解决方法
【Azure 应用服务】PHP应用部署在App Service for Linux环境中,上传文件大于1MB时,遇见了413 Request Entity Too Large 错误的解决方法
451 0
|
SQL 前端开发 PHP
php不使用Office包实现上万条数据导出表格
经过上传客户要求主副表迁出,又提出可以将某张表的数据导出excel,听着很简单,实际看数据表发现上万条数据,并且需要关联表查询相关字段,导出的表格才可以被客户看明白。 要是使用office包目前后台内存耗尽,被迫停止运行,所以想要突破百万条数据导出需要另辟它路。所以就是使用了导出CSV并非excel文件。 1、设置程序需要一直运行并设置运行内存(php提示过128M)
230 0
|
应用服务中间件 Linux 网络安全
PHP应用部署在App Service for Linux环境中,上传文件大于1MB时,遇见了413 Request Entity Too Large 错误的解决方法
在Azure App Service for Linux上部署的PHP应用遇到上传文件超过1MB时出现413 Request Entity Too Large错误的解决之法
671 0