summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCiaran McCreesh <ciaranm@gentoo.org>2005-03-03 16:53:14 +0000
committerCiaran McCreesh <ciaranm@gentoo.org>2005-03-03 16:53:14 +0000
commitba36f9a8fd23c8ef396c34e73dca3a3660a10ce1 (patch)
treea091e7ef784a9616163553109d0d15797476e395 /sys-process/procps/files/procps-mips-define-pagesize.patch
parentAdded ~ppc64 to KEYWORDS (diff)
downloadgentoo-2-ba36f9a8fd23c8ef396c34e73dca3a3660a10ce1.tar.gz
gentoo-2-ba36f9a8fd23c8ef396c34e73dca3a3660a10ce1.tar.bz2
gentoo-2-ba36f9a8fd23c8ef396c34e73dca3a3660a10ce1.zip
Moved from sys-apps/procps to sys-process/procps.
Diffstat (limited to 'sys-process/procps/files/procps-mips-define-pagesize.patch')
-rw-r--r--sys-process/procps/files/procps-mips-define-pagesize.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/sys-process/procps/files/procps-mips-define-pagesize.patch b/sys-process/procps/files/procps-mips-define-pagesize.patch
new file mode 100644
index 000000000000..3802f4ccecfb
--- /dev/null
+++ b/sys-process/procps/files/procps-mips-define-pagesize.patch
@@ -0,0 +1,29 @@
+diff -Naurp procps-3.2.3.orig/minimal.c procps-3.2.3/minimal.c
+--- procps-3.2.3.orig/minimal.c 2004-05-04 20:26:14.000000000 -0400
++++ procps-3.2.3/minimal.c 2004-08-20 02:01:35.868100752 -0400
+@@ -68,8 +68,8 @@
+ ///////////////////////////////////////////////////////////
+
+ #ifndef PAGE_SIZE
+-#warning PAGE_SIZE not defined, assuming it is 4096
+-#define PAGE_SIZE 4096
++#warning PAGE_SIZE not defined, using sysconf() to determine correct value
++#define PAGE_SIZE (sysconf(_SC_PAGESIZE))
+ #endif
+
+
+diff -Naurp procps-3.2.3.orig/ps/common.h procps-3.2.3/ps/common.h
+--- procps-3.2.3.orig/ps/common.h 2004-04-25 17:03:18.000000000 -0400
++++ procps-3.2.3/ps/common.h 2004-08-20 02:00:59.228670792 -0400
+@@ -16,6 +16,11 @@
+ #include "../proc/readproc.h"
+ #include <asm/page.h> /* looks safe for glibc, we need PAGE_SIZE */
+
++#ifndef PAGE_SIZE
++#warning PAGE_SIZE not defined, using sysconf() to determine correct value
++#define PAGE_SIZE (sysconf(_SC_PAGESIZE))
++#endif
++
+ #if 0
+ #define trace(args...) printf(## args)
+ #else