mirror of
https://github.com/curl/curl.git
synced 2026-05-16 05:46:20 +03: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
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue