1
0
mirror of synced 2024-11-12 10:10:53 +01:00

build: Lower curl version requirement (#684)

to allow building against RHEL 9's system curl
This commit is contained in:
Jonathan Wright 2022-08-17 18:13:38 -05:00 committed by GitHub
parent 1ddd3ea2b9
commit be82ee15b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)