summaryrefslogtreecommitdiffstats
path: root/languages
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2026-01-31 22:25:59 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2026-02-01 17:57:16 +0900
commited5e55f3a4ebb7abd0b961e2c7fc0fb3ee393fc4 (patch)
treeaa29aa205d6512e94e5ebbe065cffcd0a84c8093 /languages
parentd3155886a5d2247593a7597b35be6b7cbe8a049c (diff)
downloadtdevelop-r14.1.x.tar.gz
tdevelop-r14.1.x.zip
Remove support for Irix, which is discontinued and does not provide a c++17 complaint compiler.r14.1.x
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit ce7cada3e1ce3e62e87380ca6b4f1cf598495891)
Diffstat (limited to 'languages')
-rw-r--r--languages/cpp/debugger/stty.cpp12
-rw-r--r--languages/ruby/debugger/stty.cpp12
2 files changed, 0 insertions, 24 deletions
diff --git a/languages/cpp/debugger/stty.cpp b/languages/cpp/debugger/stty.cpp
index 84606249..b620e824 100644
--- a/languages/cpp/debugger/stty.cpp
+++ b/languages/cpp/debugger/stty.cpp
@@ -149,18 +149,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");
diff --git a/languages/ruby/debugger/stty.cpp b/languages/ruby/debugger/stty.cpp
index d1b73da5..36f11da0 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");