make docker compile on freebsd

Signed-off-by: Alexey Guskov <lexag@mail.ru>
Upstream-commit: 26c03d561ab126287bb3034cc23477d18869a888
Component: engine
This commit is contained in:
Alexey Guskov
2015-07-29 21:25:56 +03:00
parent 4c4cfdbd2e
commit 59df5a01ec
25 changed files with 154 additions and 12 deletions

View File

@ -0,0 +1,7 @@
// +build daemon
package main
import (
_ "github.com/docker/docker/daemon/execdriver/lxc"
)

View File

@ -11,7 +11,6 @@ import (
"github.com/docker/docker/daemon"
"github.com/docker/docker/pkg/system"
_ "github.com/docker/docker/daemon/execdriver/lxc"
_ "github.com/docker/docker/daemon/execdriver/native"
)