From 0f3ce5df1adfd526ed114faced47a5b2cfc4dfcb Mon Sep 17 00:00:00 2001 From: Sude Date: Wed, 12 Apr 2023 12:43:37 +0300 Subject: [PATCH] Bump minimum libcurl version to 7.55.0 Forgot to change the requirement in 78c8f43 CURLINFO_CONTENT_LENGTH_DOWNLOAD_T requires libcurl >= 7.55.0 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e908be0..fa0ea7f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -23,7 +23,7 @@ find_package(Boost date_time iostreams ) -find_package(CURL 7.32.0 REQUIRED) +find_package(CURL 7.55.0 REQUIRED) find_package(Jsoncpp REQUIRED) find_package(Htmlcxx REQUIRED) find_package(Tinyxml2 REQUIRED)