CentOS下安装libmcrypt失败
libmcrypt是什么??
是加密算法扩展库---支持DES, 3DES, RIJNDAEL, Twofish, IDEA, GOST, CAST-256, ARCFOUR, SERPENT, SAFER+等算法
在安装时候出现如下错误:
出现该情况是由于c++编译器的相关package没有安装,以root用户登陆
# yum install glibc-headers
# yum install gcc-c++
在编译安装 mcrypt 出现了错误 ,一下是错误信息
[root@localhost mcrypt-2.6.8]# make make all-recursive make[1]: Entering directory `/root/tools/lamp/mcrypt-2.6.8' Making all in doc make[2]: Entering directory `/root/tools/lamp/mcrypt-2.6.8/doc' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/root/tools/lamp/mcrypt-2.6.8/doc' Making all in src make[2]: Entering directory `/root/tools/lamp/mcrypt-2.6.8/src' gcc -DHAVE_CONFIG_H -I. -I.. -DLOCALEDIR=\"/usr/local/share/locale\" -I../intl -g -O2 -I/usr/local/include -Wall -MT extra.o -MD -MP -MF .deps/extra.Tpo -c -o extra.o extra.c In file included from /usr/local/include/mhash.h:33, from ./defines.h:8, from extra.c:24: /usr/local/include/mutils.h:27:26: error: mhash_config.h: No such file or directory extra.c: In function ‘write_file_head’:
于是查看 /usr/local/include/mutils.h 第26,27行:
#if defined(HAVE_CONFIG_H) #include <mhash_config.h> #endif
到 /usr/local/include/ 目录下一看 没有 mhash_config.h 文件.
解决办法: 从系统中查找 mhash_config.h 将找到的 mhash_config.h 复制到 /usr/local/include/
# locate mhash_config.h /root/tools/lamp/mhash-0.9.3/mhash_config.h /root/tools/lamp/mhash-0.9.3/mhash_config.h.in /usr/include/mutils/mhash_config.h # cp /usr/include/mutils/mhash_config.h /usr/local/include/
查看是否已经安装
ldconfig -p | grep libmcrypt
ldconfig -p | grep mcrypt
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
· 全程不用写代码,我用AI程序员写了一个飞机大战
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 记一次.NET内存居高不下排查解决与启示
· DeepSeek 开源周回顾「GitHub 热点速览」
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了