From ea77d8f8a95bb8a196157ff59eb46f426328701d Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Fri, 30 Jan 2026 10:17:32 +0900 Subject: [PATCH] Remove support for Irix, which is discontinued and does not provide a c++17 complaint compiler. Signed-off-by: Michele Calgaro --- kmousetool/kmousetool/Xmd_kmousetool.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/kmousetool/kmousetool/Xmd_kmousetool.h b/kmousetool/kmousetool/Xmd_kmousetool.h index 7e22fd1..ce9bd3b 100644 --- a/kmousetool/kmousetool/Xmd_kmousetool.h +++ b/kmousetool/kmousetool/Xmd_kmousetool.h @@ -58,11 +58,6 @@ SOFTWARE. defined(__ia64__) || defined(ia64) #define LONG64 /* 32/64-bit architecture */ #endif -#ifdef __sgi -#if (_MIPS_SZLONG == 64) -#define LONG64 -#endif -#endif /* * Stuff to handle large architecture machines; the constants were generated @@ -128,7 +123,7 @@ typedef int INT32; typedef short INT16; #endif -#if defined(__STDC__) || defined(sgi) || defined(AIXV3) +#if defined(__STDC__) || defined(AIXV3) typedef signed char INT8; #else typedef char INT8;