From ea2b43b38e8d870a263c26f44e04349a9feae5d1 Mon Sep 17 00:00:00 2001 From: Mikio Hara Date: Mon, 5 May 2014 12:07:22 -0700 Subject: [PATCH] go.crypto/ssh/terminal: add support for BSD variants LGTM=agl R=golang-codereviews, agl CC=golang-codereviews https://golang.org/cl/97850043 --- util.go | 2 +- util_bsd.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/util.go b/util.go index 8df94f5..0763c9a 100644 --- a/util.go +++ b/util.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build linux,!appengine darwin +// +build darwin dragonfly freebsd linux,!appengine netbsd openbsd // Package terminal provides support functions for dealing with terminals, as // commonly found on UNIX systems. diff --git a/util_bsd.go b/util_bsd.go index 1654453..9c1ffd1 100644 --- a/util_bsd.go +++ b/util_bsd.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build darwin +// +build darwin dragonfly freebsd netbsd openbsd package terminal