From 1778bc5fa8959aa75ed16dcdf77adc225fd583bf Mon Sep 17 00:00:00 2001 From: Craig Leres Date: Fri, 3 Dec 2021 14:46:09 -0800 Subject: [PATCH] FreeBSD: don't look for jemalloc as a package, it's in the base system --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 494cb2efa2..4bc747f904 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -294,7 +294,7 @@ if ( NOT BIFCL_EXE_PATH ) add_subdirectory(auxil/bifcl) endif () -if (ENABLE_JEMALLOC) +if (ENABLE_JEMALLOC AND NOT ${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD") find_package(JeMalloc) if (NOT JEMALLOC_FOUND)