From 9af190bbf998a9a822544470d7145258798e3d8c Mon Sep 17 00:00:00 2001 From: Sean Chittenden Date: Tue, 28 Nov 2017 16:42:37 -0800 Subject: [PATCH] Fix the v2 branch for Solaris/Illumos. --- termutil/term_linux.go | 2 +- termutil/term_solaris.go | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/termutil/term_linux.go b/termutil/term_linux.go index 9ababc8..2f59e53 100644 --- a/termutil/term_linux.go +++ b/termutil/term_linux.go @@ -1,4 +1,4 @@ -// +build linux solaris +// +build linux // +build !appengine package termutil diff --git a/termutil/term_solaris.go b/termutil/term_solaris.go index 1730cc5..fc96c2b 100644 --- a/termutil/term_solaris.go +++ b/termutil/term_solaris.go @@ -3,4 +3,6 @@ package termutil +const ioctlReadTermios = 0x5401 // syscall.TCGETS +const ioctlWriteTermios = 0x5402 // syscall.TCSETS const sysIoctl = 54