博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LAMP编译安装常见问题
阅读量:2046 次
发布时间:2019-04-28

本文共 3307 字,大约阅读时间需要 11 分钟。

1、错误:configure: error: freetype-config not found.

      解决:yum install freetype-devel

 

2、错误:configure: error: libevent >= 1.4.11 could not be found 

      解决:yum -y install libevent libevent-devel 

 

3、错误:configure: error: Please reinstall the mysql distributio 

      解决:yum -y install mysql-devel 

 

4、错误:make: *** [sapi/fpm/php-fpm] error 1 

     解决:用make ZEND_EXTRA_LIBS='-liconv'编译 

 

5、错误:configure: error: XML configuration could not be found 

     解决:yum -y install libxml2 libxml2-devel 

 

6、错误:configure: error: No curses/termcap library found 

      解决:yum -y install ncurses ncurses-devel 

 

7、错误:configure: error: xml2-config not found 

      解决:yum -y install libxml2 libxml2-devel 

 

8、错误:configure: error: Cannot find OpenSSL's <evp.h> 

      解决:yum install openssl openssl-devel 

 

9、错误:configure: error: Please reinstall the libcurl distribution -easy.h should be in <curl-dir>/include/curl/ 

      解决:yum install curl curl-devel 

 

10、错误:configure: error: Cannot find ldap.h 

       解决:yum install openldap openldap-devel 

 

11、错误:configure: error: libjpeg.(aso) not found 

        解决:yum install libjpeglibjpeg -devel 

 

12、错误:configure: error: libpng.(aso) not found. 

        解决:yum install libpnglibpng –devel 

 

13、错误:onfigure: error: freetype.h not found. 

        解决:yum install freetype-devel 

 

14、错误:configure: error: cannot find output from lex; giving up 

        解决:yum -y install flex 

 

15、错误:configure: error: mod_deflate has been requested but can not be built due to prerequisite failures 

        解决:yum -y install zlib-devel openssl-devel 

 

16、错误:Configure: error: Unable to locate gmp.h 

         解决:yum install gmp-devel 

 

17、错误:Configure: error: Cannot find MySQL header files under /usr. Note that the MySQL client library is not bundled anymore! 

        解决:yum install mysql-devel

 

18、安装php: ./configure   configure: error: XML configuration could not be found 

         解决:yum -y install libxml2 libxml2-devel 

 

19、Cannot find OpenSSL's <evp.h> 

        解决:yum install openssl openssl-devel 

 

20、 Configure: error: xml2-config not found. Please check your libxml2 installation. 

         解决:#yum install libxml2 libxml2-devel 

 

21、Checking for pkg-config… /usr/bin/pkg-config configure: error: Cannot find OpenSSL's <evp.h> 

         解决:yum install openssl openssl-devel 

 

22、 Configure: error: Please reinstall the BZip2 distribution 

         解决: yum install bzip2 bzip2-devel 

 

23、 Configure: error: Please reinstall the libcurl distribution - easy.h should be in <curl-dir>/include/curl/ 

         解决: yum install curl curl-devel  

 

24、Configure: error: libjpeg.(also) not found. 

        解决: yum install libjpeg libjpeg-devel 

 

25、Configure: error: libpng.(also) not found. 

         解决:yum install libpng libpng-devel 

 

26、 Configure: error: freetype.h not found. 

         #yum install freetype-devel 

 

27、 Configure: error: Unable to locate gmp.h 

        # yum install gmp-devel 

 

28、Configure: error: Cannot find MySQL header files under /usr. Note that the MySQL client library is not bundled anymore! 

        # yum install mysql-devel  

 

29、 Configure: error: Please reinstall the ncurses distribution 

         # yum install ncurses ncurses-devel 

 

30、 Checking for unixODBC support… configure: error: ODBC header file ‘/usr/include/sqlext.h' not found! 

         # yum install unixODBC-devel 

 

31、 Configure: error: Cannot find pspell 

         # yum install pspell-devel 

 

32、configure: error: mcrypt.h not found. Please reinstall libmcrypt. 

        # yum install libmcrypt libmcrypt-devel

 

 

33、Configure: error: snmp.h not found. Check your SNMP installation. 

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

转载地址:http://dclof.baihongyu.com/

你可能感兴趣的文章
Cocos2d-x 地图行走的实现1:图论与Dijkstra算法
查看>>
GPUImage
查看>>
Android View系统解析(下)
查看>>
Windows7中IIS简单安装与配置(详细图解)
查看>>
linux基本命令
查看>>
BlockQueue 生产消费 不需要判断阻塞唤醒条件
查看>>
ExecutorService 线程池 newFixedThreadPool newSingleThreadExecutor newCachedThreadPool
查看>>
强引用 软引用 弱引用 虚引用
查看>>
java去除字符串中的空格\t、回车\n、换行符\r、制表符\t
查看>>
数据类型 java转换
查看>>
常用的正则表达式
查看>>
"NetworkError: 400 Bad Request - http://172.16.47.117:8088/rhip/**/####t/approval?date=976
查看>>
ie8 加载不到js 报SCRIPT1028: 缺少标识符、字符串或数字 ;SCRIPT5009: “anorectaSearch”未定义
查看>>
mybatis 根据 数据库表 自动生成 实体
查看>>
win10将IE11兼容ie10
查看>>
Kettle WebService组件无法传参问题解决
查看>>
checkbox设置字体颜色
查看>>
统计:分组统计后只加合计,不加小计 group by rollup
查看>>
第一篇 HelloWorld.java重新学起
查看>>
ORACLE表空间扩张
查看>>