summaryrefslogtreecommitdiff
path: root/sysutils/xosview/patches/patch-bd
diff options
context:
space:
mode:
Diffstat (limited to 'sysutils/xosview/patches/patch-bd')
-rw-r--r--sysutils/xosview/patches/patch-bd41
1 files changed, 0 insertions, 41 deletions
diff --git a/sysutils/xosview/patches/patch-bd b/sysutils/xosview/patches/patch-bd
deleted file mode 100644
index 8991f7d83d4..00000000000
--- a/sysutils/xosview/patches/patch-bd
+++ /dev/null
@@ -1,41 +0,0 @@
-$NetBSD: patch-bd,v 1.2 2006/02/18 10:12:24 rillig Exp $
-
-Status: applied upstream.
-
-The Solaris SunPro compiler does not know the old <strstream.h> header.
-I fixed it to use the new one. The #define is ugly, but I wanted to keep
-the patch short.
-
---- sunos5/cpumeter.cc.orig 1999-01-31 21:26:38.000000000 +0100
-+++ sunos5/cpumeter.cc 2005-02-22 14:44:47.640675500 +0100
-@@ -8,7 +8,10 @@
- #include <unistd.h>
- #include <ctype.h>
- #include <string.h>
--#include <strstream.h>
-+#include <sstream>
-+
-+#define ostrstream std::ostringstream
-+using std::ends;
-
- CPUMeter::CPUMeter(XOSView *parent, kstat_ctl_t *_kc, int cpuid)
- : FieldMeterGraph(parent, CPU_STATES, toUpper(cpuStr(cpuid)),
-@@ -91,15 +94,15 @@ const char *CPUMeter::toUpper(const char
-
- const char *CPUMeter::cpuStr(int num)
- {
-- static char buffer[32];
-- ostrstream str(buffer, 32);
-+ static std::string buffer;
-+ std::ostringstream str(buffer);
-
- str << "cpu";
- if (num != 0)
- str << (num - 1);
- str << ends;
-
-- return buffer;
-+ return buffer.c_str();
- }
-
- int CPUMeter::countCPUs(kstat_ctl_t *kc)