centos7编译curl时发生错误

发布于 2022-09-05 20:00:02 字数 755 浏览 30 评论 0

1.在编译curl时发生如下错误

make[2]: Entering directory `/software/curl/curl-7.55.1/lib'
  CC       vtls/libcurl_la-openssl.lo
vtls/openssl.c: In function ‘Curl_ossl_seed’:
vtls/openssl.c:276:5: error: implicit declaration of function ‘RAND_egd’ [-Werror=implicit-function-declaration]
     int ret = RAND_egd(data->set.str[STRING_SSL_EGDSOCKET]?
     ^
cc1: some warnings being treated as errors
make[2]: *** [vtls/libcurl_la-openssl.lo] Error 1
make[2]: Leaving directory `/software/curl/curl-7.55.1/lib'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/software/curl/curl-7.55.1/lib'
make: *** [all-recursive] Error 1

编译的配置参数

 ./configure --with-ssl

curl版本是7.55.1,openssl版本是1.1.0f

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

木落 2022-09-12 20:00:02

http://forum.directadmin.com/... 找到了解决办法
参考zEitEr的办法
https://help.poralix.com/arti...

在其中

cd /usr/local/directadmin/scripts/
wget https://raw.githubusercontent.com/poralix/directadmin-utils/master/openssl/openssl.install-1.0.1-primary.sh
chmod 755 openssl.install-1.0.1-primary.sh
./openssl.install-1.0.1-primary.sh

需要修改一下其中的代码

#!/usr/bin/env bash
#
# by Alex Grebenschikov (www.poralix.com)
#
VER="1.1.0";
INSTALL_TO="/usr";

URL="https://www.openssl.org/source/old/${VER}/openssl-${VER}f.tar.gz"
DIR_TO="/usr/local/src";
SAVE_TO="${DIR_TO}/openssl-${VER}-latest.tar.gz";

wget ${URL} -O ${SAVE_TO};
tar -zxvf ${SAVE_TO} -C ${DIR_TO};

cd ${DIR_TO};
DIR=`ls -1d openssl-${VER}*/ | tail -1`;
cd ${DIR};

./config --prefix=${INSTALL_TO} no-ssl2 no-ssl3 zlib-dynamic -fPIC shared;
make depend && make install;

c=`grep "${INSTALL_TO}/lib" /etc/ld.so.conf -c`;
if [ "${c}" == "0" ]; then
     echo "${INSTALL_TO}/lib" >> /etc/ld.so.conf;
fi;
ldconfig

exit 0;

保存后执行,然后再次编译curl通过

孤云独去闲 2022-09-12 20:00:02

传送门
图片描述
找到这块内容尝试下

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文