aboutsummaryrefslogtreecommitdiffstats
path: root/testing/redis/redis-unbundle-jemalloc.patch
diff options
context:
space:
mode:
authorEivind Uggedal <eivind@uggedal.com>2014-05-26 08:08:50 +0000
committerEivind Uggedal <eivind@uggedal.com>2014-05-26 08:10:22 +0000
commitd260b8a120a6cc6d2e251741d65fd8605b4cb361 (patch)
tree66997afff411521e460b637b72a67ee533456b4b /testing/redis/redis-unbundle-jemalloc.patch
parent080f582e0a399eb1724b0f745f47d2de908888ce (diff)
downloadaports-d260b8a120a6cc6d2e251741d65fd8605b4cb361.tar.bz2
aports-d260b8a120a6cc6d2e251741d65fd8605b4cb361.tar.xz
testing/redis: use musl malloc
Fixes redis-cli segfault in linenoise by using libc malloc and not compiling with -std=c99 for strdup visibility.
Diffstat (limited to 'testing/redis/redis-unbundle-jemalloc.patch')
-rw-r--r--testing/redis/redis-unbundle-jemalloc.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/testing/redis/redis-unbundle-jemalloc.patch b/testing/redis/redis-unbundle-jemalloc.patch
deleted file mode 100644
index c2222cd0fa..0000000000
--- a/testing/redis/redis-unbundle-jemalloc.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- a/src/Makefile
-+++ b/src/Makefile
-@@ -83,9 +83,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)