您好,欢迎访问一九零五行业门户网

PHP编译过程中常见异常信息的解决办法

php编译过程中常见错误信息的解决方法
在centos编译php5的时候有时会遇到以下的一些错误信息,基本上都可以通过yum安装相应的库来解决。以下是具体的一些解决办法:
?
checking for bzip2 support… yes checking for bzip2 in default path… not found configure: error: please reinstall the bzip2 distribution
fix: 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/
fix: 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).
fix: yum install db4-devel
?
checking for fabsf… yes checking for floorf… yes configure: error: jpeglib.h not found.
fix: 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.
fix: yum install libpng-devel
?
checking for png_write_image in -lpng… yes if configure fails try –with-xpm-dir=
?
configure: error: freetype.h not found.
fix: reconfigure your php with the following option. --with-xpm-dir=/usr
?
checking for png_write_image in -lpng… yes configure: error: libxpm.(a|so) not found.
fix: 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
fix: 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.
fix: yum install libc-client-devel
?
checking for ldap support… yes, shared checking for ldap cyrus sasl support… yes configure: error: cannot find ldap.h
fix: 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!
fix:?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
fix: 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
fix: yum install sqlite-devel
?
checking for utsname.domainname… yes checking for pspell support… yes configure: error: cannot find pspell
fix: 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.
fix: 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
fix: yum install libxslt-devel
?
configure: error: xml2-config not found. please check your libxml2 installation.
fix: yum install libxml2-devel
?
checking for pcre headers location… configure: error: could not find pcre.h in /usr
fix: yum install pcre-devel
?
configure: error: cannot find mysql header files under yes. note that the mysql client library is not bundled anymore!
fix: yum install mysql-devel
?
checking for unixodbc support… configure: error: odbc header file ‘/usr/include/sqlext.h’ not found!
fix: yum install unixodbc-devel
?
checking for pg_config… not found configure: error: cannot find libpq-fe.h. please specify correct postgresql installation path
fix:?yum install postgresql-devel
?
configure: error: cannot find pspell
fix: yum install pspell-devel
?
configure: error: could not find net-snmp-config binary. please check your net-snmp installation.
fix: yum install net-snmp-devel
?
configure: error: xslt-config not found. please reinstall the libxslt >= 1.1.0 distribution
fix: yum install libxslt-devel
其它类似信息

推荐信息