A instalação manual do curl não consegue encontrar o openssl

0

A instalação do meu sistema (Centos7) de curvas não suporta https. Então eu segui essa resposta baixada de source e instalou-se , usando a opção ./configure --with-ssl .

Recebi o seguinte aviso durante a configuração:

checking OpenSSL linking with -ldl... no
checking OpenSSL linking with -ldl and -lpthread... no
checking for ssl_version in -laxtls... no
configure: WARNING: SSL disabled, you will not be able to use HTTPS, FTPS, NTLM and more.
configure: WARNING: Use --with-ssl, --with-gnutls, --with-polarssl, --with-cyassl, --with-nss, --with-axtls, --with-winssl, or --with-darwinssl to address this.

Como resultado, minha construção de curvas não suporta https.

O Open SSL está instalado no meu sistema:

[user@server curl-7.61.0]$ which openssl
/usr/bin/openssl

Como posso obter minha instalação de curl para encontrar o openssl e oferecer suporte a HTTPS?

    
por kingledion 23.08.2018 / 15:53

1 resposta

1

Para satisfazer o script configure e ter seu curl de suporte OpenSSL compilado, você precisará instalar o pacote de desenvolvimento correspondente, openssl-devel .

    
por 23.08.2018 / 16:18