想你了的他他 发表于 2018-12-18 14:29:17

php安装错误

  configure: error: Please reinstall the BZip2 distribution
  解决: yum install bzip2-devel
  configure: error: Please reinstall the libcurl distribution – easy.h should be in/include/curl/
  解决: yum install curl-devel
  
  configure: error: DBA: Could not find necessary header file(s).
  解决: yum install db4-devel
  configure: error: jpeglib.h not found.
  解决: yum install libjpeg-devel
  configure: error: png.h not found.
  解决: yum install libpng-devel
  configure: error: freetype.h not found.
  解决: yum install -y freetype freetype-devel
  configure: error: libXpm.(a|so) not found.
  解决: yum install libXpm-devel
  configure: error: Unable to locate gmp.h
  解决: yum install gmp-devel
  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
  configure: error: Cannot find ldap.h
  解决: yum install openldap-devel
  configure: error: ODBC header file ‘/usr/include/sqlext.h’ not found!
  解决:yum install unixODBC-devel
  configure: error: Cannot find libpq-fe.h. Please specify correct PostgreSQL installation path
  解决: yum install postgresql-devel
  configure: error: Please reinstall the sqlite3 distribution
  解决: yum install sqlite-devel
  configure: error: Cannot find pspell
  解决: yum install aspell-devel
  config.log for more information.
  解决: yum install net-snmp-devel
  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
  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
  configure: error: ODBC header file ‘/usr/include/sqlext.h’ not found!
  解决: yum install unixODBC-devel
  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
  configure: error: mcrypt.h not found. Please reinstall libmcrypt.
  解决: yum install -ylibmcrypt-devel



页: [1]
查看完整版本: php安装错误