From c3afd521ae38d9bd9aab4189d90d342a2b8eb8b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Chigot?= Date: Wed, 1 Apr 2020 10:18:11 +0200 Subject: [PATCH] Add AIX support --- file_other.go | 2 +- internal/vfs/osfs/mmap_other.go | 2 +- internal/vfs/osfs/sync_other.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/file_other.go b/file_other.go index 8d304b2..09df2fe 100644 --- a/file_other.go +++ b/file_other.go @@ -15,7 +15,7 @@ // specific language governing permissions and limitations // under the License. -// +build darwin dragonfly freebsd linux netbsd openbsd solaris +// +build !windows package txfile diff --git a/internal/vfs/osfs/mmap_other.go b/internal/vfs/osfs/mmap_other.go index 3bf5414..52fb67e 100644 --- a/internal/vfs/osfs/mmap_other.go +++ b/internal/vfs/osfs/mmap_other.go @@ -15,7 +15,7 @@ // specific language governing permissions and limitations // under the License. -// +build darwin dragonfly freebsd linux netbsd openbsd solaris +// +build !windows package osfs diff --git a/internal/vfs/osfs/sync_other.go b/internal/vfs/osfs/sync_other.go index eebd8ec..f558394 100644 --- a/internal/vfs/osfs/sync_other.go +++ b/internal/vfs/osfs/sync_other.go @@ -15,7 +15,7 @@ // specific language governing permissions and limitations // under the License. -// +build dragonfly freebsd netbsd openbsd solaris +// +build !darwin,!linux,!windows package osfs