From 18df9bd2da29056612facdb03d776c1a7285285a Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Fri, 4 Mar 2022 12:46:41 -0800 Subject: [PATCH] configure: Fix --disable-jemalloc option negation. --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 48417fb1d..0c4be0812 100644 --- a/configure.ac +++ b/configure.ac @@ -2146,11 +2146,11 @@ PKG_CHECK_MODULES(jemalloc, [jemalloc], ]) ]) -AC_MSG_CHECKING(whether to enable use of any found jemalloc) +AC_MSG_CHECKING(whether to disable use of any found jemalloc) AC_ARG_ENABLE(jemalloc, RB_HELP_STRING([--disable-jemalloc], [Disable jemalloc as third-party dynamic memory manager]), [ AC_MSG_RESULT([$enableval]) - enable_jemalloc=$enableval + enable_jemalloc=!$enableval ], [ AC_MSG_RESULT([no]) enable_jemalloc="yes"