返回顶部
首页 > 资讯 > 后端开发 > PHP编程 >CentOS编译PHP5过程中常见错误信息有哪些
  • 933
分享到

CentOS编译PHP5过程中常见错误信息有哪些

2024-04-02 19:04:59 933人浏览 安东尼
摘要

这篇文章将为大家详细讲解有关Centos编译PHP5过程中常见错误信息有哪些,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。在CentOS编译php5的时候有时会遇到以下的

这篇文章将为大家详细讲解有关Centos编译PHP5过程中常见错误信息有哪些,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。

在CentOS编译php5的时候有时会遇到以下的一些错误信息,基本上都可以通过yum安装相应的库来解决。

以下是具体的一些解决办法:

*******************************************************************************

checking for BZip2 support… yes checking  for BZip2 in default path… not found configure: error: Please reinstall the  BZip2 distribution

解决方法: yum install  bzip2-devel

*******************************************************************************

checking for cURL support… yes checking  if we should use cURL for url streams… no checking for cURL in default path…  not found configure: error: Please reinstall the libcurl distribution –  easy.h should be in/include/curl/

解决方法: yum install  curl-devel

*******************************************************************************

checking for curl_multi_strerror in  -lcurl… yes checking for QDBM support… no checking for GDBM support… no  checking for NDBM support… no configure: error: DBA: Could not find necessary  header file(s).

解决方法: yum install  db4-devel

*******************************************************************************

checking for fabsf… yes checking for  floorf… yes configure: error: jpeglib.h not found.

解决方法: yum install  libjpeg-devel

*******************************************************************************

checking for fabsf… yes checking for  floorf… yes checking for jpeg_read_header in -ljpeg… yes configure: error:  png.h not found.

解决方法: yum install  libpng-devel

*******************************************************************************

checking for png_write_p_w_picpath in -lpng…  yes If configure fails try –with-xpm-dir=

configure: error: freetype.h not found.

解决方法: Reconfigure your  PHP with the following option. --with-xpm-dir=/usr

*******************************************************************************

checking for png_write_p_w_picpath in -lpng…  yes configure: error: libXpm.(a|so) not found.

解决方法: yum install  libXpm-devel

*******************************************************************************

checking for bind_textdomain_codeset in  -lc… yes checking for GNU MP support… yes configure: error: Unable to locate  gmp.h

解决方法: yum install  gmp-devel

*******************************************************************************

checking for utf8_mime2text signature…  new checking for U8T_DECOMPOSE… configure: error: utf8_mime2text() has new  signature, but U8T_CANONICAL is missing. This should not happen. Check  config.log for additional infORMation.

解决方法: yum install  libc-client-devel

*******************************************************************************

checking for LDAP support… yes, shared  checking for LDAP Cyrus SASL support… yes configure: error: Cannot find  ldap.h

解决方法: yum install  openldap-devel

*******************************************************************************

checking for Mysql_set_character_set in  -lmysqlclient… yes checking for mysql_stmt_next_result in -lmysqlclient… no  checking for oracle Database OCI8 support… no checking for unixODBC support…  configure: error: ODBC header file ‘/usr/include/sqlext.h’ not found!

解决方法:yum install  unixODBC-devel

*******************************************************************************

checking for postgresql support for PDO…  yes, shared checking for pg_config… not found configure: error: Cannot find  libpq-fe.h. Please specify correct PostgreSQL installation path

解决方法: yum install  postgresql-devel

*******************************************************************************

checking for sqlite 3 support for PDO…  yes, shared checking for PDO includes… (cached) /usr/local/src/php-5.3.7/ext  checking for sqlite3 files in default path… not found configure: error:  Please reinstall the sqlite3 distribution

解决方法: yum install  sqlite-devel

*******************************************************************************

checking for utsname.domainname… yes  checking for PSPELL support… yes configure: error: Cannot find pspell

解决方法: yum install  aspell-devel

*******************************************************************************

checking whether to enable UCD SNMP hack…  yes checking for default_store.h… no

checking for kstat_read in -lkstat… no  checking for snmp_parse_oid in -lsnmp… no checking for init_snmp in -lsnmp…  no configure: error: SNMP sanity check failed. Please check config.log for  more information.

解决方法: yum install  net-snmp-devel

*******************************************************************************

checking whether to enable XMLWriter  support… yes, shared checking for xml2-config path… (cached)  /usr/bin/xml2-config checking whether libxml build works… (cached) yes  checking for XSL support… yes, shared configure: error: xslt-config not  found. Please reinstall the libxslt >= 1.1.0 distribution

解决方法: yum install  libxslt-devel

*******************************************************************************

configure: error: xml2-config not found.  Please check your libxml2 installation.

解决方法: yum install libxml2-devel

*******************************************************************************

checking for PCRE headers location…  configure: error: Could not find pcre.h in /usr

解决方法: yum install  pcre-devel

*******************************************************************************

configure: error: Cannot find MySQL  header files under yes. Note that the MySQL client library is not bundled  anymore!

解决方法: yum install  mysql-devel

*******************************************************************************

checking for unixODBC support… configure:  error: ODBC header file ‘/usr/include/sqlext.h’ not found!

解决方法: yum install  unixODBC-devel

*******************************************************************************

checking for pg_config… not found  configure: error: Cannot find libpq-fe.h. Please specify correct PostgreSQL  installation path

解决方法:yum install  postgresql-devel

*******************************************************************************

configure: error: Cannot find pspell

解决方法: yum install  pspell-devel

*******************************************************************************

configure: error: Could not find  net-snmp-config binary. Please check your net-snmp installation.

解决方法: yum install  net-snmp-devel

*******************************************************************************

configure: error: xslt-config not found.  Please reinstall the libxslt >= 1.1.0 distribution

解决方法: yum install  libxslt-devel

关于“CentOS编译PHP5过程中常见错误信息有哪些”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。

--结束END--

本文标题: CentOS编译PHP5过程中常见错误信息有哪些

本文链接: https://lsjlt.com/news/83517.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • CentOS编译PHP5过程中常见错误信息有哪些
    这篇文章将为大家详细讲解有关CentOS编译PHP5过程中常见错误信息有哪些,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。在CentOS编译PHP5的时候有时会遇到以下的...
    99+
    2024-04-02
  • ipvs编译常见错误有哪些
    小编给大家分享一下ipvs编译常见错误有哪些,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!ipvs编译常见错误缺少 kernerlsyum instal...
    99+
    2023-06-04
  • Python中常见的错误信息有哪些
    这篇文章主要讲解了“Python中常见的错误信息有哪些”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Python中常见的错误信息有哪些”吧!IndentationError: uninden...
    99+
    2023-06-02
  • c语言编译器常见错误有哪些
    在C语言编译过程中,常见的错误包括:1. 语法错误:例如缺少分号、括号不匹配等。2. 类型错误:例如变量类型不匹配、函数参数类型不匹...
    99+
    2023-09-26
    c语言
  • java常见报错信息有哪些
    在Java中,常见的报错信息有:1. NullPointerException(空指针异常):当调用一个空对象的方法或访问空对象的属...
    99+
    2023-09-08
    java
  • DOS命令行下常见的错误信息有哪些
    本篇内容介绍了“DOS命令行下常见的错误信息有哪些”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!   大家在使...
    99+
    2023-06-10
  • Java编程中的常见算法错误有哪些?
    在Java编程中,算法是一项非常重要的技能。无论是在工作中还是面试中,编写高质量的算法都是必要的。然而,即使是经验丰富的Java程序员,在编写算法时也会犯一些常见的错误。在本文中,我们将讨论一些常见的Java编程中的算法错误,并提供演示代...
    99+
    2023-09-25
    编程算法 laravel 对象
  • go语言中常见的并发编程错误有哪些
    这篇“go语言中常见的并发编程错误有哪些”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“go语言中常见的并发编程错误有哪些”文...
    99+
    2023-06-17
  • DIV+CSS编码常见错误都有哪些
    这期内容当中小编将会给大家带来有关DIV+CSS编码常见错误都有哪些,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。DIV+CSS是网站标准(...
    99+
    2024-04-02
  • web开发中常见的编码错误有哪些
    这篇文章主要介绍“web开发中常见的编码错误有哪些”,在日常操作中,相信很多人在web开发中常见的编码错误有哪些问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”web开发中常见的编码错误有哪些”的疑惑有所帮助!...
    99+
    2023-06-16
  • SQL中有哪些常见的错误
    这篇文章给大家介绍SQL中有哪些常见的错误,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。 1、LIMIT 语句分页查询是最常用的场景之一,但也通常也是最容易出问题的地方。比如...
    99+
    2024-04-02
  • MySQL中有哪些常见SQL错误
    本篇文章为大家展示了 MySQL中有哪些常见SQL错误,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。常见SQL错误用法1. LIMIT 语句分页查询是最常用的场景之...
    99+
    2024-04-02
  • JavaScript中常见的错误有哪些
    这篇文章主要讲解了“JavaScript中常见的错误有哪些”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“JavaScript中常见的错误有哪些”吧!Java...
    99+
    2024-04-02
  • Python中有哪些常见的错误
    本篇文章为大家展示了Python中有哪些常见的错误,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。1、忘记在if,for,def,elif,else,class等声明末尾加 :会导致“SyntaxEr...
    99+
    2023-06-16
  • 用python编写程序时有哪些常见的错误
    本篇内容主要讲解“用python编写程序时有哪些常见的错误”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“用python编写程序时有哪些常见的错误”吧!说明语法错误,也就是说,程序员在编写语句或表...
    99+
    2023-06-20
  • 编写Python代码常见的错误有哪些
    这篇文章主要讲解了“编写Python代码常见的错误有哪些”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“编写Python代码常见的错误有哪些”吧!编写过于风格化的代码这是Python初学者的一...
    99+
    2023-06-15
  • Java开发中常见错误有哪些
    这篇文章主要讲解了“Java开发中常见错误有哪些”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Java开发中常见错误有哪些”吧!编译器错误编译器错误消息在J...
    99+
    2024-04-02
  • PHP中有哪些常见的错误机制
    今天就跟大家聊聊有关PHP中有哪些常见的错误机制,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。PHP的错误级别首先需要了解php有哪些错误。截至到php5.5,一共有16个错误级别注...
    99+
    2023-06-17
  • c++代码中的常见错误有哪些
    在C++代码中,常见的错误包括以下几种:1. 语法错误:例如拼写错误、缺少分号、缺少括号等。2. 逻辑错误:例如算法错误、条件判断错...
    99+
    2023-09-29
    c++
  • Js中的常见错误类型有哪些
    本篇内容主要讲解“Js中的常见错误类型有哪些”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Js中的常见错误类型有哪些”吧!JavaScript中的错误类型ErrorEvalErrorRangeE...
    99+
    2023-06-29
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作