mirror of
https://github.com/curl/curl.git
synced 2025-02-11 14:50:40 +08:00
configure: avoid undefined check_for_ca_bundle
instead of using a "greater than 0" test, check for variable being set, as it is always set to 1, and could be left unset if non of OPENSSL MBEDTLS GNUTLS WOLFSSL is being configured for. Closes #4213
This commit is contained in:
parent
86ae740482
commit
4a962ff218
@ -2633,7 +2633,7 @@ dnl **********************************************************************
|
||||
dnl Check for the CA bundle
|
||||
dnl **********************************************************************
|
||||
|
||||
if test "$check_for_ca_bundle" -gt 0; then
|
||||
if test -n "$check_for_ca_bundle"; then
|
||||
CURL_CHECK_CA_BUNDLE
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user