diff options
author | Loïc Blot <nerzhul@users.noreply.github.com> | 2017-05-13 13:32:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-13 13:32:59 +0200 |
commit | 0d4d35ab930ecb5b313f74ae430edddd0ee79d4d (patch) | |
tree | eae78f0de27694706fd9cddc7e6aa04464855c26 /build/android/patches/sqlite3-readonly-fix.patch | |
parent | 6673aff685047d4a0e6254f3b62313425e8f5b3c (diff) | |
download | minetest-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/sqlite3-readonly-fix.patch')
-rw-r--r-- | build/android/patches/sqlite3-readonly-fix.patch | 17 |
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 - }; |