shithub: dumb

Download patch

ref: 5c103f0aaf3e8446c4f7dad506c2cebfd289b71c
parent: 14fd28311496465a320386621132a8e719396786
author: dmitrykos <dmitrykos@neutroncode.com>
date: Sun Dec 17 16:15:15 EST 2017

Fix compilation with Android NDK by declaring dumb_off_t as off64_t. Android NDK does not support _FILE_OFFSET_BITS before API level 24 and declares off_t as 32-bit integer regardless _FILE_OFFSET_BITS.

--- a/include/dumb.h
+++ b/include/dumb.h
@@ -108,6 +108,12 @@
 #else
 typedef off64_t dumb_off_t;
 #endif
+#elif defined __ANDROID__
+/* Android NDK does not support _FILE_OFFSET_BITS before API level 24
+ * and off_t is is always 32-bit regardless of _FILE_OFFSET_BITS.
+ */
+#include <sys/types.h>
+typedef off64_t dumb_off_t;
 #elif _POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 500
 #include <sys/types.h>
 typedef off_t dumb_off_t;