configure.ac: detect ssl need with libcurl
commit7e91e8d73a757801c0604a03fd2f0fa8003e4ac0
authorRemi Pommarel <repk@triplefau.lt>
Thu, 24 Sep 2015 19:14:00 +0000 (24 21:14 +0200)
committerJunio C Hamano <gitster@pobox.com>
Wed, 21 Oct 2015 19:44:44 +0000 (21 12:44 -0700)
treefe9ab23c965706af6386af7261f519061eb1ceaa
parentf89158760d5f02ba59f644799abd921e6be22f13
configure.ac: detect ssl need with libcurl

When libcurl has been statically compiled with openssl support they both
need to be linked in everytime libcurl is used.

During configuration this can be detected by looking for Curl_ssl_init
function symbol in libcurl, which will only be present if libcurl has been
compiled statically built with openssl.

configure.ac checks for Curl_ssl_init function in libcurl and if such function
exists; it sets NEEDS_SSL_WITH_CURL that is used by the Makefile to include
-lssl alongside with -lcurl.

Signed-off-by: Remi Pommarel <repk@triplefau.lt>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
configure.ac