Heim >Backend-Entwicklung >PHP-Tutorial >php 编译安装报错 configure: error: mcrypt.h not found. Please reinstall libmcrypt.

php 编译安装报错 configure: error: mcrypt.h not found. Please reinstall libmcrypt.

WBOY
WBOYOriginal
2016-06-20 12:55:252168Durchsuche

编译安装php时报错的解决方法:

错误一:configure: error: mcrypt.h not found. Please reinstall libmcrypt.

    解决办法:需要安装Libmcrypt

        wget http://softlayer.dl.sourceforge.net/sourceforge/mcrypt/libmcrypt-2.5.8.tar.gz
        tar -zxvf libmcrypt-2.5.8.tar.gz
        cd /usr/local/src/libmcrypt-2.5.8
        ./configure --prefix=/usr/local
        make
        make install

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn