mirror of
https://github.com/git/git.git
synced 2024-11-24 02:17:02 +08:00
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>
This commit is contained in:
parent
f89158760d
commit
7e91e8d73a
10
configure.ac
10
configure.ac
@ -521,6 +521,16 @@ AC_CHECK_LIB([curl], [curl_global_init],
|
||||
[NO_CURL=],
|
||||
[NO_CURL=YesPlease])
|
||||
|
||||
if test -z "${NO_CURL}" && test -z "${NO_OPENSSL}"; then
|
||||
|
||||
AC_CHECK_LIB([curl], [Curl_ssl_init],
|
||||
[NEEDS_SSL_WITH_CURL=YesPlease],
|
||||
[NEEDS_SSL_WITH_CURL=])
|
||||
|
||||
GIT_CONF_SUBST([NEEDS_SSL_WITH_CURL])
|
||||
|
||||
fi
|
||||
|
||||
GIT_UNSTASH_FLAGS($CURLDIR)
|
||||
|
||||
GIT_CONF_SUBST([NO_CURL])
|
||||
|
Loading…
Reference in New Issue
Block a user