summaryrefslogtreecommitdiff
path: root/dev-db/redis/files/redis-2.4.3-shared.patch
diff options
context:
space:
mode:
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>2016-07-19 19:29:57 +0200
committerPatrice Clement <monsieurp@gentoo.org>2016-07-30 08:46:41 +0200
commit3e85c8c4859384b2e7860512dee265c8d18ec370 (patch)
tree7651bef4ad238b7146bfcac02f06ae99e39c6046 /dev-db/redis/files/redis-2.4.3-shared.patch
parent85215a443760d327556e220a6fa9ed04dad55ea9 (diff)
downloadgentoo-3e85c8c4859384b2e7860512dee265c8d18ec370.tar.gz
gentoo-3e85c8c4859384b2e7860512dee265c8d18ec370.tar.bz2
gentoo-3e85c8c4859384b2e7860512dee265c8d18ec370.zip
dev-db/*: remove unused patches.
Squash all commit messages into a single one. Closes: https://github.com/gentoo/gentoo/pull/1936 Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'dev-db/redis/files/redis-2.4.3-shared.patch')
-rw-r--r--dev-db/redis/files/redis-2.4.3-shared.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/dev-db/redis/files/redis-2.4.3-shared.patch b/dev-db/redis/files/redis-2.4.3-shared.patch
deleted file mode 100644
index 20cdebe41b47..000000000000
--- a/dev-db/redis/files/redis-2.4.3-shared.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-See https://github.com/antirez/redis/pull/137
-
---- src/Makefile 2011-10-17 10:46:00.000000000 +0200
-+++ src/Makefile.2 2011-10-17 13:47:53.000000000 +0200
-@@ -49,7 +49,16 @@
- ifeq ($(USE_JEMALLOC),yes)
- ALLOC_DEP=../deps/jemalloc/lib/libjemalloc.a
- ALLOC_LINK=$(ALLOC_DEP) -ldl
-- ALLOC_FLAGS=-DUSE_JEMALLOC -I../deps/jemalloc/include
-+ ALLOC_FLAGS=-DUSE_JEMALLOC
-+ ifdef JEMALLOC_SHARED
-+ ALLOC_DEP=
-+ ALLOC_LINK=-ljemalloc
-+ ALLOC_FLAGS=-DUSE_JEMALLOC -I/usr/include
-+ else
-+ ALLOC_DEP=../deps/jemalloc/lib/libjemalloc.a
-+ ALLOC_LINK=$(ALLOC_DEP) -ldl
-+ ALLOC_FLAGS=-DUSE_JEMALLOC -I../deps/jemalloc/include
-+ endif
- endif
-
- CCOPT= $(CFLAGS) $(ARCH) $(PROF)