C/C++教程

Your OpenSSL headers do not match your library

本文主要是介绍Your OpenSSL headers do not match your library,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

2022年4月9日
23:37

configure: error: Your OpenSSL headers do not match your
library. Check config.log for details.
If you are sure your installation is consistent, you can disable the check
by running "./configure --without-openssl-header-check".
Also see contrib/findssl.sh for help identifying header/library mismatches.

报错为ssl 文件库文件和头文件不相符。
通过查看 提示中的 contrib/findssl.sh  查看读取方式
发现库文件存在lib和lib64 其中 lib64中的文件后缀为so.3
Lib文件中为so.1.1  有可能是为了同时兼容1.1.1版本的openssl
我修改了/etc/ld.conf
文件中关于库的配置发现没有生效
于是猜想 openssh.spec文件配置优先级可能更高且默认为lib文件夹
于是在库配置项上添加了lib64  (库配置项见 另一篇随笔)
再次执行编译成功进行下去了

这篇关于Your OpenSSL headers do not match your library的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!