redis: fix compilation for uClibc
authorJan Pavlinec <redacted>
Wed, 14 Aug 2019 11:48:46 +0000 (13:48 +0200)
committerJan Pavlinec <redacted>
Wed, 14 Aug 2019 11:49:25 +0000 (13:49 +0200)
Signed-off-by: Jan Pavlinec <redacted>
libs/redis/Makefile
libs/redis/patches/030-fix-uclibc-compilation.patch [new file with mode: 0644]

index 40cec50a547ea13dc4585c705afe729f44f63538..399e5d55f469f6313caf1d71fb5c13e30f510c3d 100644 (file)
@@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk
 
 PKG_NAME:=redis
 PKG_VERSION:=5.0.5
-PKG_RELEASE:=1
+PKG_RELEASE:=2
 
 PKG_SOURCE_URL:=http://download.redis.io/releases/
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
diff --git a/libs/redis/patches/030-fix-uclibc-compilation.patch b/libs/redis/patches/030-fix-uclibc-compilation.patch
new file mode 100644 (file)
index 0000000..0fc39b0
--- /dev/null
@@ -0,0 +1,25 @@
+--- 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
+@@ -62,9 +66,9 @@
+ #endif
+
+ /* Test for backtrace() */
+-#if defined(__APPLE__) || (defined(__linux__) && defined(__GLIBC__)) || \
++#if (defined(__APPLE__) || (defined(__linux__) && defined(__GLIBC__)) || \
+     defined(__FreeBSD__) || (defined(__OpenBSD__) && defined(USE_BACKTRACE))\
+- || defined(__DragonFly__)
++ || defined(__DragonFly__)) && !defined(__UCLIBC__)
+ #define HAVE_BACKTRACE 1
+ #endif
+
git clone https://git.99rst.org/PROJECT