From cd08470cb4bd94e5c0ae209022713515383ef661 Mon Sep 17 00:00:00 2001 From: Eric Hameleers Date: Tue, 25 Jan 2022 12:46:16 +0000 Subject: Initial revision --- redis/build/patches/redis-5.0-use-system-jemalloc.patch | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 redis/build/patches/redis-5.0-use-system-jemalloc.patch (limited to 'redis') diff --git a/redis/build/patches/redis-5.0-use-system-jemalloc.patch b/redis/build/patches/redis-5.0-use-system-jemalloc.patch new file mode 100644 index 00000000..93ca8286 --- /dev/null +++ b/redis/build/patches/redis-5.0-use-system-jemalloc.patch @@ -0,0 +1,15 @@ +diff --git a/src/Makefile b/src/Makefile +index 912cbc19..6840ce08 100644 +--- a/src/Makefile ++++ b/src/Makefile +@@ -125,8 +125,8 @@ endif + + ifeq ($(MALLOC),jemalloc) + DEPENDENCY_TARGETS+= jemalloc +- FINAL_CFLAGS+= -DUSE_JEMALLOC -I../deps/jemalloc/include +- FINAL_LIBS := ../deps/jemalloc/lib/libjemalloc.a $(FINAL_LIBS) ++ FINAL_CFLAGS+= -DUSE_JEMALLOC -DJEMALLOC_NO_DEMANGLE -I/usr/include/jemalloc ++ FINAL_LIBS := -ljemalloc $(FINAL_LIBS) + endif + + REDIS_CC=$(QUIET_CC)$(CC) $(FINAL_CFLAGS) -- cgit v1.2.3-79-gdb01