From: Viktor Szakats Date: Thu, 13 Feb 2025 21:02:25 +0000 (+0100) Subject: cmake: mention 'insecure' in the debug build warning X-Git-Tag: curl-8_13_0~481 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5d194d942d2597c5cbc177b7fe948f45b3e7d4b9;p=thirdparty%2Fcurl.git cmake: mention 'insecure' in the debug build warning Closes #16327 --- diff --git a/CMakeLists.txt b/CMakeLists.txt index b7ecfaa415..33693fe33f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -265,7 +265,7 @@ endif() option(ENABLE_DEBUG "Enable curl debug features (for developing curl itself)" OFF) if(ENABLE_DEBUG) - message(WARNING "This curl build is Debug-enabled, do not use in production.") + message(WARNING "This curl build is Debug-enabled and insecure, do not use in production.") endif() option(ENABLE_CURLDEBUG "Enable TrackMemory debug feature" ${ENABLE_DEBUG})