Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
dms3
go-dms3
Commits
90c656dc
Commit
90c656dc
authored
Jul 22, 2019
by
Steven Allen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix netbsd build
parent
94bbc1ca
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
14 additions
and
11 deletions
+14
-11
fuse/ipns/ipns_test.go
fuse/ipns/ipns_test.go
+1
-1
fuse/ipns/ipns_unix.go
fuse/ipns/ipns_unix.go
+1
-1
fuse/ipns/link_unix.go
fuse/ipns/link_unix.go
+1
-1
fuse/mount/fuse.go
fuse/mount/fuse.go
+1
-1
fuse/node/mount_notsupp.go
fuse/node/mount_notsupp.go
+2
-2
fuse/node/mount_test.go
fuse/node/mount_test.go
+1
-1
fuse/node/mount_unix.go
fuse/node/mount_unix.go
+1
-1
fuse/readonly/ipfs_test.go
fuse/readonly/ipfs_test.go
+1
-1
fuse/readonly/mount_unix.go
fuse/readonly/mount_unix.go
+1
-1
fuse/readonly/readonly_unix.go
fuse/readonly/readonly_unix.go
+1
-1
mk/util.mk
mk/util.mk
+3
-0
No files found.
fuse/ipns/ipns_test.go
View file @
90c656dc
// +build !nofuse,!openbsd
// +build !nofuse,!openbsd
,!netbsd
package
ipns
...
...
fuse/ipns/ipns_unix.go
View file @
90c656dc
// +build !nofuse,!openbsd
// +build !nofuse,!openbsd
,!netbsd
// package fuse/ipns implements a fuse filesystem that interfaces
// with ipns, the naming system for ipfs.
...
...
fuse/ipns/link_unix.go
View file @
90c656dc
// +build !nofuse,!openbsd
// +build !nofuse,!openbsd
,!netbsd
package
ipns
...
...
fuse/mount/fuse.go
View file @
90c656dc
// +build !nofuse,!windows,!openbsd
// +build !nofuse,!windows,!openbsd
,!netbsd
package
mount
...
...
fuse/node/mount_
openbsd
.go
→
fuse/node/mount_
notsupp
.go
View file @
90c656dc
// +build !nofuse
// +build !nofuse
,openbsd !nofuse,netbsd
package
node
...
...
@@ -9,5 +9,5 @@ import (
)
func
Mount
(
node
*
core
.
IpfsNode
,
fsdir
,
nsdir
string
)
error
{
return
errors
.
New
(
"FUSE not supported on OpenBSD. See #5334 (https://git.io/fjMuC)."
)
return
errors
.
New
(
"FUSE not supported on OpenBSD
or NetBSD
. See #5334 (https://git.io/fjMuC)."
)
}
fuse/node/mount_test.go
View file @
90c656dc
// +build !openbsd,!nofuse
// +build !openbsd,!nofuse
,!netbsd
package
node
...
...
fuse/node/mount_unix.go
View file @
90c656dc
// +build !windows,!openbsd,!nofuse
// +build !windows,!openbsd,!
netbsd,!
nofuse
package
node
...
...
fuse/readonly/ipfs_test.go
View file @
90c656dc
// +build !nofuse,!openbsd
// +build !nofuse,!openbsd
,!netbsd
package
readonly
...
...
fuse/readonly/mount_unix.go
View file @
90c656dc
// +build linux darwin freebsd
netbsd
// +build linux darwin freebsd
// +build !nofuse
package
readonly
...
...
fuse/readonly/readonly_unix.go
View file @
90c656dc
// +build linux darwin freebsd
netbsd
// +build linux darwin freebsd
// +build !nofuse
package
readonly
...
...
mk/util.mk
View file @
90c656dc
...
...
@@ -26,6 +26,9 @@ SUPPORTED_PLATFORMS += freebsd-amd64
SUPPORTED_PLATFORMS
+=
openbsd-386
SUPPORTED_PLATFORMS
+=
openbsd-amd64
SUPPORTED_PLATFORMS
+=
netbsd-386
SUPPORTED_PLATFORMS
+=
netbsd-amd64
space
:=
space
+=
comma
:=
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment