PHP

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

今天在编译php的时候,出现如下错误php安装出错: configure: error: mcrypt.h not found. Please reinstall libmcrypt.求解决?
已邀请:

OpenSkill - OpenSkill官方账号

赞同来自: Ansible

意思是,没有查找到mcrytp.h,需要安装libcrytp,在下面的地址下载libmarypt:# wget ftp://mcrypt.hellug.gr/pub/crypto/mcrypt/attic/libmcrypt/libmcrypt-2.5.7.tar.gz安装:tar -zxvf libmcrypt-2.5.7.tar.gz
cd libmcrypt-2.5.7
./configure
make
make install然后再安装PHP试试!

要回复问题请先登录注册