summaryrefslogtreecommitdiff
path: root/emulators/pcemu
diff options
context:
space:
mode:
authorminskim <minskim>2004-09-16 17:16:18 +0000
committerminskim <minskim>2004-09-16 17:16:18 +0000
commitf8a3013e3fd23826460aef85c9e29363af1d2257 (patch)
tree85af9a161fab09ba1f709e34e55adfd097759b10 /emulators/pcemu
parent7ee508836398c2c4bfa17f920322126565b52fa2 (diff)
downloadpkgsrc-f8a3013e3fd23826460aef85c9e29363af1d2257.tar.gz
Use statvfs on NetBSD>=2.0D.
Diffstat (limited to 'emulators/pcemu')
-rw-r--r--emulators/pcemu/distinfo4
-rw-r--r--emulators/pcemu/patches/patch-ac20
2 files changed, 17 insertions, 7 deletions
diff --git a/emulators/pcemu/distinfo b/emulators/pcemu/distinfo
index 1a52737113d..ac5db1209e6 100644
--- a/emulators/pcemu/distinfo
+++ b/emulators/pcemu/distinfo
@@ -1,10 +1,10 @@
-$NetBSD: distinfo,v 1.4 2004/07/09 12:45:23 wiz Exp $
+$NetBSD: distinfo,v 1.5 2004/09/16 17:16:18 minskim Exp $
SHA1 (pcemu1.01alpha.tar.gz) = 4c0cf9b3b197e890fbc85dc85ca0d7c75eb145b3
Size (pcemu1.01alpha.tar.gz) = 316257 bytes
SHA1 (patch-aa) = f53e918695b8929688b375c1af6f003b02ffa4ca
SHA1 (patch-ab) = 6636736f76b956a2beb6490785b63f4a131c9c25
-SHA1 (patch-ac) = 0ff6e3057b7b23d606256baf95e6efb742e79257
+SHA1 (patch-ac) = a253d92f7e6dc8838bd8fbb19f5ce235a00b822c
SHA1 (patch-ad) = 5b4c50d591eb5060276015e8b178475de38293fd
SHA1 (patch-ae) = c641955b80afabb688739fca411f3c31c2aa16a7
SHA1 (patch-af) = d36be5e25896ebc66bb2cc11135d61053a7e57ff
diff --git a/emulators/pcemu/patches/patch-ac b/emulators/pcemu/patches/patch-ac
index 311a1ed8eaa..e079b4f31fe 100644
--- a/emulators/pcemu/patches/patch-ac
+++ b/emulators/pcemu/patches/patch-ac
@@ -1,8 +1,8 @@
-$NetBSD: patch-ac,v 1.3 2004/07/09 12:45:03 wiz Exp $
+$NetBSD: patch-ac,v 1.4 2004/09/16 17:16:18 minskim Exp $
---- mfs.c.orig 1994-06-22 16:24:51.000000000 +0200
+--- mfs.c.orig 1994-06-22 09:24:51.000000000 -0500
+++ mfs.c
-@@ -319,7 +319,9 @@ TODO:
+@@ -319,17 +319,24 @@ TODO:
#include <errno.h>
#include <sys/param.h>
#include <stdlib.h>
@@ -10,9 +10,10 @@ $NetBSD: patch-ac,v 1.3 2004/07/09 12:45:03 wiz Exp $
#include <malloc.h>
+#endif
- #ifdef SOLARIS
+-#ifdef SOLARIS
++#if defined(SOLARIS) || (defined(__NetBSD__) && __NetBSD_Version__ >= 200040000)
#include <fcntl.h>
-@@ -327,9 +329,14 @@ TODO:
+ #include <sys/statvfs.h>
#endif
#if defined(SGI) || defined(RS6000)
@@ -29,3 +30,12 @@ $NetBSD: patch-ac,v 1.3 2004/07/09 12:45:03 wiz Exp $
#endif
+@@ -768,7 +775,7 @@ get_unix_attr(int mode, int attr)
+ int
+ get_disk_space(char *cwd, int *free, int *total)
+ {
+-#ifdef SOLARIS
++#if defined(SOLARIS) || (defined(__NetBSD__) && __NetBSD_Version__ >= 200040000)
+ struct statvfs fsbuf;
+ if (statvfs(cwd, &fsbuf) >= 0)
+ #else