diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2018-01-09 21:42:59 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2018-01-09 21:42:59 +0000 |
commit | ee6019ce5d3bc7e80ab1d8b8d2fbad3351ff778b (patch) | |
tree | be64b86169021c2dcfe866db5a2212a04f8f650c /libgo | |
parent | 81e0f09288052014c5fb3136e6abc9dfcc7629db (diff) | |
download | gcc-ee6019ce5d3bc7e80ab1d8b8d2fbad3351ff778b.zip gcc-ee6019ce5d3bc7e80ab1d8b8d2fbad3351ff778b.tar.gz gcc-ee6019ce5d3bc7e80ab1d8b8d2fbad3351ff778b.tar.bz2 |
os/signal/internal/pty: build on Solaris
Patch from Rainer Orth.
Reviewed-on: https://go-review.googlesource.com/87037
From-SVN: r256399
Diffstat (limited to 'libgo')
-rw-r--r-- | libgo/go/os/signal/internal/pty/pty.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/os/signal/internal/pty/pty.go b/libgo/go/os/signal/internal/pty/pty.go index 4728de7..020f7bf 100644 --- a/libgo/go/os/signal/internal/pty/pty.go +++ b/libgo/go/os/signal/internal/pty/pty.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 dragonfly freebsd linux,!android netbsd openbsd +// +build darwin dragonfly freebsd linux,!android netbsd openbsd solaris // Package pty is a simple pseudo-terminal package for Unix systems, // implemented by calling C functions via cgo. |