summarylogtreecommitdiffstats
path: root/redis-2.8.11-use-system-jemalloc.patch
diff options
context:
space:
mode:
Diffstat (limited to 'redis-2.8.11-use-system-jemalloc.patch')
-rw-r--r--redis-2.8.11-use-system-jemalloc.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/redis-2.8.11-use-system-jemalloc.patch b/redis-2.8.11-use-system-jemalloc.patch
deleted file mode 100644
index 5da3d6816fe3..000000000000
--- a/redis-2.8.11-use-system-jemalloc.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Index: redis-2.8.11/src/Makefile
-===================================================================
---- redis-2.8.11.orig/src/Makefile
-+++ redis-2.8.11/src/Makefile
-@@ -84,8 +84,8 @@ endif
-
- ifeq ($(MALLOC),jemalloc)
- DEPENDENCY_TARGETS+= jemalloc
-- FINAL_CFLAGS+= -DUSE_JEMALLOC -I../deps/jemalloc/include
-- FINAL_LIBS+= ../deps/jemalloc/lib/libjemalloc.a -ldl
-+ FINAL_CFLAGS+= -DUSE_JEMALLOC -DJEMALLOC_NO_DEMANGLE -I/usr/include/jemalloc
-+ FINAL_LIBS+= -ljemalloc -ldl
- endif
-
- REDIS_CC=$(QUIET_CC)$(CC) $(FINAL_CFLAGS)