0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-12-26 15:33:54 +01:00

Revert using jemalloc by default

Revert "configure: Improve defaulting by 1abbd7a2dcf7c0118ea4e699b900014a4d15eb66"

This reverts commit 9129be58eb.

Revert "configure: Use jemalloc by default if available."

This reverts commit 1abbd7a2dc.
This commit is contained in:
Jason Volk 2019-07-04 00:43:23 -07:00
parent 612eeb3b7f
commit 9bff6a5b0d

View file

@ -1687,13 +1687,13 @@ AC_CHECK_LIB(jemalloc, malloc,
]) ])
AC_MSG_CHECKING(whether to enable use of jemalloc) AC_MSG_CHECKING(whether to enable use of jemalloc)
AC_ARG_ENABLE(jemalloc, AC_HELP_STRING([--disable-jemalloc], [Use jemalloc as third-party dynamic memory manager.]), AC_ARG_ENABLE(jemalloc, AC_HELP_STRING([--enable-jemalloc], [Use jemalloc as third-party dynamic memory manager.]),
[ [
use_jemalloc="no"
AC_MSG_RESULT([no])
], [
use_jemalloc="yes" use_jemalloc="yes"
AC_MSG_RESULT([yes]) AC_MSG_RESULT([yes])
], [
use_jemalloc="no"
AC_MSG_RESULT([no])
]) ])
AM_CONDITIONAL([JEMALLOC], [test "x$have_jemalloc" = "xyes" && test "x$use_jemalloc" = "xyes" ]) AM_CONDITIONAL([JEMALLOC], [test "x$have_jemalloc" = "xyes" && test "x$use_jemalloc" = "xyes" ])