summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Sing <jsing@google.com>2011-08-12 14:44:16 +1000
committerJoel Sing <jsing@google.com>2011-08-12 14:44:16 +1000
commit669e625da0dd476b93f8b0a503e24213d71576da (patch)
tree135b8dbac7e3dcb16360a14dd90c7eadde6f6a46
parenta0297fd398359fd907f19ef6e9d0e4024034496e (diff)
downloadgo-669e625da0dd476b93f8b0a503e24213d71576da.tar.gz
crypto, exec, path, time: add support for OpenBSD
R=golang-dev, r CC=golang-dev http://codereview.appspot.com/4837048 Committer: Rob Pike <r@golang.org>
-rw-r--r--src/pkg/crypto/rand/Makefile3
-rw-r--r--src/pkg/exec/Makefile3
-rw-r--r--src/pkg/path/filepath/Makefile3
-rw-r--r--src/pkg/time/Makefile5
4 files changed, 14 insertions, 0 deletions
diff --git a/src/pkg/crypto/rand/Makefile b/src/pkg/crypto/rand/Makefile
index d1321297d..d1a3d45e8 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 90bb74b41..ba19d0e4d 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 bc26a7d6a..af250ab33 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 023e8775e..a6fce3fa1 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\