Chinaunix首页 | 论坛 | 博客
  • 博客访问: 24569
  • 博文数量: 3
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 127
  • 用 户 组: 普通用户
  • 注册时间: 2013-06-26 22:11
文章分类

全部博文(3)

文章存档

2013年(3)

我的朋友

分类: PHP

2013-06-27 22:23:39


错误1:

  1. If configure fails try --with-xpm-dir=<DIR>
  2. configure: error: freetype.h not found.
     # yum install  freetype-devel

错误2:
  1. 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  libc-client-devel
   
错误3:
  1. configure: error: Cannot find imap library (libc-client.a). Please check your c-client installation.
    # ln -s /usr/lib64/libc-client.so  /usr/lib/libc-client.so   

错误4:  
  1. configure: error: mcrypt.h not found. Please reinstall libmcrypt.
    这个系统自身并没带相关的rpm包,因些需要自己手动编译安装, 源码包:
    安装Libmcrypt

  1. # tar -zxvf libmcrypt-2.5.8.tar.gz
  2. # cd libmcrypt-2.5.8
  3. # ./configure
  4. # make
  5. # make install

错误5
  1. checking for mysql_config... not found
  2. configure: error: Unable to find your mysql installation
    这个由于在编译的时候指定了 ‘ --with-pdo-mysql ’ 选项,但它并没有找到 mysql 的安装目录,因此只用指定 mysql 的安装目录就可以了  '--with-pdo-mysql=/usr/local/mysql'



阅读(2716) | 评论(0) | 转发(1) |
给主人留下些什么吧!~~