zoukankan      html  css  js  c++  java
  • PHP 编译不通过汇总

    configure: error: xslt-config not found. Please reinstall the libxslt >= 1.1.0 distribution
    yum -y install libxslt-devel
    
    configure: error: Could not find net-snmp-config binary. Please check your net-snmp installation.
    yum -y install net-snmp-devel
    
    configure: error: Please reinstall readline - I cannot find readline.h
    yum -y install readline-devel
    
    configure: error: Cannot find pspell
    yum -y install aspell-devel
    
    
    configure: error: Unable to detect ICU prefix or /usr/bin/icu-config failed. Please verify ICU install prefix and make sure icu-config works.
    yum -y install libicu-devel
    
    configure: error: utf8mime2text() has new signature, but U8TCANONICAL is missing. This should not happen. Check config.log for additional information.
    yum -y install libc-client-devel
    
    configure: error: freetype.h not found.
    yum -y install freetype-devel
    
    configure: error: xpm.h not found.
    yum -y install libXpm-devel
    
    configure: error: png.h not found.
    yum -y install libpng-devel
    
    configure: error: vpx_codec.h not found.
    yum -y install libvpx-devel
    
    configure: error: Cannot find enchant
    yum -y install enchant-devel
    
    configure: error: Please reinstall the libcurl distribution - easy.h should be in /include/curl/
    yum -y install libcurl-devel
    
    configure: error: mcrypt.h not found. Please reinstall libmcrypt.
    //加密相关 解密相关
    wget ftp://mcrypt.hellug.gr/pub/crypto/mcrypt/libmcrypt/libmcrypt-2.5.7.tar.gz
    tar zxf libmcrypt-2.5.7.tar.gz
    cd libmcrypt-2.5.7
    ./configure
    make && make install
    
    ln -s /usr/lib64/libc-client.so /usr/lib/libc-client.so
    
    
    Cannot find ldap.h
    checking for LDAP support… yes, shared checking for LDAP Cyrus SASL support… yes configure: error: Cannot find ldap.h
    yum -y install openldap
    yum -y install openldap-devel
    
    configure: error: Cannot find ldap libraries in /usr/lib
    cp -frp /usr/lib64/libldap* /usr/lib/
    
    configure: error: Cannot find libpq-fe.h. Please specify correct PostgreSQL installation path
    yum -y install postgresql-devel
    
    checking for BZip2 support… yes checking for BZip2 in default path… not found configure: error: Please reinstall the BZip2 distribution
    yum -y install bzip2-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 -y install db4-devel
    
    checking for fabsf… yes checking for floorf… yes configure: error: jpeglib.h not found.
    yum -y install libjpeg-devel
    
    
    
    checking for png_write_image 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 bind_textdomain_codeset in -lc… yes checking for GNU MP support… yes configure: error: Unable to locate gmp.h
    yum -y install gmp-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 -y install sqlite-devel
    
    configure: error: xml2-config not found. Please check your libxml2 installation.
    yum -y install libxml2-devel
    
    checking for PCRE headers location… configure: error: Could not find pcre.h in /usr
    yum -y install pcre-devel
    
    configure: error: Cannot find MySQL header files under yes. Note that the MySQL client library is not bundled anymore!
    yum -y install mysql-devel
    
    checking for unixODBC support… configure: error: ODBC header file ‘/usr/include/sqlext.h' not found!
    yum -y install unixODBC-devel
    
    configure: error: Cannot find pspell
    yum -y install pspell-devel

    以上感谢http://www.poluoluo.com/jzxy/201505/364819.html分享与收集;

  • 相关阅读:
    工作后对单元测试学习的一点总结
    图片做按钮会将form表单自动提交
    转jMock Cookbook 中文版三
    转jMock Cookbook 中文版二
    转jMock Cookbook 中文版一
    JUnit4学习笔记(五):Theory(理论)测试
    JUnit4学习笔记(四):利用Rule扩展JUnit
    JUnit4学习笔记(三):assertThat语法与Matcher
    JUnit4学习笔记(二):参数化测试与假定(Assumption)
    junit学习一
  • 原文地址:https://www.cnblogs.com/bin-pureLife/p/5132105.html
Copyright © 2011-2022 走看看