summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorJoel Rosdahl <joel@rosdahl.net>2022-11-20 20:46:16 +0100
committerJoel Rosdahl <joel@rosdahl.net>2022-11-20 21:44:29 +0100
commitc49939364b3c74d796167621382d107b3d8457e9 (patch)
tree5f9dfc95b41e6202ac8f258460736e1b2b6e9d8d /cmake
parent3b6c2a5a63e104ed2090ddebe611182297fd1f9c (diff)
downloadccache-c49939364b3c74d796167621382d107b3d8457e9.tar.gz
bump: Upgrade to hiredis 1.1.0
Diffstat (limited to 'cmake')
-rw-r--r--cmake/Findhiredis.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/Findhiredis.cmake b/cmake/Findhiredis.cmake
index e16a55ea..b8045f6f 100644
--- a/cmake/Findhiredis.cmake
+++ b/cmake/Findhiredis.cmake
@@ -33,7 +33,7 @@ if(HIREDIS_INCLUDE_DIR AND HIREDIS_LIBRARY)
elseif(HIREDIS_FROM_INTERNET)
message(STATUS "*** WARNING ***: Using hiredis from the internet because it was NOT found and HIREDIS_FROM_INTERNET is TRUE")
- set(hiredis_version "1.0.2")
+ set(hiredis_version "1.1.0")
set(hiredis_dir ${CMAKE_BINARY_DIR}/hiredis-${hiredis_version})
set(hiredis_build ${CMAKE_BINARY_DIR}/hiredis-build)
@@ -43,7 +43,7 @@ elseif(HIREDIS_FROM_INTERNET)
FetchContent_Declare(
hiredis
URL https://github.com/redis/hiredis/archive/v${hiredis_version}.tar.gz
- URL_HASH SHA256=e0ab696e2f07deb4252dda45b703d09854e53b9703c7d52182ce5a22616c3819
+ URL_HASH SHA256=fe6d21741ec7f3fc9df409d921f47dfc73a4d8ff64f4ac6f1d95f951bf7f53d6
SOURCE_DIR ${hiredis_dir}
BINARY_DIR ${hiredis_build}
)