summaryrefslogtreecommitdiff
path: root/build/android/patches
diff options
context:
space:
mode:
authorLoïc Blot <nerzhul@users.noreply.github.com>2017-05-13 13:32:59 +0200
committerGitHub <noreply@github.com>2017-05-13 13:32:59 +0200
commit0d4d35ab930ecb5b313f74ae430edddd0ee79d4d (patch)
treeeae78f0de27694706fd9cddc7e6aa04464855c26 /build/android/patches
parent6673aff685047d4a0e6254f3b62313425e8f5b3c (diff)
downloadminetest-0d4d35ab930ecb5b313f74ae430edddd0ee79d4d.tar.gz
minetest-0d4d35ab930ecb5b313f74ae430edddd0ee79d4d.tar.bz2
minetest-0d4d35ab930ecb5b313f74ae430edddd0ee79d4d.zip
Android dependencies updates (#5755)
* irrlicht ogles 5122 -> 5145 * openssl 1.0.2j -> 1.0.2k * curl 7.52 -> 7.54 * sqlite 3.15.2 -> 3.18.0
Diffstat (limited to 'build/android/patches')
-rw-r--r--build/android/patches/sqlite3-readonly-fix.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/build/android/patches/sqlite3-readonly-fix.patch b/build/android/patches/sqlite3-readonly-fix.patch
deleted file mode 100644
index be19055ee..000000000
--- a/build/android/patches/sqlite3-readonly-fix.patch
+++ /dev/null
@@ -1,17 +0,0 @@
---- sqlite3.c 2016-11-29 02:29:24.000000000 +0000
-+++ sqlite3.c 2016-12-08 22:54:54.206465377 +0000
-@@ -30445,7 +30445,14 @@
- #if OS_VXWORKS
- struct vxworksFileId *pId; /* Unique file ID for vxworks. */
- #else
-- ino_t ino; /* Inode number */
-+ #ifdef ANDROID
-+ // Bionic's struct stat has a 64 bit st_ino on both 32 and
-+ // 64 bit architectures. ino_t remains 32 bits wide on 32 bit
-+ // architectures and can lead to inode truncation.
-+ unsigned long long ino; /* Inode number */
-+ #else
-+ ino_t ino; /* Inode number */
-+ #endif
- #endif
- };