From be82ee15b7da86e2733df25cc8fd35b6ad30ec20 Mon Sep 17 00:00:00 2001 From: Jonathan Wright Date: Wed, 17 Aug 2022 18:13:38 -0500 Subject: [PATCH] build: Lower curl version requirement (#684) to allow building against RHEL 9's system curl --- lib/libimhex/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libimhex/CMakeLists.txt b/lib/libimhex/CMakeLists.txt index 7b438823b..11991a50a 100644 --- a/lib/libimhex/CMakeLists.txt +++ b/lib/libimhex/CMakeLists.txt @@ -58,7 +58,7 @@ if(NOT USE_SYSTEM_CURL) set(LIBCURL_LIBRARIES libcurl) else() find_package(PkgConfig REQUIRED) - pkg_check_modules(LIBCURL REQUIRED IMPORTED_TARGET libcurl>=7.78.0) + pkg_check_modules(LIBCURL REQUIRED IMPORTED_TARGET libcurl>=7.76.1) endif() if (NOT USE_SYSTEM_LLVM)