1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
diff --git a/src/ripple/basics/StringUtilities.h b/src/ripple/basics/StringUtilities.h
index f4cc83f..d2aa4bd 100644
--- a/src/ripple/basics/StringUtilities.h
+++ b/src/ripple/basics/StringUtilities.h
@@ -26,6 +26,7 @@
#include <boost/format.hpp>
#include <sstream>
#include <string>
+#include <endian.h>
namespace ripple {
diff --git a/src/ripple/basics/base_uint.h b/src/ripple/basics/base_uint.h
index cfa6867..1ce4ec3 100644
--- a/src/ripple/basics/base_uint.h
+++ b/src/ripple/basics/base_uint.h
@@ -31,6 +31,7 @@
#include <ripple/basics/hardened_hash.h>
#include <ripple/beast/utility/Zero.h>
#include <boost/functional/hash.hpp>
+#include <endian.h>
#include <functional>
#include <type_traits>
diff --git a/src/rocksdb2/port/port_posix.cc b/src/rocksdb2/port/port_posix.cc
index c5ea439..b968571 100644
--- a/src/rocksdb2/port/port_posix.cc
+++ b/src/rocksdb2/port/port_posix.cc
@@ -29,7 +29,7 @@ static int PthreadCall(const char* label, int result) {
}
Mutex::Mutex(bool adaptive) {
-#ifdef OS_LINUX
+#ifdef ROCKSDB_PTHREAD_ADAPTIVE_MUTEX
if (!adaptive) {
PthreadCall("init mutex", pthread_mutex_init(&mu_, nullptr));
} else {
@@ -42,9 +42,9 @@ Mutex::Mutex(bool adaptive) {
PthreadCall("destroy mutex attr",
pthread_mutexattr_destroy(&mutex_attr));
}
-#else // ignore adaptive for non-linux platform
+#else
PthreadCall("init mutex", pthread_mutex_init(&mu_, nullptr));
-#endif // OS_LINUX
+#endif // ROCKSDB_PTHREAD_ADAPTIVE_MUTEX
}
Mutex::~Mutex() { PthreadCall("destroy mutex", pthread_mutex_destroy(&mu_)); }
diff --git a/src/rocksdb2/port/stack_trace.cc b/src/rocksdb2/port/stack_trace.cc
index 76866e6..542100c 100644
--- a/src/rocksdb2/port/stack_trace.cc
+++ b/src/rocksdb2/port/stack_trace.cc
@@ -8,7 +8,7 @@
namespace rocksdb {
namespace port {
-#if defined(ROCKSDB_LITE) || !(defined(OS_LINUX) || defined(OS_MACOSX))
+#if defined(ROCKSDB_LITE) || !(defined(__GLIBC__) || defined(OS_MACOSX))
// noop
diff --git a/src/rocksdb2/util/log_buffer.h b/src/rocksdb2/util/log_buffer.h
index 2a24bf8..ddaaa2c 100644
--- a/src/rocksdb2/util/log_buffer.h
+++ b/src/rocksdb2/util/log_buffer.h
@@ -9,6 +9,7 @@
#include "util/arena.h"
#include "util/autovector.h"
#include <ctime>
+#include <sys/time.h>
namespace rocksdb {
diff --git a/src/ripple/beast/core/SystemStats.cpp b/src/ripple/beast/core/SystemStats.cpp
index 74caa79..b238979 100644
--- a/src/ripple/beast/core/SystemStats.cpp
+++ b/src/ripple/beast/core/SystemStats.cpp
@@ -50,7 +50,7 @@ getStackBacktrace()
{
std::vector <std::string> result;
-#if BEAST_ANDROID || BEAST_MINGW || BEAST_BSD
+#if BEAST_ANDROID || BEAST_MINGW || BEAST_BSD || 1
assert(false); // sorry, not implemented yet!
#elif BEAST_WINDOWS
diff --git a/src/ripple/beast/core/core.unity.cpp b/src/ripple/beast/core/core.unity.cpp
index 83dd1df..b374634 100644
--- a/src/ripple/beast/core/core.unity.cpp
+++ b/src/ripple/beast/core/core.unity.cpp
@@ -113,7 +113,7 @@
#include <net/if.h>
#include <sys/ioctl.h>
- #if ! BEAST_ANDROID && ! BEAST_BSD
+ #if ! BEAST_ANDROID && ! BEAST_BSD && 0
#include <execinfo.h>
#endif
#endif
|