Skip to content

Commit

Permalink
build: Require Judy for building
Browse files Browse the repository at this point in the history
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
  • Loading branch information
uristdwarf committed Nov 8, 2024
1 parent 0b47360 commit 64a7483
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/Libraries.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -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})
Expand Down

0 comments on commit 64a7483

Please sign in to comment.