aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/civetweb/fix-fseeko.patch
blob: 3e2f58500b5f7d8980c602fccf3666ab3cdca63d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
diff --git a/src/civetweb.c b/src/civetweb.c
index 9e321ed..0f11407 100644
--- a/src/civetweb.c
+++ b/src/civetweb.c
@@ -892,6 +892,12 @@ typedef unsigned short int in_port_t;
 #if defined(USE_X_DOM_SOCKET)
 #include <sys/un.h>
 #endif
+
+#if defined(__ANDROID_API__) && __ANDROID_API__ < 24
+    // Cf. https://android.googlesource.com/platform/bionic/+/master/docs/32-bit-abi.md#32_bit-and
+    #define fseeko fseek
+#endif
+
 #endif
 
 #define vsnprintf_impl vsnprintf