如何安裝 mcrypt

    #cd libmcrypt-2.5.8
#./configure
#make
#make install
說明:libmcript默認安裝在/usr/local
3.安裝mhash
#tar -zxvf mhash-0.9.9.9.tar.gz
#cd mhash-0.9.9.9
#./configure
#make
#make install
4.安裝mcrypt
#tar -zxvf mcrypt-2.6.8.tar.gz
#cd mcrypt-2.6.8
#LD_LIBRARY_PATH=/usr/local/lib ./configure
#make
#make install
說明:因爲在配置Mcrypt時,會找不到libmcrypt的連接庫,致使沒法編譯,由於Libmcrypt的連接庫在/usr/local/文件夾下。
所以在配置mcrypt時要加入LD_LIBRARY_PATH=/usr/local導入鍵接庫
5.安裝PHP
在配置PHP是加入:
#./configure --with-mcrypt --with-mhash
或者經過php的phpize動態添加的方式,到源碼的ext/的相應目錄,執行
/usr/bin/phpize
./configure --with-php-config=/usr/bin/php-config
make
make install
而後把生成的.so文件在php.ini文件裏引用後重啓apache就能夠了!
相關文章
相關標籤/搜索