diff options
author | mharo <mharo@FreeBSD.org> | 2000-01-22 11:03:46 +0000 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 2000-01-22 11:03:46 +0000 |
commit | 06e50493f9bfd7836f8a0d337948aa7bebb6bca2 (patch) | |
tree | 199362b192c4bbc38c89d4d42d9b4a9d9733672d /benchmarks | |
parent | 3d64a3e9b7b09735e46d020559d87097ec1ae868 (diff) | |
download | FreeBSD-ports-06e50493f9bfd7836f8a0d337948aa7bebb6bca2.zip FreeBSD-ports-06e50493f9bfd7836f8a0d337948aa7bebb6bca2.tar.gz |
fix bento build errors
Diffstat (limited to 'benchmarks')
-rw-r--r-- | benchmarks/rawio/distinfo | 2 | ||||
-rw-r--r-- | benchmarks/rawio/files/patch-aa | 8 | ||||
-rw-r--r-- | benchmarks/rawio/files/patch-ab | 11 | ||||
-rw-r--r-- | benchmarks/rawio/files/patch-ac | 11 |
4 files changed, 27 insertions, 5 deletions
diff --git a/benchmarks/rawio/distinfo b/benchmarks/rawio/distinfo index 2392f7f..43607f2 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 e5af0bb..c6319cb 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 0000000..666a2e6 --- /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 0000000..0bdb7e8 --- /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__ |