无法使用自制软件和php7.4安装mcrypt
操作系统:MacOS 11(大苏尔)
自制软件:2.5.12
梨版本:1.10.12
我刚刚使用HomeBREW将Mac上的php从php7.1升级到php7.4(BREW安装php@7.4)。
然后,当我尝试安装mcrypt扩展时,收到错误:
configure: error: mcrypt.h not found. Please reinstall libmcrypt.
ERROR: `/private/tmp/pear/install/mcrypt/configure --with-php-config=/usr/local/homebrew/opt/php@7.4/bin/php-config --with-mcrypt' failed
以下是我所做的:
- BREW不高加密
- 安装PECL
- sudo pecl install mcrypt--此处显示错误。
我尝试的内容:
找到mcrypt.h并手动将该文件放到多个位置(基于php-config),无法正常工作。
已清除BREW并重新安装/重新链接mcrypt(Libmcrypt),但无法工作。
已删除旧BREW版本的旧mcrypt文件。
解决方案
我遇到了同样的问题。因此,在使用brew install mcrypt
安装libmcrypt之后,似乎configure无法自动解析到mcrypt.h的路径。指定CPPFLAGS或提供自制软件包含路径也不起作用。
但是我找到了一个适合我的解决方案,将mcrypt在Homebrew Cella中的安装位置提供给PECL。这是以下代码自动执行的操作:
pecl install mcrypt <<<"$(ls -d $(brew --prefix)/Cellar/mcrypt/* | tail -1)"
相关文章