From: Viktor Szakats Date: Tue, 24 Sep 2024 09:51:02 +0000 (+0200) Subject: build: show if CA bundle to embed was found X-Git-Tag: curl-8_11_0~351 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f6036dead52a9d4cc96a47c6bd9bbed9ee54db4a;p=thirdparty%2Fcurl.git build: show if CA bundle to embed was found Follow-up to 8a3740bc8e558b9a9d4a652b74cf27a0961d7010 #14059 Closes #15027 --- diff --git a/CMakeLists.txt b/CMakeLists.txt index a0764b3402..d23ed93687 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1345,6 +1345,7 @@ if(_curl_ca_bundle_supported) if(BUILD_CURL_EXE AND NOT CURL_CA_EMBED STREQUAL "") if(EXISTS "${CURL_CA_EMBED}") set(CURL_CA_EMBED_SET TRUE) + message(STATUS "Found CA bundle to embed: ${CURL_CA_EMBED}") else() message(FATAL_ERROR "CA bundle to embed is missing: '${CURL_CA_EMBED}'") endif() diff --git a/configure.ac b/configure.ac index ca6e4c66e0..46bb8bca0a 100644 --- a/configure.ac +++ b/configure.ac @@ -5410,6 +5410,7 @@ AC_MSG_NOTICE([Configured to build curl/libcurl: SSPI: ${curl_sspi_msg} ca cert bundle: ${ca}${ca_warning} ca cert path: ${capath}${capath_warning} + ca cert embed: ${CURL_CA_EMBED} ca fallback: ${with_ca_fallback} LDAP: ${curl_ldap_msg} LDAPS: ${curl_ldaps_msg}