summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDirkjan Ochtman <djc@gentoo.org>2011-11-30 12:09:36 +0000
committerDirkjan Ochtman <djc@gentoo.org>2011-11-30 12:09:36 +0000
commitcaa8b361849db0848e50841b3251ba12862f2d76 (patch)
treee7600f57e63efb0a0a6ab1e3a7bc33d2317d17eb /dev-db/redis/files
parentAdd Prefix keywords for bug #390017 (diff)
downloadgentoo-2-caa8b361849db0848e50841b3251ba12862f2d76.tar.gz
gentoo-2-caa8b361849db0848e50841b3251ba12862f2d76.tar.bz2
gentoo-2-caa8b361849db0848e50841b3251ba12862f2d76.zip
Version bump to 2.4.4 (bug 378085, thanks jbergstroem).
(Portage version: 2.1.10.39/cvs/Linux x86_64)
Diffstat (limited to 'dev-db/redis/files')
-rw-r--r--dev-db/redis/files/redis-2.4.4-tcmalloc.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/dev-db/redis/files/redis-2.4.4-tcmalloc.patch b/dev-db/redis/files/redis-2.4.4-tcmalloc.patch
new file mode 100644
index 000000000000..964ce71d5f78
--- /dev/null
+++ b/dev-db/redis/files/redis-2.4.4-tcmalloc.patch
@@ -0,0 +1,21 @@
+https://github.com/antirez/redis/pull/218
+
+diff --git a/src/Makefile b/src/Makefile
+index 72edcad..3e43990 100644
+--- a/src/Makefile
++++ b/src/Makefile
+@@ -35,12 +35,14 @@ else
+ endif
+
+ ifeq ($(USE_TCMALLOC),yes)
++ USE_JEMALLOC=no
+ ALLOC_DEP=
+ ALLOC_LINK=-ltcmalloc
+ ALLOC_FLAGS=-DUSE_TCMALLOC
+ endif
+
+ ifeq ($(USE_TCMALLOC_MINIMAL),yes)
++ USE_JEMALLOC=no
+ ALLOC_DEP=
+ ALLOC_LINK=-ltcmalloc_minimal
+ ALLOC_FLAGS=-DUSE_TCMALLOC \ No newline at end of file