summaryrefslogtreecommitdiff
path: root/emulators
diff options
context:
space:
mode:
authorabs <abs>2005-09-06 08:10:57 +0000
committerabs <abs>2005-09-06 08:10:57 +0000
commit38b9aa514440e8e7764a5748e4e3297ad51f34fd (patch)
tree93bf2742fc4e1bf90527c6e25c8e73ae1da1c960 /emulators
parent18fff7191848c82996a788e4a2974e226ebb0d13 (diff)
downloadpkgsrc-38b9aa514440e8e7764a5748e4e3297ad51f34fd.tar.gz
Fix NetBSD statvfs check to be >= 299000900 not >= 200040000
No pkgrevision bumps needed.
Diffstat (limited to 'emulators')
-rw-r--r--emulators/pcemu/distinfo4
-rw-r--r--emulators/pcemu/patches/patch-ac6
2 files changed, 5 insertions, 5 deletions
diff --git a/emulators/pcemu/distinfo b/emulators/pcemu/distinfo
index e4f9a5962bf..7848377a45a 100644
--- a/emulators/pcemu/distinfo
+++ b/emulators/pcemu/distinfo
@@ -1,11 +1,11 @@
-$NetBSD: distinfo,v 1.6 2005/02/23 18:49:19 agc Exp $
+$NetBSD: distinfo,v 1.7 2005/09/06 08:10:58 abs Exp $
SHA1 (pcemu1.01alpha.tar.gz) = 4c0cf9b3b197e890fbc85dc85ca0d7c75eb145b3
RMD160 (pcemu1.01alpha.tar.gz) = 2eb3ba91138d08946728a6dc1dee6482416c3a01
Size (pcemu1.01alpha.tar.gz) = 316257 bytes
SHA1 (patch-aa) = f53e918695b8929688b375c1af6f003b02ffa4ca
SHA1 (patch-ab) = 6636736f76b956a2beb6490785b63f4a131c9c25
-SHA1 (patch-ac) = a253d92f7e6dc8838bd8fbb19f5ce235a00b822c
+SHA1 (patch-ac) = ba75ebd170b9847f982b045a3a618daaaa94f179
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 e079b4f31fe..2127ce91e7b 100644
--- a/emulators/pcemu/patches/patch-ac
+++ b/emulators/pcemu/patches/patch-ac
@@ -1,4 +1,4 @@
-$NetBSD: patch-ac,v 1.4 2004/09/16 17:16:18 minskim Exp $
+$NetBSD: patch-ac,v 1.5 2005/09/06 08:10:58 abs Exp $
--- mfs.c.orig 1994-06-22 09:24:51.000000000 -0500
+++ mfs.c
@@ -11,7 +11,7 @@ $NetBSD: patch-ac,v 1.4 2004/09/16 17:16:18 minskim Exp $
+#endif
-#ifdef SOLARIS
-+#if defined(SOLARIS) || (defined(__NetBSD__) && __NetBSD_Version__ >= 200040000)
++#if defined(SOLARIS) || (defined(__NetBSD__) && __NetBSD_Version__ >= 299000900)
#include <fcntl.h>
#include <sys/statvfs.h>
#endif
@@ -35,7 +35,7 @@ $NetBSD: patch-ac,v 1.4 2004/09/16 17:16:18 minskim Exp $
get_disk_space(char *cwd, int *free, int *total)
{
-#ifdef SOLARIS
-+#if defined(SOLARIS) || (defined(__NetBSD__) && __NetBSD_Version__ >= 200040000)
++#if defined(SOLARIS) || (defined(__NetBSD__) && __NetBSD_Version__ >= 299000900)
struct statvfs fsbuf;
if (statvfs(cwd, &fsbuf) >= 0)
#else