@cryptotaxi247 / kubo / commits / 56eb2b00d

remove nofuse build constraints

License: MIT Signed-off-by: Dominic Della Valle <ddvpublic@gmail.com>

Dominic Della Valle committed May 23, 2018 at 10:49 UTC 56eb2b00d5d24f45de2e12db8c4327fd550cc68a
4 files changed +6 -9
core/commands/mount_nofuse.go
+1 -2
@@ -1,5 +1,4 @@
1 -// +build linux darwin freebsd netbsd openbsd dragonfly
2 -// +build nofuse
1 +// +build !windows,nofuse
2
3 package commands
4
core/commands/mount_unix.go
+1 -2
@@ -1,5 +1,4 @@
1 -// +build linux darwin freebsd netbsd openbsd
2 -// +build !nofuse
1 +// +build !windows,!nofuse
2
3 package commands
4
fuse/node/mount_nofuse.go
+1 -2
@@ -1,5 +1,4 @@
1 -// +build linux darwin freebsd netbsd openbsd dragonfly
2 -// +build nofuse
1 +// +build !windows,nofuse
2
3 package node
4
fuse/node/mount_unix.go
+3 -3
@@ -1,5 +1,4 @@
1 -// +build linux darwin freebsd netbsd openbsd
2 -// +build !nofuse
1 +// +build !windows,!nofuse
2
3 package node
4
@@ -9,11 +8,12 @@ import (
8 "strings"
9 "sync"
10
11 + logging "gx/ipfs/QmRb5jh8z2E8hMGN2tkvs1yHynUanqnZ3UeKwgN1i9P1F8/go-log"
12 +
13 core "github.com/ipfs/go-ipfs/core"
14 ipns "github.com/ipfs/go-ipfs/fuse/ipns"
15 mount "github.com/ipfs/go-ipfs/fuse/mount"
16 rofs "github.com/ipfs/go-ipfs/fuse/readonly"
16 - logging "gx/ipfs/QmRb5jh8z2E8hMGN2tkvs1yHynUanqnZ3UeKwgN1i9P1F8/go-log"
17 )
18
19 var log = logging.Logger("node")