summaryrefslogtreecommitdiff
path: root/sysutils/xsysstats/files
diff options
context:
space:
mode:
authorSatoshi Asami <asami@FreeBSD.org>1994-12-13 09:07:03 +0000
committerSatoshi Asami <asami@FreeBSD.org>1994-12-13 09:07:03 +0000
commit840a84e7aa02b221a44c8865e9baacd20e6d52c1 (patch)
tree742264daa1b66d7f0e71cbe81153b368ffaea39c /sysutils/xsysstats/files
parentAdded '${GMAKE} install.man' when installing with Imake and gmake (diff)
xsysstats-1.32, a system information display tool. Someone please test
this, I can't for my life figure out how the heck all those options work....
Notes
Notes: svn path=/head/; revision=565
Diffstat (limited to 'sysutils/xsysstats/files')
-rw-r--r--sysutils/xsysstats/files/patch-aa75
1 files changed, 75 insertions, 0 deletions
diff --git a/sysutils/xsysstats/files/patch-aa b/sysutils/xsysstats/files/patch-aa
new file mode 100644
index 000000000000..3ea1ef546d20
--- /dev/null
+++ b/sysutils/xsysstats/files/patch-aa
@@ -0,0 +1,75 @@
+--- ./headers.h.org Mon Nov 21 19:57:57 1994
++++ ./headers.h Tue Dec 13 00:49:58 1994
+@@ -9,7 +9,7 @@
+ * prototypes, this is unneeded.
+ */
+
+-#ifndef __NetBSD__
++#if !(defined(__NetBSD__) || defined(__FreeBSD__))
+ #ifdef __GNUC__
+ /* These do not seem to be needed with gcc-2.5.0. In fact, having
+ * them declared causes errors.
+--- ./porting.c.org Tue Nov 22 13:21:16 1994
++++ ./porting.c Tue Dec 13 00:49:58 1994
+@@ -1,4 +1,4 @@
+-#ifndef __NetBSD__
++#if !(defined(__NetBSD__) || defined(__FreeBSD__))
+ #include <rpcsvc/rstat.h>
+ #endif
+ #include "xsysstats.h"
+@@ -10,10 +10,13 @@
+ #define FSCALE (1<<FSHIFT)
+ #endif
+
+-#ifdef __NetBSD__
++#if (defined(__NetBSD__) || defined(__FreeBSD__))
+ #include <rpc/rpc.h>
+ #undef FSHIFT
+ #undef FSCALE
++#ifdef __FreeBSD__
++#include <rpc/types.h>
++#endif
+ #include <rpcsvc/rstat.h>
+
+ #ifdef ultrix
+--- ./Imakefile.org Mon Nov 21 19:47:44 1994
++++ ./Imakefile Tue Dec 13 00:57:57 1994
+@@ -9,7 +9,7 @@
+ */
+
+
+-CFLAGS = -I/usr/X11R6/include -g -Wall
++CFLAGS = -I/usr/X11R6/include -O2 -Wall
+ CC = gcc
+
+ /* If using Solaris 2, uncomment the line below *
+@@ -20,7 +20,7 @@
+ DEFINES = -DSOLARIS2
+ LIBS = -lrpcsvc -lnsl
+ #else
+- LIBS = -lrpcsvc
++ LIBS = -lrpcsvc
+ #endif
+
+ DEPLIBS = $(DEPXLIB)
+--- ./xsysstats.h.org Mon Nov 21 20:57:47 1994
++++ ./xsysstats.h Tue Dec 13 00:49:58 1994
+@@ -2,9 +2,17 @@
+ #include <X11/Xutil.h>
+ #include <stdio.h>
+ #include <sys/param.h>
++#include <sys/types.h>
++#if defined(BSD) && (BSD >= 199306)
++#include <stdlib.h>
++#else
+ #include <malloc.h>
++#endif
+
+-#ifdef SOLARIS2
++#include <string.h>
++#include <unistd.h>
++
++#if (defined(SOLARIS2) || defined(__FreeBSD__))
+ #include <netdb.h>
+ #endif
+