aboutsummaryrefslogtreecommitdiffstats
path: root/main/lmdb/cacheflush.patch
diff options
context:
space:
mode:
authorinfo@mobile-stream.com <info@mobile-stream.com>2018-11-26 22:05:43 +0000
committerLeonardo Arena <rnalrd@alpinelinux.org>2018-11-29 10:35:45 +0000
commit8ef8b98cae93898651ed5b651475bc06a79f6359 (patch)
tree11a26e6b2f7db94400aad6960bb91722010fac35 /main/lmdb/cacheflush.patch
parent2df12aa49260bdbb0511344966b9b090ed376b36 (diff)
downloadaports-8ef8b98cae93898651ed5b651475bc06a79f6359.tar.bz2
aports-8ef8b98cae93898651ed5b651475bc06a79f6359.tar.xz
main/lmdb: fix build on mips* (inconsistent cacheflush() prototype)
Diffstat (limited to 'main/lmdb/cacheflush.patch')
-rw-r--r--main/lmdb/cacheflush.patch12
1 files changed, 12 insertions, 0 deletions
diff --git a/main/lmdb/cacheflush.patch b/main/lmdb/cacheflush.patch
new file mode 100644
index 0000000000..281a03124c
--- /dev/null
+++ b/main/lmdb/cacheflush.patch
@@ -0,0 +1,12 @@
+--- a/mdb.c
++++ b/mdb.c
+@@ -77,8 +77,7 @@
+
+ #if defined(__mips) && defined(__linux)
+ /* MIPS has cache coherency issues, requires explicit cache control */
+-#include <asm/cachectl.h>
+-extern int cacheflush(char *addr, int nbytes, int cache);
++#include <sys/cachectl.h>
+ #define CACHEFLUSH(addr, bytes, cache) cacheflush(addr, bytes, cache)
+ #else
+ #define CACHEFLUSH(addr, bytes, cache)