diff options
author | simonb <simonb@pkgsrc.org> | 2001-02-19 13:30:24 +0000 |
---|---|---|
committer | simonb <simonb@pkgsrc.org> | 2001-02-19 13:30:24 +0000 |
commit | 2f11f769c73150fa8da940a6b442d8a4d63039c7 (patch) | |
tree | d95f3e8dab557b16a9e9d4b248ba85c4f775480c /sysutils/xuvmstat/patches | |
parent | ae89fce40749d11b52a05175d1e6df96c86c6593 (diff) | |
download | pkgsrc-2f11f769c73150fa8da940a6b442d8a4d63039c7.tar.gz |
LP64 fixes.
Diffstat (limited to 'sysutils/xuvmstat/patches')
-rw-r--r-- | sysutils/xuvmstat/patches/patch-aa | 14 | ||||
-rw-r--r-- | sysutils/xuvmstat/patches/patch-ab | 13 | ||||
-rw-r--r-- | sysutils/xuvmstat/patches/patch-ac | 12 |
3 files changed, 39 insertions, 0 deletions
diff --git a/sysutils/xuvmstat/patches/patch-aa b/sysutils/xuvmstat/patches/patch-aa new file mode 100644 index 00000000000..abd11f4709d --- /dev/null +++ b/sysutils/xuvmstat/patches/patch-aa @@ -0,0 +1,14 @@ +$NetBSD: patch-aa,v 1.1 2001/02/19 13:30:25 simonb Exp $ + +--- get_uvmexp.c.orig Mon Feb 12 12:18:14 2001 ++++ get_uvmexp.c Tue Feb 20 00:14:00 2001 +@@ -31,7 +31,8 @@ + struct uvmexp *uvmexp; + + { +- int mib[2], len; ++ int mib[2]; ++ size_t len; + mib[0] = CTL_VM; + mib[1] = VM_UVMEXP; + len = sizeof(*uvmexp); diff --git a/sysutils/xuvmstat/patches/patch-ab b/sysutils/xuvmstat/patches/patch-ab new file mode 100644 index 00000000000..0ab9f37baa0 --- /dev/null +++ b/sysutils/xuvmstat/patches/patch-ab @@ -0,0 +1,13 @@ +$NetBSD: patch-ab,v 1.1 2001/02/19 13:30:26 simonb Exp $ + +--- libcdcx.c.orig Mon Feb 12 12:28:18 2001 ++++ libcdcx.c Tue Feb 20 00:13:21 2001 +@@ -32,6 +32,8 @@ + + + #include <stdio.h> ++#include <stdlib.h> ++#include <string.h> + #include <X11/Xlib.h> + #include <X11/Xutil.h> + #include "libcdcx.h" diff --git a/sysutils/xuvmstat/patches/patch-ac b/sysutils/xuvmstat/patches/patch-ac new file mode 100644 index 00000000000..9aef477dc60 --- /dev/null +++ b/sysutils/xuvmstat/patches/patch-ac @@ -0,0 +1,12 @@ +$NetBSD: patch-ac,v 1.1 2001/02/19 13:30:26 simonb Exp $ + +--- xuvmstat.c.orig Mon Feb 12 12:30:00 2001 ++++ xuvmstat.c Tue Feb 20 00:26:32 2001 +@@ -26,6 +26,7 @@ + + #include <errno.h> + #include <stdio.h> ++#include <string.h> + #include <unistd.h> + #include <sys/param.h> + #include <sys/errno.h> |