diff options
author | arved <arved@FreeBSD.org> | 2003-03-03 18:41:01 +0800 |
---|---|---|
committer | arved <arved@FreeBSD.org> | 2003-03-03 18:41:01 +0800 |
commit | b0e7e92a7b8925e2acff632ef42418b23fa21e8a (patch) | |
tree | 1adb0986f6a4304f544d0e25650e21a8ba497156 /math | |
parent | 64d25bbcc0761af0fa713ff81af6654301b08ea2 (diff) | |
download | freebsd-ports-gnome-b0e7e92a7b8925e2acff632ef42418b23fa21e8a.tar.gz freebsd-ports-gnome-b0e7e92a7b8925e2acff632ef42418b23fa21e8a.tar.zst freebsd-ports-gnome-b0e7e92a7b8925e2acff632ef42418b23fa21e8a.zip |
Fix Build on CURRENT.
Submitted by: Andy Fawcett <tap@hex.athame.co.uk>
Reported by: many
Tested by: leafy@leafy.idv.tw (CURRENT), Andy Fawcett (4.7 5.0R)
Diffstat (limited to 'math')
-rw-r--r-- | math/kcalc/files/patch-ksimcpu.cpp | 29 | ||||
-rw-r--r-- | math/kcalc/files/patch-ksimdisk.cpp | 24 |
2 files changed, 53 insertions, 0 deletions
diff --git a/math/kcalc/files/patch-ksimcpu.cpp b/math/kcalc/files/patch-ksimcpu.cpp new file mode 100644 index 000000000000..0dbf177de206 --- /dev/null +++ b/math/kcalc/files/patch-ksimcpu.cpp @@ -0,0 +1,29 @@ +Index: ksim/monitors/cpu/ksimcpu.cpp +=================================================================== +RCS file: /home/kde/kdeutils/ksim/monitors/cpu/ksimcpu.cpp,v +retrieving revision 1.21 +diff -u -5 -p -d -r1.21 ksimcpu.cpp +--- ksim/monitors/cpu/ksimcpu.cpp 13 May 2002 14:47:51 -0000 1.21 ++++ ksim/monitors/cpu/ksimcpu.cpp 3 Mar 2003 07:38:33 -0000 +@@ -40,12 +40,20 @@ + #include <chart.h> + #include <progress.h> + #include <themetypes.h> + + #ifdef Q_OS_BSD4 +-#include <sys/dkstat.h> + #include <sys/param.h> ++#ifdef Q_OS_FREEBSD ++#if __FreeBSD_version < 500101 ++#include <sys/dkstat.h> ++#else ++#include <sys/resource.h> ++#endif ++#else ++#include <sys/dkstat.h> ++#endif + #include <sys/sysctl.h> + #include <string.h> + #include <kvm.h> + #ifdef Q_OS_NETBSD + #include <sys/sched.h> diff --git a/math/kcalc/files/patch-ksimdisk.cpp b/math/kcalc/files/patch-ksimdisk.cpp new file mode 100644 index 000000000000..be1790d8ec21 --- /dev/null +++ b/math/kcalc/files/patch-ksimdisk.cpp @@ -0,0 +1,24 @@ +Index: ksimdisk.cpp +=================================================================== +RCS file: /home/kde/kdeutils/ksim/monitors/disk/ksimdisk.cpp,v +retrieving revision 1.13 +diff -u -5 -p -d -r1.13 ksimdisk.cpp +--- ksimdisk.cpp 2 Nov 2002 14:34:08 -0000 1.13 ++++ ksim/monitors/disk/ksimdisk.cpp 3 Mar 2003 08:48:34 -0000 +@@ -39,11 +39,16 @@ + #include <chart.h> + #include <progress.h> + #include <themetypes.h> + + #ifdef Q_OS_FREEBSD ++#include <sys/param.h> ++#if __FreeBSD_version < 500101 + #include <sys/dkstat.h> ++#else ++#include <sys/resource.h> ++#endif + #include <devstat.h> + #include <stdlib.h> + #endif + + #ifdef Q_OS_LINUX |