diff options
author | drh <drh@noemail.net> | 2019-02-20 19:20:16 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2019-02-20 19:20:16 +0000 |
commit | 6a1bfc9a6d5b2367a84d367290d3bf5dba708a16 (patch) | |
tree | d0278555e32e4cfe6f3b9207e3f0c046733f2e9b /src | |
parent | 7e85e9033ff34f8f75e5bb56152be39be39a62a5 (diff) | |
download | sqlite-6a1bfc9a6d5b2367a84d367290d3bf5dba708a16.tar.gz sqlite-6a1bfc9a6d5b2367a84d367290d3bf5dba708a16.zip |
Changes to the unix VFS that allegedly enable it to build of Fuchsia.
We have no way of testing this.
FossilOrigin-Name: be21a6416d47ff7db995006a0422b745044d9b8bb5bad3c53342aa6e2e524771
Diffstat (limited to 'src')
-rw-r--r-- | src/os_unix.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index f20763e5b..4e434334b 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -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 |