blob: 6745f3d0e0a2994c310ae135ce07fd325ff83382 [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001From f8861d2129b9e18bba137705bfa38c6bd9be1790 Mon Sep 17 00:00:00 2001
2From: Venture Research <tech@ventureresearch.com>
3Date: Wed, 6 Feb 2013 20:51:02 -0600
4Subject: [PATCH] hack to force use of libc malloc
5
6Hack to force libc usage as it seems the option to pass it in has been
7removed in favor of magic.
8
9Note that this of course doesn't allow tcmalloc and jemalloc, however
10jemalloc wasn't building correctly.
11
12Signed-off-by: Venture Research <tech@ventureresearch.com>
13
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080014Update to work with 4.0.8
15Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
Patrick Williamsb48b7b42016-08-17 15:04:38 -050016
17---
18 src/Makefile | 2 +-
19 1 file changed, 1 insertion(+), 1 deletion(-)
20
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080021diff --git a/src/Makefile b/src/Makefile
22index 86e0b3fe..a810180b 100644
Patrick Williamsb48b7b42016-08-17 15:04:38 -050023--- a/src/Makefile
24+++ b/src/Makefile
25@@ -13,7 +13,8 @@
26 # Just use 'make dep', but this is only needed by developers.
27
28 release_hdr := $(shell sh -c './mkreleasehdr.sh')
29-uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
30+# use fake uname option to force use of generic libc
31+uname_S := "USE_LIBC_MALLOC"
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080032 uname_M := $(shell sh -c 'uname -m 2>/dev/null || echo not')
Patrick Williamsb48b7b42016-08-17 15:04:38 -050033 OPTIMIZATION?=-O2
34 DEPENDENCY_TARGETS=hiredis linenoise lua