From 8c46e47b61447c21d4269fe746a9a248acd5dfd4 Mon Sep 17 00:00:00 2001 From: Joel Sing Date: Fri, 12 Aug 2011 14:44:16 +1000 Subject: [PATCH] crypto, exec, path, time: add support for OpenBSD R=golang-dev, r CC=golang-dev https://golang.org/cl/4837048 --- src/pkg/crypto/rand/Makefile | 3 +++ src/pkg/exec/Makefile | 3 +++ src/pkg/path/filepath/Makefile | 3 +++ src/pkg/time/Makefile | 5 +++++ 4 files changed, 14 insertions(+) diff --git a/src/pkg/crypto/rand/Makefile b/src/pkg/crypto/rand/Makefile index d1321297d9b..d1a3d45e8c0 100644 --- a/src/pkg/crypto/rand/Makefile +++ b/src/pkg/crypto/rand/Makefile @@ -19,6 +19,9 @@ GOFILES_darwin=\ GOFILES_linux=\ rand_unix.go\ +GOFILES_openbsd=\ + rand_unix.go\ + GOFILES_windows=\ rand_windows.go\ diff --git a/src/pkg/exec/Makefile b/src/pkg/exec/Makefile index 90bb74b41c9..ba19d0e4d04 100644 --- a/src/pkg/exec/Makefile +++ b/src/pkg/exec/Makefile @@ -17,6 +17,9 @@ GOFILES_darwin=\ GOFILES_linux=\ lp_unix.go\ +GOFILES_openbsd=\ + lp_unix.go\ + GOFILES_windows=\ lp_windows.go\ diff --git a/src/pkg/path/filepath/Makefile b/src/pkg/path/filepath/Makefile index bc26a7d6a0f..af250ab330d 100644 --- a/src/pkg/path/filepath/Makefile +++ b/src/pkg/path/filepath/Makefile @@ -18,6 +18,9 @@ GOFILES_darwin=\ GOFILES_linux=\ path_unix.go +GOFILES_openbsd=\ + path_unix.go + GOFILES_plan9=\ path_plan9.go diff --git a/src/pkg/time/Makefile b/src/pkg/time/Makefile index 023e8775ec1..a6fce3fa1ff 100644 --- a/src/pkg/time/Makefile +++ b/src/pkg/time/Makefile @@ -27,6 +27,11 @@ GOFILES_linux=\ zoneinfo_posix.go\ zoneinfo_unix.go\ +GOFILES_openbsd=\ + sys_posix.go\ + zoneinfo_posix.go\ + zoneinfo_unix.go\ + GOFILES_windows=\ sys_posix.go\ zoneinfo_windows.go\