aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks
diff options
context:
space:
mode:
authoredwin <edwin@FreeBSD.org>2002-11-05 08:32:54 +0800
committeredwin <edwin@FreeBSD.org>2002-11-05 08:32:54 +0800
commit1135341c81b433e9c1cb53fd1ab17242a490ef0d (patch)
tree48d155c43b1664fe60b40cef30f4593d49500b05 /benchmarks
parente141abcbe3f5d0e27c242db86d315b391df98ce8 (diff)
downloadfreebsd-ports-gnome-1135341c81b433e9c1cb53fd1ab17242a490ef0d.tar.gz
freebsd-ports-gnome-1135341c81b433e9c1cb53fd1ab17242a490ef0d.tar.zst
freebsd-ports-gnome-1135341c81b433e9c1cb53fd1ab17242a490ef0d.zip
Remove obsolete patch-files
PR: ports/40535 Submitted by: Tilman Linneweh <tilman@arved.de> Approved by: grog@freebsd.org
Diffstat (limited to 'benchmarks')
-rw-r--r--benchmarks/rawio/files/patch-aa18
-rw-r--r--benchmarks/rawio/files/patch-ab11
-rw-r--r--benchmarks/rawio/files/patch-ac13
3 files changed, 0 insertions, 42 deletions
diff --git a/benchmarks/rawio/files/patch-aa b/benchmarks/rawio/files/patch-aa
deleted file mode 100644
index c6319cb270c8..000000000000
--- a/benchmarks/rawio/files/patch-aa
+++ /dev/null
@@ -1,18 +0,0 @@
---- 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}, 0, allsigs};
-+ struct sigaction ignore;
- int mycount;
- int i;
- int maxrecs;
-+
-+ ignore.sa_handler = sigcatch;
-+ ignore.sa_flags = 0;
-+ ignore.sa_mask = allsigs;
-
- /* first, calculate the number of records to transfer.
- * If we're one of the first <remainder> processes,
diff --git a/benchmarks/rawio/files/patch-ab b/benchmarks/rawio/files/patch-ab
deleted file mode 100644
index 666a2e692b5d..000000000000
--- a/benchmarks/rawio/files/patch-ab
+++ /dev/null
@@ -1,11 +0,0 @@
---- 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
deleted file mode 100644
index ee09eb5b439e..000000000000
--- a/benchmarks/rawio/files/patch-ac
+++ /dev/null
@@ -1,13 +0,0 @@
---- mkrandom.c.orig Sat Jan 1 19:47:33 2000
-+++ mkrandom.c Thu Jan 27 21:32:52 2000
-@@ -54,7 +54,9 @@
- #include <sys/wait.h>
- #include <sys/resource.h>
- #include <signal.h>
--#include "random.h"
-+#if !defined(__FreeBSD__) || !defined(__alpha__)
-+#include <sys/random.h>
-+#endif
-
- /* submitted by Andy Doran <ad@psn.ie> */
- #ifdef __NetBSD__