aboutsummaryrefslogtreecommitdiff
path: root/libs/redis/patches
diff options
context:
space:
mode:
authorRosen Penev <rosenp@gmail.com>2021-01-17 14:15:31 -0800
committerRosen Penev <rosenp@gmail.com>2021-01-17 15:07:38 -0800
commitfb793f6215a16f27a39d3f94d45bec061e371d49 (patch)
tree8c4c31ec5a1f7d40ea060e7c59b424c146863d13 /libs/redis/patches
parent066f2049ba4f9fed85d6b214c199e3261002ff90 (diff)
redis: update to 6.0.10
Remove uClibc-ng patch as it's not in the tree anymore. Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'libs/redis/patches')
-rw-r--r--libs/redis/patches/030-fix-uclibc-compilation.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/libs/redis/patches/030-fix-uclibc-compilation.patch b/libs/redis/patches/030-fix-uclibc-compilation.patch
deleted file mode 100644
index cb154910f..000000000
--- a/libs/redis/patches/030-fix-uclibc-compilation.patch
+++ /dev/null
@@ -1,25 +0,0 @@
---- a/src/config.h
-+++ b/src/config.h
-@@ -30,6 +30,10 @@
- #ifndef __CONFIG_H
- #define __CONFIG_H
-
-+#if defined(__unix) || defined(__linux__)
-+#include <features.h>
-+#endif
-+
- #ifdef __APPLE__
- #include <AvailabilityMacros.h>
- #endif
-@@ -63,9 +67,9 @@
- #endif
-
- /* Test for backtrace() */
--#if defined(__APPLE__) || (defined(__linux__) && defined(__GLIBC__)) || \
-+#if (defined(__APPLE__) || (defined(__linux__) && defined(__GLIBC__)) || \
- defined(__FreeBSD__) || ((defined(__OpenBSD__) || defined(__NetBSD__)) && defined(USE_BACKTRACE))\
-- || defined(__DragonFly__)
-+ || defined(__DragonFly__)) && !defined(__UCLIBC__)
- #define HAVE_BACKTRACE 1
- #endif
-