mirror of
https://github.com/containers/podman.git
synced 2025-12-08 06:39:05 +08:00
Fix build on OS X
We disabled the OS X and Windows cross-building tests. This, predictably, led us to regress a bit in our ability to build for both of these. This fixes the build on OS X and fixes one obvious Windows bug. Unfortunately, we're dragging in all of `pkg/spec` somewhere on Windows, and things are blowing up spectacularly because of it (plus a few uses of the `syscall` package in the bindings). I've giving up for the day. This fixes OS X, but does not fully enable the cross-build CI (need Windows fixes for that). Signed-off-by: Matthew Heon <matthew.heon@pm.me>
This commit is contained in:
17
cmd/podman/syslog_unsupported.go
Normal file
17
cmd/podman/syslog_unsupported.go
Normal file
@@ -0,0 +1,17 @@
|
||||
// +build !linux
|
||||
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
)
|
||||
|
||||
func syslogHook() {
|
||||
if !useSyslog {
|
||||
return
|
||||
}
|
||||
|
||||
fmt.Fprintf(os.Stderr, "Logging to Syslog is not supported on Windows")
|
||||
os.Exit(1)
|
||||
}
|
||||
Reference in New Issue
Block a user