diff options
author | Michele Calgaro <[email protected]> | 2025-01-05 23:03:09 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2025-01-07 10:25:27 +0900 |
commit | 90cd05fc319e856bf907b1d8b1c0d05816e71af7 (patch) | |
tree | 1814041c14ee75989f1a0ddac88434483a54b1f8 /ksysguard | |
parent | fc3cb1efd2b9f465c7f2a00d6d6b5f14d9b7094b (diff) | |
download | tdebase-90cd05fc319e856bf907b1d8b1c0d05816e71af7.tar.gz tdebase-90cd05fc319e856bf907b1d8b1c0d05816e71af7.zip |
Remove support for Tru64 and OSF
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 57a00bdcbda06e2ec437be4db20f59a10b921157)
Diffstat (limited to 'ksysguard')
-rw-r--r-- | ksysguard/configure.in.in | 2 | ||||
-rw-r--r-- | ksysguard/ksysguardd/Makefile.am | 5 | ||||
-rw-r--r-- | ksysguard/ksysguardd/modules.h | 12 |
3 files changed, 1 insertions, 18 deletions
diff --git a/ksysguard/configure.in.in b/ksysguard/configure.in.in index f4ab83853..005a10495 100644 --- a/ksysguard/configure.in.in +++ b/ksysguard/configure.in.in @@ -7,7 +7,6 @@ case "$host" in *-*-dragonfly*) ksysguardd_compile=yes; UNAME='FreeBSD' ;; *-*-netbsd*) ksysguardd_compile=yes; UNAME='NetBSD' ;; *-*-solaris*) ksysguardd_compile=yes; UNAME='Solaris' ;; - *-*-osf*) ksysguardd_compile=yes; UNAME='Tru64' ;; *-*-irix*) ksysguardd_compile=yes; UNAME='Irix' ;; *-*-openbsd*) ksysguardd_compile=yes; UNAME='OpenBSD' ;; *) ksysguardd_compile=no; UNAME='' ;; @@ -20,7 +19,6 @@ AM_CONDITIONAL(include_ksysguardd_linux, test "$UNAME" = Linux) AM_CONDITIONAL(include_ksysguardd_freebsd, test "$UNAME" = FreeBSD) AM_CONDITIONAL(include_ksysguardd_netbsd, test "$UNAME" = NetBSD) AM_CONDITIONAL(include_ksysguardd_solaris, test "$UNAME" = Solaris) -AM_CONDITIONAL(include_ksysguardd_tru64, test "$UNAME" = Tru64) AM_CONDITIONAL(include_ksysguardd_irix, test "$UNAME" = Irix) AM_CONDITIONAL(include_ksysguardd_openbsd, test "$UNAME" = OpenBSD) AC_SUBST(UNAME) diff --git a/ksysguard/ksysguardd/Makefile.am b/ksysguard/ksysguardd/Makefile.am index 0e6da33ad..0e1f1122a 100644 --- a/ksysguard/ksysguardd/Makefile.am +++ b/ksysguard/ksysguardd/Makefile.am @@ -12,9 +12,6 @@ endif if include_ksysguardd_solaris solaris_SUBDIR = Solaris endif -if include_ksysguardd_tru64 -tru64_SUBDIR = Tru64 -endif if include_ksysguardd_irix irix_SUBDIR = Irix endif @@ -23,7 +20,7 @@ openbsd_SUBDIR = OpenBSD endif SUBDIRS = $(linux_SUBDIR) $(freebsd_SUBDIR) $(netbsd_SUBDIR)\ - $(solaris_SUBDIR) $(tru64_SUBDIR) $(irix_SUBDIR) $(openbsd_SUBDIR) + $(solaris_SUBDIR) $(irix_SUBDIR) $(openbsd_SUBDIR) KSYSGUARDDRCFILE=$(sysconfdir)/ksysguarddrc INCLUDES = -DKSYSGUARDDRCFILE="\"$(KSYSGUARDDRCFILE)\"" -DOSTYPE_$(UNAME) -I$(srcdir)/../CContLib -I$(srcdir)/$(UNAME) $(all_includes) diff --git a/ksysguard/ksysguardd/modules.h b/ksysguard/ksysguardd/modules.h index 6130f2a83..e92bca5e4 100644 --- a/ksysguard/ksysguardd/modules.h +++ b/ksysguard/ksysguardd/modules.h @@ -83,12 +83,6 @@ #include "cpu.h" #endif /* OSTYPE_Irix */ -#ifdef OSTYPE_Tru64 -#include "LoadAvg.h" -#include "Memory.h" -#include "NetDev.h" -#endif /* OSTYPE_Tru64 */ - #ifdef OSTYPE_OpenBSD #include "cpu.h" #include "memory.h" @@ -161,12 +155,6 @@ struct SensorModul SensorModulList[] = { { "ProcessList", initProcessList, exitProcessList, updateProcessList, NULLVVFUNC, 0, NULLTIME }, #endif /* OSTYPE_Irix */ -#ifdef OSTYPE_Tru64 - { "LoadAvg", initLoadAvg, exitLoadAvg, updateLoadAvg, NULLVVFUNC, 0, NULLTIME }, - { "Memory", initMemory, exitMemory, updateMemory, NULLVVFUNC, 0, NULLTIME }, - { "NetDev", initNetDev, exitNetDev, updateNetDev, NULLVVFUNC, 0, NULLTIME }, -#endif /* OSTYPE_Tru64 */ - #ifdef OSTYPE_OpenBSD { "CpuInfo", initCpuInfo, exitCpuInfo, updateCpuInfo, NULLVVFUNC, 0, NULLTIME }, { "Memory", initMemory, exitMemory, updateMemory, NULLVVFUNC, 0, NULLTIME }, |