summaryrefslogtreecommitdiffstats
path: root/0003-redis-3.2.5-use-system-jemalloc.patch
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2017-09-26 09:01:18 +0200
committerRemi Collet <remi@remirepo.net>2017-09-26 09:01:18 +0200
commit206cbe332f8c815ecac23ac2a3224cbd3f819019 (patch)
tree719fab08ed4241179ba12c63821e2a28c9c06dee /0003-redis-3.2.5-use-system-jemalloc.patch
parentb61a96f89e39558cff607d3327c546c6809828fc (diff)
simplify build, synced from Fedora
Diffstat (limited to '0003-redis-3.2.5-use-system-jemalloc.patch')
-rw-r--r--0003-redis-3.2.5-use-system-jemalloc.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/0003-redis-3.2.5-use-system-jemalloc.patch b/0003-redis-3.2.5-use-system-jemalloc.patch
deleted file mode 100644
index f8d254c..0000000
--- a/0003-redis-3.2.5-use-system-jemalloc.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff -up src/Makefile.jem src/Makefile
---- src/Makefile.jem 2016-10-27 11:00:29.486075147 +0200
-+++ src/Makefile 2016-10-27 11:02:33.554729427 +0200
-@@ -103,9 +103,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
-+ FINAL_CFLAGS+= -DUSE_JEMALLOC -DJEMALLOC_NO_DEMANGLE -I/usr/include/jemalloc
-+ FINAL_LIBS+= -ljemalloc -ldl
- endif
-
- REDIS_CC=$(QUIET_CC)$(CC) $(FINAL_CFLAGS)