summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Haro <mharo@FreeBSD.org>2000-01-22 11:03:46 +0000
committerMichael Haro <mharo@FreeBSD.org>2000-01-22 11:03:46 +0000
commit0f49af69848b2ffe1b242aa102c24d34094f7fd3 (patch)
tree66a745dd135e644699a982e0aac27eb4111d72f2
parentupdate to 3.52 (diff)
fix bento build errors
Notes
Notes: svn path=/head/; revision=24922
-rw-r--r--benchmarks/rawio/distinfo2
-rw-r--r--benchmarks/rawio/files/patch-aa8
-rw-r--r--benchmarks/rawio/files/patch-ab11
-rw-r--r--benchmarks/rawio/files/patch-ac11
4 files changed, 27 insertions, 5 deletions
diff --git a/benchmarks/rawio/distinfo b/benchmarks/rawio/distinfo
index 2392f7f9f69c..43607f21dd65 100644
--- a/benchmarks/rawio/distinfo
+++ b/benchmarks/rawio/distinfo
@@ -1 +1 @@
-MD5 (rawio-1.1.tar.gz) = 4f179ab330aee7cf462a6045b8cc8b30
+MD5 (rawio-1.1.tar.gz) = 33cd24c851f586e4a59032c4a86142a6
diff --git a/benchmarks/rawio/files/patch-aa b/benchmarks/rawio/files/patch-aa
index e5af0bb39de7..c6319cb270c8 100644
--- a/benchmarks/rawio/files/patch-aa
+++ b/benchmarks/rawio/files/patch-aa
@@ -1,10 +1,10 @@
---- rawio.c.orig Sat Jul 24 19:45:14 1999
-+++ rawio.c Sat Nov 13 10:47:50 1999
-@@ -493,10 +493,14 @@
+--- rawio.c.orig Sat Jan 1 17:44:16 2000
++++ rawio.c Sat Jan 22 02:58:36 2000
+@@ -551,10 +551,14 @@
void dochild (int test, int proc)
{
sigset_t allsigs;
-- struct sigaction ignore = {sigcatch, allsigs, 0};
+- struct sigaction ignore = {{sigcatch}, 0, allsigs};
+ struct sigaction ignore;
int mycount;
int i;
diff --git a/benchmarks/rawio/files/patch-ab b/benchmarks/rawio/files/patch-ab
new file mode 100644
index 000000000000..666a2e692b5d
--- /dev/null
+++ b/benchmarks/rawio/files/patch-ab
@@ -0,0 +1,11 @@
+--- Makefile.orig Sat Jan 22 03:00:58 2000
++++ Makefile Sat Jan 22 03:01:04 2000
+@@ -12,7 +12,7 @@
+ ${CC} ${CFLAGS} $@.c -o $@
+
+ randoms.h: mkrandom
+- mkrandom > $@
++ ./mkrandom > $@
+ clean:
+ rm -f *~ rawio mkrandom *.o
+
diff --git a/benchmarks/rawio/files/patch-ac b/benchmarks/rawio/files/patch-ac
new file mode 100644
index 000000000000..0bdb7e8ddd8b
--- /dev/null
+++ b/benchmarks/rawio/files/patch-ac
@@ -0,0 +1,11 @@
+--- mkrandom.c.orig Sat Jan 22 03:02:13 2000
++++ mkrandom.c Sat Jan 22 03:02:21 2000
+@@ -54,7 +54,7 @@
+ #include <sys/wait.h>
+ #include <sys/resource.h>
+ #include <signal.h>
+-#include "random.h"
++#include <machine/random.h>
+
+ /* submitted by Andy Doran <ad@psn.ie> */
+ #ifdef __NetBSD__