From: Mikkel Krautz Date: Wed, 7 Mar 2012 18:51:05 +0000 (-0500) Subject: deps: allow crypto/x509 to use syscall X-Git-Tag: weekly.2012-03-13~128 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=4aab8806e7f245a9deb5bf77c8ff2dd10bf24bf5;p=gostls13.git deps: allow crypto/x509 to use syscall Allows the Windows part of CL 5700087 to land. I had build tested CL 5753060 (which allows crypto/x509 to use cgo and io/ioutil), and didn't spot any errors on Windows. Turns out I was wrong. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5753065 --- diff --git a/src/pkg/go/build/deps_test.go b/src/pkg/go/build/deps_test.go index e2f1d95a23..13b9dc97bb 100644 --- a/src/pkg/go/build/deps_test.go +++ b/src/pkg/go/build/deps_test.go @@ -300,7 +300,7 @@ var pkgDeps = map[string][]string{ "L4", "CRYPTO-MATH", "CGO", "OS", "crypto/x509", "encoding/pem", "net", "syscall", }, - "crypto/x509": {"L4", "CRYPTO-MATH", "OS", "CGO", "crypto/x509/pkix", "encoding/pem"}, + "crypto/x509": {"L4", "CRYPTO-MATH", "OS", "CGO", "crypto/x509/pkix", "encoding/pem", "syscall"}, "crypto/x509/pkix": {"L4", "CRYPTO-MATH"}, // Simple net+crypto-aware packages.