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

configure: Use jemalloc by default if available.

This commit is contained in:
Jason Volk 2019-07-03 19:03:24 -07:00
parent 9234fd34a6
commit 1abbd7a2dc

View file

@ -1696,7 +1696,10 @@ AC_ARG_ENABLE(jemalloc, AC_HELP_STRING([--enable-jemalloc], [Use jemalloc as thi
AC_MSG_RESULT([no])
])
AM_CONDITIONAL([JEMALLOC], [test "x$have_jemalloc" = "xyes" && test "x$use_jemalloc" = "xyes" ])
dnl jemalloc by default if available
dnl
AM_CONDITIONAL([JEMALLOC], [test "x$have_jemalloc" = "xyes"])
dnl AM_CONDITIONAL([JEMALLOC], [test "x$have_jemalloc" = "xyes" && test "x$use_jemalloc" = "xyes" ])
dnl
dnl