编译OpenResty遇到找不到OpenSSL的解决办法

以OpenResty-1.19.9.1为例

编辑openresty-1.19.9.1/build/nginx-1.19.9/auto/lib/openssl/conf

conf 复制代码
CORE_INCS="$CORE_INCS $OPENSSL/.openssl/include"
CORE_DEPS="$CORE_DEPS $OPENSSL/.openssl/include/openssl/ssl.h"
CORE_LIBS="$CORE_LIBS $OPENSSL/.openssl/lib/libssl.a"
CORE_LIBS="$CORE_LIBS $OPENSSL/.openssl/lib/libcrypto.a"

将/.openssl去掉

conf 复制代码
CORE_INCS="$CORE_INCS $OPENSSL/include"
CORE_DEPS="$CORE_DEPS $OPENSSL/include/openssl/ssl.h"
CORE_LIBS="$CORE_LIBS $OPENSSL/lib/libssl.a"
CORE_LIBS="$CORE_LIBS $OPENSSL/lib/libcrypto.a"

重新编译提示usr/local/openssl/lib/libssl.a:没有那个文件或目录错误,需要将上面文件中的lib改为lib64

相关推荐
Energet!c6 天前
Nginx access 日志通过 Filebeat 8.15.5 写入 Elasticsearch 8 实战指南
nginx·elasticsearch·filebeat·openresty
联系QQ 1808095110 天前
汽车变速器电控系统Simulink模型:从原理到实现
openresty
根哥的博客15 天前
编译nginx-1.28.0支持lua语法
nginx·lua·openresty·nosql注入漏洞
maycho12317 天前
探索 IEEE33 节点配电网模型:MATLAB 中的潮流与故障仿真之旅
openresty
雨落秋垣17 天前
优化 OpenResty 的性能
junit·openresty
嗝屁小孩纸19 天前
利用OpenResty统计网站访问量
junit·openresty
杀死那个蝈坦21 天前
OpenResty
junit·openresty
聊天QQ:6882388623 天前
改进下垂控制的孤岛型并联分布式电源微电网系统
openresty
我发在否1 个月前
OpenResty > 平滑升级:1.25.x → 1.27.x
junit·openresty
huangdengji2 个月前
基于openresty反向代理、dns劫持、实现对http请求、响应内容抓包
网络协议·http·openresty