diff options
author | abs <abs> | 2005-09-06 08:10:57 +0000 |
---|---|---|
committer | abs <abs> | 2005-09-06 08:10:57 +0000 |
commit | 38b9aa514440e8e7764a5748e4e3297ad51f34fd (patch) | |
tree | 93bf2742fc4e1bf90527c6e25c8e73ae1da1c960 /x11/filerunner | |
parent | 18fff7191848c82996a788e4a2974e226ebb0d13 (diff) | |
download | pkgsrc-38b9aa514440e8e7764a5748e4e3297ad51f34fd.tar.gz |
Fix NetBSD statvfs check to be >= 299000900 not >= 200040000
No pkgrevision bumps needed.
Diffstat (limited to 'x11/filerunner')
-rw-r--r-- | x11/filerunner/distinfo | 4 | ||||
-rw-r--r-- | x11/filerunner/patches/patch-ab | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/x11/filerunner/distinfo b/x11/filerunner/distinfo index d7ef6d62038..f8efd33ef1a 100644 --- a/x11/filerunner/distinfo +++ b/x11/filerunner/distinfo @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.5 2005/02/23 17:36:10 wiz Exp $ +$NetBSD: distinfo,v 1.6 2005/09/06 08:11:00 abs Exp $ SHA1 (FileRunner-2.5.1.tar.gz) = ef607b3229491c1a6608fac67ce584d01a50c69d RMD160 (FileRunner-2.5.1.tar.gz) = 94c0dd841aac617c2b5632975e4c7fa1fe149c11 Size (FileRunner-2.5.1.tar.gz) = 122795 bytes SHA1 (patch-aa) = 3e929372fee6620c23022e5eaecd33830d9151f7 -SHA1 (patch-ab) = 88076263693fc7e379adccd6dac4c17e66519d46 +SHA1 (patch-ab) = 58bc890c640a9b58589e9fcdef7a9201f84f6e53 SHA1 (patch-ac) = fdef8612ff1ea187fbe26cb203f8f3f006032ef3 SHA1 (patch-ad) = cf7999d58ec441b03a3baa5d8097b26781bd00eb diff --git a/x11/filerunner/patches/patch-ab b/x11/filerunner/patches/patch-ab index 9163dc056f1..ef8edc8f2cd 100644 --- a/x11/filerunner/patches/patch-ab +++ b/x11/filerunner/patches/patch-ab @@ -1,4 +1,4 @@ -$NetBSD: patch-ab,v 1.4 2004/08/15 03:25:24 minskim Exp $ +$NetBSD: patch-ab,v 1.5 2005/09/06 08:11:00 abs Exp $ --- ext.c.orig 1999-12-30 11:21:49.000000000 -0600 +++ ext.c @@ -6,7 +6,7 @@ $NetBSD: patch-ab,v 1.4 2004/08/15 03:25:24 minskim Exp $ int argc, char* argv[]) { int i; -+#if defined(__NetBSD__) && (__NetBSD_Version__ >= 200040000) /* NetBSD 2.0D */ ++#if defined(__NetBSD__) && (__NetBSD_Version__ >= 299000900) /* NetBSD 2.99.9 */ + struct statvfs stat; +#else struct statfs stat; |