summaryrefslogtreecommitdiffstats
path: root/0003-redis-2.8.11-use-system-jemalloc.patch
diff options
context:
space:
mode:
Diffstat (limited to '0003-redis-2.8.11-use-system-jemalloc.patch')
-rw-r--r--0003-redis-2.8.11-use-system-jemalloc.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/0003-redis-2.8.11-use-system-jemalloc.patch b/0003-redis-2.8.11-use-system-jemalloc.patch
deleted file mode 100644
index 8c1d997..0000000
--- a/0003-redis-2.8.11-use-system-jemalloc.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- a/src/Makefile 2013-04-30 15:15:56.000000000 +0200
-+++ b/src/Makefile 2013-06-19 12:58:12.345612310 +0200
-@@ -93,9 +93,8 @@ ifeq ($(MALLOC),tcmalloc_minimal)
- 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)