今天在編譯php的時候,出現如下錯誤php安裝出錯:configure: error: mcrypt.h not found. Please reinstall libmcrypt.,意思是,沒有查找到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. gz
cd libmcrypt-2.5.7
./configure
make
make install
然後再安裝PHP
版權聲明:本文為博主原創文章,未經博主允許不得轉載。
以上就介紹了error: mcrypth,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。