summaryrefslogtreecommitdiff
path: root/dev-db/redis/files/redis-3.2.5-shared.patch
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2019-02-12 17:34:34 +0100
committerAaron Bauman <bman@gentoo.org>2019-02-27 00:35:24 -0500
commit1188e502eef26f970153e9c2344f5825f50df2f5 (patch)
treedc1e5b978e031e7efded55b79793d166c8e78a41 /dev-db/redis/files/redis-3.2.5-shared.patch
parent5dab4d15221db6d3f5d8bacb4489883be6022285 (diff)
downloadgentoo-1188e502eef26f970153e9c2344f5825f50df2f5.tar.gz
gentoo-1188e502eef26f970153e9c2344f5825f50df2f5.tar.bz2
gentoo-1188e502eef26f970153e9c2344f5825f50df2f5.zip
dev-db/redis: remove unused patches
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/11033 Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'dev-db/redis/files/redis-3.2.5-shared.patch')
-rw-r--r--dev-db/redis/files/redis-3.2.5-shared.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/dev-db/redis/files/redis-3.2.5-shared.patch b/dev-db/redis/files/redis-3.2.5-shared.patch
deleted file mode 100644
index 7ebff12b5196..000000000000
--- a/dev-db/redis/files/redis-3.2.5-shared.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-diff --git a/src/Makefile b/src/Makefile
-index fdbe36a..df224ae 100644
---- a/src/Makefile
-+++ b/src/Makefile
-@@ -26,12 +26,7 @@ PREFIX?=/usr/local
- INSTALL_BIN=$(PREFIX)/bin
- INSTALL=install
-
--# Default allocator
--ifeq ($(uname_S),Linux)
-- MALLOC=jemalloc
--else
-- MALLOC=libc
--endif
-+MALLOC?=jemalloc
-
- # Backwards compatibility for selecting an allocator
- ifeq ($(USE_TCMALLOC),yes)
-@@ -103,9 +98,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
-+ FINAL_LIBS+= -ljemalloc -ldl
- endif
-
- REDIS_CC=$(QUIET_CC)$(CC) $(FINAL_CFLAGS)