summaryrefslogtreecommitdiff
path: root/dev-db/redis/files/redis-2.8.3-shared.patch
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2018-08-14 20:09:02 -0700
committerRobin H. Johnson <robbat2@gentoo.org>2018-08-14 20:09:45 -0700
commit248dbab6baed691d61011be1a4115b25e2f05e4f (patch)
treefc1440758d14b2823f0b575474fa8cfae978fd2f /dev-db/redis/files/redis-2.8.3-shared.patch
parent35b195eba46097fa186c8db11eb0ff7f5cc832ca (diff)
downloadgentoo-248dbab6baed691d61011be1a4115b25e2f05e4f.tar.gz
gentoo-248dbab6baed691d61011be1a4115b25e2f05e4f.tar.bz2
gentoo-248dbab6baed691d61011be1a4115b25e2f05e4f.zip
dev-db/redis: cleanup old ebuilds
Bug: https://bugs.gentoo.org/631002 Signed-off-by: Robin H. Johnson <robbat2@gentoo.org> Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'dev-db/redis/files/redis-2.8.3-shared.patch')
-rw-r--r--dev-db/redis/files/redis-2.8.3-shared.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/dev-db/redis/files/redis-2.8.3-shared.patch b/dev-db/redis/files/redis-2.8.3-shared.patch
deleted file mode 100644
index d32484f0cd18..000000000000
--- a/dev-db/redis/files/redis-2.8.3-shared.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-commit 388a76f24c96767c831ee7682234fd9f2bc5b9ac
-Author: Johan Bergström <bugs@bergstroem.nu>
-Date: Mon Nov 25 09:17:14 2013 +1100
-
- Use shared jemalloc
-
-diff --git src/Makefile src/Makefile
-index c37549d..77e6255 100644
---- src/Makefile
-+++ 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)
-@@ -79,9 +74,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
-+ FINAL_LIBS+= -ljemalloc -ldl
- endif
-
- REDIS_CC=$(QUIET_CC)$(CC) $(FINAL_CFLAGS)