PHP編譯安裝時常見錯誤解決辦法,php編譯常見錯誤
This article is post on https://coderwall.com/p/ggmpfa
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
checking for unixODBC support... configure: error: ODBC header file '/usr/include/sqlext.h' not found!
複製程式碼 程式碼如下:
yum -y install unixODBC-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
LAOGAO added 20140907:
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
added 20141003:
Cannot find imap
複製程式碼 程式碼如下:
ln -s /usr/lib64/libc-client.so /usr/lib/libc-client.so
configure: error: utf8_mime2text() has new signature, but U8T_CANONICAL is missing.
複製程式碼 程式碼如下:
yum -y install libc-client-devel
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
configure: error: Please reinstall the lib curl distribution
複製程式碼 程式碼如下:
yum -y install curl-devel
configure: error: Could not find net-snmp-config binary. Please check your net-snmp installation.
複製程式碼 程式碼如下:
yum -y install net-snmp-devel
configure: error: xslt-config not found. Please reinstall the libxslt >= 1.1.0 distribution
複製程式碼 程式碼如下:
yum -y install libxslt-devel
checking for BZip2 support… yes checking for BZip2 in default path… not found configure: error: Please reinstall the BZip2 distribution
Fix:
複製程式碼 程式碼如下:
yum -y 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 -y 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 -y install db4-devel
checking for fabsf… yes checking for floorf… yes configure: error: jpeglib.h not found.
Fix:
複製程式碼 程式碼如下:
yum -y 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 -y 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 -y 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 -y 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 -y 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 -y 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 -y 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 -y 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 -y install sqlite-devel
checking for utsname.domainname… yes checking for PSPELL support… yes configure: error: Cannot find pspell
Fix:
複製程式碼 程式碼如下:
yum -y 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 -y 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 -y install libxslt-devel
configure: error: xml2-config not found. Please check your libxml2 installation.
Fix:
複製程式碼 程式碼如下:
yum -y install libxml2-devel
checking for PCRE headers location… configure: error: Could not find pcre.h in /usr
Fix:
複製程式碼 程式碼如下:
yum -y install pcre-devel
configure: error: Cannot find MySQL header files under yes. Note that the MySQL client library is not bundled anymore!
Fix:
複製程式碼 程式碼如下:
yum -y install mysql-devel
checking for unixODBC support… configure: error: ODBC header file ‘/usr/include/sqlext.h' not found!
Fix:
複製程式碼 程式碼如下:
yum -y install unixODBC-devel
checking for pg_config… not found configure: error: Cannot find libpq-fe.h. Please specify correct PostgreSQL installation path
Fix:
複製程式碼 程式碼如下:
yum -y install postgresql-devel
configure: error: Cannot find pspell
Fix:
複製程式碼 程式碼如下:
yum -y install pspell-devel
configure: error: Could not find net-snmp-config binary. Please check your net-snmp installation.
Fix:
複製程式碼 程式碼如下:
yum -y install net-snmp-devel
configure: error: xslt-config not found. Please reinstall the libxslt >= 1.1.0 distribution
Fix:
複製程式碼 程式碼如下:
yum -y install libxslt-devel
相關文章
- PHP編譯configure時常見錯誤,和PHP7.1.4 編譯安裝PHP編譯
- opencv 編譯常見錯誤OpenCV編譯
- PHP編譯錯誤及解決辦法PHP編譯
- JB7的常見編譯錯誤!!編譯
- PHP中介軟體ICE,ICE的安裝配置,ICE常見編譯和執行(異常)錯誤PHP編譯
- AndroidStudio之NDK常見編譯錯誤Android編譯
- php編譯小錯誤PHP編譯
- 編譯PHP的錯誤編譯PHP
- Idea編譯錯誤解決辦法Idea編譯
- Mac下php常見錯誤資訊MacPHP
- MySQL 安裝常見錯誤MySql
- OpenCV1.0編譯錯誤解決辦法OpenCV編譯
- PHP原始碼包編譯安裝錯誤及解決方法彙總PHP原始碼編譯
- 安裝RAC常見小錯誤
- php之ZendFramewor篇(四)常見錯誤資訊PHP
- 【譯】避免這些常見的JavaScript錯誤JavaScript
- 正確理解PHP程式編譯時的錯誤資訊PHP編譯
- php安全配置記錄和常見錯誤梳理PHP
- MySQL 常見錯誤MySql
- oracle 常見錯誤Oracle
- 執行無法解決的編譯錯誤編譯
- Hadoop常見錯誤及解決方案Hadoop
- 開發常見錯誤及解決方案
- 9個常見的Android開發錯誤及解決辦法Android
- Go 常見錯誤集錦 | 字串底層原理及常見錯誤Go字串
- Go常見錯誤集錦 | 字串底層原理及常見錯誤Go字串
- 常見的web錯誤Web
- mysql replication常見錯誤MySql
- 常見 APK 反編譯工具安裝與使用APK編譯
- 編譯安裝php的openssl元件時遇到 libssl not found解決辦法編譯PHP元件
- VS 編譯錯誤編譯
- PHP錯誤和異常PHP
- mdxbuilder打包mdx時的常見錯誤UI
- SSL證書常見的錯誤和解決辦法是什麼?
- 編譯EJB出現錯誤的解決編譯
- C/C++常見錯誤詳解C++
- mysql8 常見錯誤MySql
- 常見的錯誤 SQL 用法SQL