From ce7cada3e1ce3e62e87380ca6b4f1cf598495891 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 31 Jan 2026 22:25:59 +0900 Subject: Remove support for Irix, which is discontinued and does not provide a c++17 complaint compiler. Signed-off-by: Michele Calgaro --- languages/ruby/debugger/stty.cpp | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'languages/ruby/debugger') diff --git a/languages/ruby/debugger/stty.cpp b/languages/ruby/debugger/stty.cpp index f2650666..7d4521d7 100644 --- a/languages/ruby/debugger/stty.cpp +++ b/languages/ruby/debugger/stty.cpp @@ -154,18 +154,6 @@ int STTY::findTTY() // Find a master pty that we can open //////////////////////////////// -#ifdef __sgi__ - ptyfd = open("/dev/ptmx",O_RDWR); - if (ptyfd < 0) { - perror("Can't open a pseudo teletype"); - return(-1); - } - strncpy(tty_slave, ptsname(ptyfd), 50); - grantpt(ptyfd); - unlockpt(ptyfd); - needGrantPty = false; -#endif - // first we try UNIX PTY's #ifdef TIOCGPTN strcpy(pty_master,"/dev/ptmx"); -- cgit v1.2.3