web-dev-qa-db-ja.com

最新のopensslでcurlをビルドする方法は?

だから私はopensslを構築します

./config
make
Sudo make install
Sudo ln -sf /usr/local/ssl/bin/openssl `which openssl`

カールを作成します

./configure --with-ssl 
make
make install

OpenSSLは正しくインストールされているように見えます。

openssl version
OpenSSL 1.0.1g 7 Apr 2014

ただし、curlは古いopensslバージョン(1.0.1gではなく1.0.1f)を使用します。

curl --version
curl 7.37.0 (x86_64-unknown-linux-gnu) libcurl/7.37.0 OpenSSL/1.0.1f zlib/1.2.8 libidn/1.28 libssh2/1.4.3 librtmp/2.3
Protocols: dict file ftp ftps Gopher http https imap imaps ldap ldaps pop3 pop3s rtmp rtsp scp sftp smtp smtps telnet tftp 
Features: IDN IPv6 Largefile NTLM NTLM_WB SSL libz TLS-SRP 

カールが新しいバージョンを使用する方法

私はいくつかの奇妙なopenssl/curlのバグと戦っているので、最新バージョンを試してみたいと思います #1#2

編集:./configure --with-ssl=/usr/local/ssl/include/opensslも試しましたが、成功しませんでした

編集2:これまで私も試しました:

  • Sudo ./configure --with-ssl --with-libssl-prefix=/usr/local/ssl
  • ./configure --with-ssl=/usr/local/ssl
  • PKG_CONFIG_PATH=/usr/local/ssl/lib/pkgconfig ./configure
  • PKG_CONFIG_PATH=/usr/local/ssl/lib/pkgconfig ./configure --with-ssl
  • PKG_CONFIG_PATH=/usr/local/ssl/lib/pkgconfig ./configure --with-ssl=/usr/local/ssl/include/openssl

失敗...

18
Peter

OpenSSLがインストールされているディレクトリを指定する必要があります(シンボリックリンクは必要でも十分でもありません)

./configure --with-ssl=/usr/local/ssl

編集:または、PKG_CONFIG_PATH環境変数を設定することもできます(./configure --helpが示唆するとおり):

PKG_CONFIG_PATH=/usr/local/ssl/lib/pkgconfig ./configure

13
fkraiem
Sudo apt-get install libssl-dev
./configure --prefix=/usr --libdir=/usr/lib/x86_64-linux-gnu
Sudo make
Sudo make install

Ubuntu 15.04でcurl 7.43をビルドするのに必要なすべてです

5
Berto B.

同じ演習を行っていたときにわかったのは、curlがopenssl静的ライブラリでは動作しないということです。何をしていても常にダイナミックを探していたので、最終的には私のために働く3つのことをしました

Configured openssl with enable-shared: ./config enable-shared
Configured curl with openssl: ./configure --with-ssl
Used LD_LIBRARY_PATH: LD_LIBRARY_PATH=/usr/local/lib:/usr/local/ssl/lib /usr/local/bin/curl -V

-Vフラグを指定した後者のコマンドは、curlが使用するopensslバージョンを表示します。/usr/local/libをLD_LIBRARY_PATHに追加して、curlが正しいlibcurlバージョンを使用するようにしました。

5
Oleg Gryb

これは私にとって長く困難な道のりでした。時間と時間(ご存知のとおり)。私が見つけたものは次のとおりです。

Ubuntu 12.04/14.04の場合、手動で両方をインストールする必要があります opensslおよびcurl

Openssl 1.0.2gを手動でインストールします。

Sudo apt-get install make # (Install compiling library Make)
wget https://www.openssl.org/source/openssl-1.0.2g.tar.gz # (Download the latest OpenSSL 1.0.2g binaries)
tar -xzvf openssl-1.0.2g.tar.gz # (Extract the tar ball to the local directory)
cd openssl-1.0.2g # (Enter extracted OpenSSL directory)
Sudo ./config # (Configure binaries for compiling)
Sudo make install # (install configured binaries)
Sudo ln -sf /usr/local/ssl/bin/openssl `which openssl` # (This will create a sym link to the new binaries)
openssl version -v

NGHTTP2が必要な場合(オプション/推奨):

# Get build requirements
# Some of these are used for the Python bindings
# this package also installs
Sudo apt-get install g++ make binutils autoconf automake autotools-dev libtool pkg-config \
  zlib1g-dev libcunit1-dev libssl-dev libxml2-dev libev-dev libevent-dev libjansson-dev \
  libjemalloc-dev cython python3-dev python-setuptools

# Build nghttp2 from source
git clone https://github.com/tatsuhiro-t/nghttp2.git
cd nghttp2
autoreconf -i
automake
autoconf
./configure
make
Sudo make install

Curlを手動でインストールします。

cd ~
Sudo apt-get build-dep curl
wget http://curl.haxx.se/download/curl-7.46.0.tar.bz2
tar -xvjf curl-7.46.0.tar.bz2
cd curl-7.46.0
./configure --with-nghttp2 --with-ssl --with-libssl-prefix=/usr/local/ssl # This is the line I had the most trouble with, especially figure out --with-libssl-prefix
make
Sudo make install
Sudo ldconfig

最終ステップ

$ Sudo ldconfig
$ Sudo service Apache2 restart # if you're using Apache

完了したら、$ curl --versionを試して、そこに正しいバージョンのopensslが表示されることを確認してください。具体的には、openssl> = 1.0.2g(および選択した場合はnghttp2)

$ curl --version
curl 7.50.2 (x86_64-pc-linux-gnu) libcurl/7.50.2 OpenSSL/1.0.2k zlib/1.2.8 nghttp2/1.21.0-DEV
Protocols: dict file ftp ftps Gopher http https imap imaps pop3 pop3s rtsp smb smbs smtp smtps telnet tftp 
Features: IPv6 Largefile NTLM NTLM_WB SSL libz TLS-SRP HTTP2 UnixSockets 

引用: curlopennssl

4
Jacksonkr
./configure --with-ssl=/usr/lib/ssl --libdir=/usr/lib/x86_64-linux-gnu
Sudo make
Sudo make install

数時間苦労した後、ubuntu 15.05でlibcurl 7.38でhttpsを有効にすることができました

2
Dev

静的OpenSSLライブラリを使用してcurlをコンパイルできました。これはtl; drバージョンです。

OpenSSL

./config no-shared --prefix=$PWD/_installdir
make depend && make && make install

カール

LIBS="-ldl" ./configure --prefix=$PWD/_installdir --with-ssl=/something/opensslrootdir/_installdir --disable-shared
make && make install

LIBS="-ldl"部分は必須です。

1
Martin Melka

私は通常、Jacksonkrの答えに従いましたが、他の人が言及した上記のすべてを一緒に必要としました。

LIBS="-ldl" PKG_CONFIG_PATH=/usr/local/ssl/lib/pkgconfig ./configure --with-ssl --with-libssl-prefix=/usr/local/ssl --disable-shared

--disable-sharedはオプションです。推測する必要があります。

0

Opensslをコンパイルすると、デフォルトの設定を使用して静的ライブラリのみが生成されます。したがって、curlで静的ライブラリを使用する場合は、次のようにします。

LIBS="-ldl -lpthread" ./configure --disable-shared --prefix=/usr/local/curl --with-ssl=/usr/local/ssl

here から答えを探しました。

注:この方法に従うと、curl静的ライブラリのみが生成されます。

0
pingsoli