无法在RHEL 7.3

时间:2017-05-30 19:46:31

标签: gcc libcurl rhel7

修复此编译错误的正确方法是什么,以便我可以在RHEL 7.3上安装最新的libcurl?

我已经能够获得最新的openssl,构建和安装它。 OpenSSL 1.1.1-dev xx XXX xxxx现在报告了openssl version。最新的卷曲是从https://github.com/curl/curl.git克隆/拉出的。这是我使用的bash脚本片段:

CD=$(pwd)
CPPFLAGS="-I$CD/zlib -I$CD/openssl -I$CD/openssl/include" 
LDFLAGS="-L$CD/zlib -L$CD/openssl" 
LIBS="-ldl" 
cd curl
./buildconf
./configure --disable-shared --with-zlib --with-ssl
make
make install

使用sudo运行批处理,make完成且没有错误。 make install产生了这个:

  CC       libcurl_la-openssl.lo
vtls/openssl.c: In function 'Curl_ossl_seed':
vtls/openssl.c:279: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]: *** [libcurl_la-openssl.lo] Error 1
make[2]: Leaving directory `/home/john/curl/lib'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/john/curl/lib'
make: *** [all-recursive] Error 1

2 个答案:

答案 0 :(得分:4)

RAND_egd()不再是默认OpenSSL安装的一部分。见this git commit。您可以通过在configure命令中添加enable-egd来解决问题。

答案 1 :(得分:2)

编辑:更新了更清洁的版本 以下是使用最新curl

构建openssl的步骤
CD=$(pwd)
echo Setting up openssl
if [ ! -d openssl ]; then
    git clone https://github.com/openssl/openssl.git
    cd openssl
else
    cd openssl
    git pull
fi
# you may not need -Wl,--enable-new-dtags but it works for me
./config -Wl,--enable-new-dtags --prefix=/usr/local/ssl --openssldir=/usr/local/ssl
make depend
make 
sudo make install
cd ..

lib=zlib-1.2.11
echo Setting up zlib
if [ ! -d zlib ]; then
    wget http://zlib.net/$lib.tar.gz
    tar xzvf $lib.tar.gz
    mv $lib zlib
fi
cd zlib
./configure
make
cd ..

echo Setting up curl ...
CD=$(pwd)

if [ ! -d curl ]; then
    git clone https://github.com/curl/curl.git
    cd curl
else
    cd curl
    git pull
fi

cd curl
./buildconf
PKG_CONFIG_PATH=/usr/local/ssl/lib/pkgconfig LIBS="-ldl" ./configure --with-
zlib=$CD/zlib --disable-shared
make
# I use local curl build without installing it
# make install
cd ..

我真诚地希望这有助于其他人。