1)报错: configure: error: MySQL library not found 

  • 解决办法 
    # find / -name "mysql_config"
    /usr/local/mysql/bin/mysql_config
    
    # ./configure --with-mysql=/usr/local/mysql/bin/mysql_config

2)报错:configure: error: LIBXML2 library not found

  • 解决办法
    # yum install libxml2-devel -y

3)报错:configure: error: Invalid Net-SNMP directory - unable to find net-snmp-config

  • 解决办法
    # yum install net-snmp-devel -y

4)报错:configure: error: Unable to use libevent (libevent check failed)

  • 解决办法
    # yum install libevent-devel -y

5)报错:configure: error: Curl library not found

  • 解决办法
    # yum install curl-devel -y

6)报错:configure: error: Unable to use libpcre (libpcre check failed)

  • 解决办法
    # yum install pcre* -y

     

 

相关文章:

  • 2021-11-09
  • 2022-12-23
  • 2021-04-22
  • 2021-12-05
猜你喜欢
  • 2022-01-31
  • 2021-04-04
  • 2022-12-23
  • 2021-06-02
  • 2021-07-04
  • 2021-04-03
相关资源
相似解决方案