1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-14 07:43:06 +00:00

fix bento build errors

This commit is contained in:
Michael Haro 2000-01-22 11:03:46 +00:00
parent 3a0e9b245f
commit 0f49af6984
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=24922
4 changed files with 27 additions and 5 deletions

View File

@ -1 +1 @@
MD5 (rawio-1.1.tar.gz) = 4f179ab330aee7cf462a6045b8cc8b30
MD5 (rawio-1.1.tar.gz) = 33cd24c851f586e4a59032c4a86142a6

View File

@ -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;

View File

@ -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

View File

@ -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__