mirror of
https://github.com/novatiq/packages.git
synced 2026-04-30 15:38:40 +01:00
redis: fix compilation for uClibc
Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user