From 1206a3ad0f0fc09fa3c8a5c6a71db216130c3db9 Mon Sep 17 00:00:00 2001 From: stackotter Date: Fri, 27 Dec 2024 15:15:13 +1000 Subject: [PATCH] Remove AsynchDNS requirement from libcurl dependency (Rocky Linux 8) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e211efe..e961a3b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -287,7 +287,7 @@ endif() if(SENTRY_TRANSPORT_CURL) if(NOT TARGET CURL::libcurl) # Some other lib might bring libcurl already - find_package(CURL REQUIRED COMPONENTS AsynchDNS) + find_package(CURL) endif() target_link_libraries(sentry PRIVATE CURL::libcurl)