From d01d4ddcbb62a19e841e4505930acd1986547dbf Mon Sep 17 00:00:00 2001 From: Matt Stancliff Date: Thu, 13 Nov 2014 15:12:08 -0500 Subject: [PATCH] Allow forcing non-jemalloc build --- src/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Makefile b/src/Makefile index 3d34685b..231761f5 100644 --- a/src/Makefile +++ b/src/Makefile @@ -46,6 +46,10 @@ ifeq ($(USE_JEMALLOC),yes) MALLOC=jemalloc endif +ifeq ($(USE_JEMALLOC),no) + MALLOC=libc +endif + # Override default settings if possible -include .make-settings