From 7a1e72d51e7d2da399eb169afb1b8be3ffe84d6d Mon Sep 17 00:00:00 2001 From: Jim Hague Date: Fri, 1 Nov 2019 12:10:52 +0000 Subject: [PATCH] Increase minimum libunbound version to 1.5.9 to get pluggable event handling. At Willem's suggestion. --- CMakeLists.txt | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 86559f81..22bd196d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -436,11 +436,7 @@ mark_as_advanced(BSD_LIBRARY) # If we're not stub only, we need libunbound. if (NOT ENABLE_STUB_ONLY) - # libunbound up to version 1.3.22 can't be linked against a program that also - # links libevent because of a symbol clash. Rather than work around this - # problem with libunbounds prior to November 2014, just insist on a - # modern enough libunbound. - find_package(Libunbound "1.5.0" REQUIRED) + find_package(Libunbound "1.5.9" REQUIRED) set(HAVE_LIBUNBOUND 1) list(APPEND getdns_system_libs Libunbound::Libunbound)