From 8673c29caf28d5241d7198bd3b6846abaf45a079 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 3d34685ba..231761f5e 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