0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-17 01:18:39 +02:00

configure: Fix --disable-jemalloc option negation.

This commit is contained in:
Jason Volk 2022-03-04 12:46:41 -08:00
parent 8e268023d1
commit 18df9bd2da

View file

@ -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"