From 64a74831651819db788282ff251caf82e1e0b0f8 Mon Sep 17 00:00:00 2001 From: Urmas Rist Date: Fri, 8 Nov 2024 12:07:41 +0200 Subject: [PATCH] build: Require Judy for building If Judy is not present, the master could take a very long time to load (depending on FREE section size). This fixes that by requiring Judy for building. Fixes #239 --- cmake/Libraries.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/Libraries.cmake b/cmake/Libraries.cmake index b2edfb0d7..947063456 100644 --- a/cmake/Libraries.cmake +++ b/cmake/Libraries.cmake @@ -137,7 +137,7 @@ endif() # Find Judy -find_package(Judy) +find_package(Judy REQUIRED) if(JUDY_FOUND) set(SAUNAFS_HAVE_JUDY YES) set(SAUNAFS_HAVE_WORKING_JUDY1 ${JUDY_HAVE_WORKING_JUDY1})