0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-09 05:29:00 +02:00

configure: Fix ac result for jemalloc related.

This commit is contained in:
Jason Volk 2022-06-19 20:51:42 -07:00
parent 9ffbd8be37
commit 1b380f39a8

View file

@ -2233,8 +2233,12 @@ PKG_CHECK_MODULES(jemalloc, [jemalloc],
AC_MSG_CHECKING(whether to disable 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_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 if test "$enable_jemalloc" = "no"; then
AC_MSG_RESULT([yes])
else
AC_MSG_RESULT([no])
fi
], [ ], [
AC_MSG_RESULT([no]) AC_MSG_RESULT([no])
enable_jemalloc="yes" enable_jemalloc="yes"