Cli binary can now be build on OpenBSD

Signed-off-by: Frank Groeneveld <frank@frankgroeneveld.nl>
This commit is contained in:
Frank Groeneveld 2016-03-18 14:53:19 +01:00
parent 9527d789e7
commit 9b109daafc
3 changed files with 85 additions and 1 deletions

15
system/stat_openbsd.go Normal file
View file

@ -0,0 +1,15 @@
package system
import (
"syscall"
)
// fromStatT creates a system.StatT type from a syscall.Stat_t type
func fromStatT(s *syscall.Stat_t) (*StatT, error) {
return &StatT{size: s.Size,
mode: uint32(s.Mode),
uid: s.Uid,
gid: s.Gid,
rdev: uint64(s.Rdev),
mtim: s.Mtim}, nil
}

View file

@ -1,4 +1,4 @@
// +build !linux,!windows,!freebsd,!solaris
// +build !linux,!windows,!freebsd,!solaris,!openbsd
package system