Gentoo Archives: gentoo-commits

From: "Dirkjan Ochtman (djc)" <djc@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/redis/files: redis-2.4.4-tcmalloc.patch
Date: Wed, 30 Nov 2011 12:09:46
Message-Id: 20111130120936.59B652001D@flycatcher.gentoo.org
1 djc 11/11/30 12:09:36
2
3 Added: redis-2.4.4-tcmalloc.patch
4 Log:
5 Version bump to 2.4.4 (bug 378085, thanks jbergstroem).
6
7 (Portage version: 2.1.10.39/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 dev-db/redis/files/redis-2.4.4-tcmalloc.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/redis/files/redis-2.4.4-tcmalloc.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/redis/files/redis-2.4.4-tcmalloc.patch?rev=1.1&content-type=text/plain
14
15 Index: redis-2.4.4-tcmalloc.patch
16 ===================================================================
17 https://github.com/antirez/redis/pull/218
18
19 diff --git a/src/Makefile b/src/Makefile
20 index 72edcad..3e43990 100644
21 --- a/src/Makefile
22 +++ b/src/Makefile
23 @@ -35,12 +35,14 @@ else
24 endif
25
26 ifeq ($(USE_TCMALLOC),yes)
27 + USE_JEMALLOC=no
28 ALLOC_DEP=
29 ALLOC_LINK=-ltcmalloc
30 ALLOC_FLAGS=-DUSE_TCMALLOC
31 endif
32
33 ifeq ($(USE_TCMALLOC_MINIMAL),yes)
34 + USE_JEMALLOC=no
35 ALLOC_DEP=
36 ALLOC_LINK=-ltcmalloc_minimal
37 ALLOC_FLAGS=-DUSE_TCMALLOC