From d2e14db4d4478e7180ce12ac26e86f7f3e275381 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Wed, 14 Dec 2011 10:25:48 -0500 Subject: [PATCH] crypto/tls: make compatible with go/build R=golang-dev, r CC=golang-dev https://golang.org/cl/5484073 --- root_stub.go | 2 ++ root_unix.go | 2 ++ 2 files changed, 4 insertions(+) diff --git a/root_stub.go b/root_stub.go index 1903eed..18dcb02 100644 --- a/root_stub.go +++ b/root_stub.go @@ -2,6 +2,8 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +// +build plan9 + package tls func initDefaultRoots() { diff --git a/root_unix.go b/root_unix.go index 1b9aeb0..5bbd982 100644 --- a/root_unix.go +++ b/root_unix.go @@ -2,6 +2,8 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +// +build freebsd linux openbsd netbsd + package tls import (