diff options
author | Jakob Unterwurzacher | 2018-07-04 09:04:00 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2018-07-04 09:04:00 +0200 |
commit | 53f7e1a0f02c44d19b8cda178daebe0aa466f352 (patch) | |
tree | 61d1344325da2b16c40f74db579d3ea47a47d5b8 /internal/syscallcompat/sys_darwin.go | |
parent | f6a3e2c7d1ab41028ea749017e64cb980c52096c (diff) |
macos: fix O_DIRECT build failure
O_DIRECT has no direct equivalent on MacOS
(check out https://github.com/libuv/libuv/issues/1600 for details).
Just define it to zero there.
Diffstat (limited to 'internal/syscallcompat/sys_darwin.go')
-rw-r--r-- | internal/syscallcompat/sys_darwin.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/internal/syscallcompat/sys_darwin.go b/internal/syscallcompat/sys_darwin.go index 7f2c541..74681db 100644 --- a/internal/syscallcompat/sys_darwin.go +++ b/internal/syscallcompat/sys_darwin.go @@ -9,6 +9,10 @@ import ( "github.com/hanwen/go-fuse/fuse" ) +// O_DIRECT means oncached I/O on Linux. No direct equivalent on MacOS and defined +// to zero there. +const O_DIRECT = 0 + // Sorry, fallocate is not available on OSX at all and // fcntl F_PREALLOCATE is not accessible from Go. // See https://github.com/rfjakob/gocryptfs/issues/18 if you want to help. |