From e8b624f4fbf4d4ed3baa671fe801da72bee65d8a Mon Sep 17 00:00:00 2001 From: Oleksandr Kalko Date: Sun, 18 May 2025 16:39:06 +0300 Subject: [PATCH] [1.5] Add alternative download for bzip2 (#7998) --- 3rdParty/bzip2/CMakeLists.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/3rdParty/bzip2/CMakeLists.txt b/3rdParty/bzip2/CMakeLists.txt index 796856ec3..6307af89c 100644 --- a/3rdParty/bzip2/CMakeLists.txt +++ b/3rdParty/bzip2/CMakeLists.txt @@ -1,9 +1,10 @@ include(functions/FetchContent_MakeAvailableExcludeFromAll) include(FetchContent) + FetchContent_Declare(bzip2 - URL https://sourceware.org/pub/bzip2/bzip2-1.0.8.tar.gz - URL_HASH MD5=67e051268d0c475ea773822f7500d0e5 + GIT_REPOSITORY https://sourceware.org/git/bzip2 + GIT_TAG bzip2-1.0.8 ) FetchContent_MakeAvailableExcludeFromAll(bzip2)