From f6036dead52a9d4cc96a47c6bd9bbed9ee54db4a Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Tue, 24 Sep 2024 11:51:02 +0200 Subject: [PATCH] build: show if CA bundle to embed was found Follow-up to 8a3740bc8e558b9a9d4a652b74cf27a0961d7010 #14059 Closes #15027 --- CMakeLists.txt | 1 + configure.ac | 1 + 2 files changed, 2 insertions(+) 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} -- 2.47.3