summaryrefslogtreecommitdiffstats
path: root/redis/build/patches
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--redis/build/patches/redis-5.0-use-system-jemalloc.patch15
1 files changed, 15 insertions, 0 deletions
diff --git a/redis/build/patches/redis-5.0-use-system-jemalloc.patch b/redis/build/patches/redis-5.0-use-system-jemalloc.patch
new file mode 100644
index 00000000..93ca8286
--- /dev/null
+++ b/redis/build/patches/redis-5.0-use-system-jemalloc.patch
@@ -0,0 +1,15 @@
+diff --git a/src/Makefile b/src/Makefile
+index 912cbc19..6840ce08 100644
+--- a/src/Makefile
++++ b/src/Makefile
+@@ -125,8 +125,8 @@ endif
+
+ ifeq ($(MALLOC),jemalloc)
+ DEPENDENCY_TARGETS+= jemalloc
+- FINAL_CFLAGS+= -DUSE_JEMALLOC -I../deps/jemalloc/include
+- FINAL_LIBS := ../deps/jemalloc/lib/libjemalloc.a $(FINAL_LIBS)
++ FINAL_CFLAGS+= -DUSE_JEMALLOC -DJEMALLOC_NO_DEMANGLE -I/usr/include/jemalloc
++ FINAL_LIBS := -ljemalloc $(FINAL_LIBS)
+ endif
+
+ REDIS_CC=$(QUIET_CC)$(CC) $(FINAL_CFLAGS)