1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-12 13:01:09 +03:00

Changes to the unix VFS that allegedly enable it to build of Fuchsia.

We have no way of testing this.

FossilOrigin-Name: be21a6416d47ff7db995006a0422b745044d9b8bb5bad3c53342aa6e2e524771
This commit is contained in:
drh
2019-02-20 19:20:16 +00:00
parent 7e85e9033f
commit 6a1bfc9a6d
3 changed files with 10 additions and 7 deletions

View File

@@ -7822,6 +7822,9 @@ int sqlite3_os_init(void){
UNIXVFS("unix", autolockIoFinder ),
#elif OS_VXWORKS
UNIXVFS("unix", vxworksIoFinder ),
#elif __Fuchsia__
/* We are told that Fuchsia only supports dot-file locking */
UNIXVFS("unix", dotlockIoFinder ),
#else
UNIXVFS("unix", posixIoFinder ),
#endif