diff options
author | abs <abs> | 2005-09-06 08:10:57 +0000 |
---|---|---|
committer | abs <abs> | 2005-09-06 08:10:57 +0000 |
commit | 19e4f221030464384d763aab51471af26a36394b (patch) | |
tree | 93bf2742fc4e1bf90527c6e25c8e73ae1da1c960 /misc/kdeutils3/patches | |
parent | 302db5a0e0e3ed50cabb4221a92ce55453831c14 (diff) | |
download | pkgsrc-19e4f221030464384d763aab51471af26a36394b.tar.gz |
Fix NetBSD statvfs check to be >= 299000900 not >= 200040000
No pkgrevision bumps needed.
Diffstat (limited to 'misc/kdeutils3/patches')
-rw-r--r-- | misc/kdeutils3/patches/patch-ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/kdeutils3/patches/patch-ac b/misc/kdeutils3/patches/patch-ac index 1c4af3e1e56..5fcc7d95ff2 100644 --- a/misc/kdeutils3/patches/patch-ac +++ b/misc/kdeutils3/patches/patch-ac @@ -1,4 +1,4 @@ -$NetBSD: patch-ac,v 1.5 2004/05/04 13:52:11 mrg Exp $ +$NetBSD: patch-ac,v 1.6 2005/09/06 08:10:58 abs Exp $ --- ark/arkutils.cpp.orig 2003-11-30 20:50:36.000000000 +1100 +++ ark/arkutils.cpp 2004-05-04 22:57:13.000000000 +1000 @@ -7,7 +7,7 @@ $NetBSD: patch-ac,v 1.5 2004/05/04 13:52:11 mrg Exp $ #ifdef BSD4_4 #include <sys/mount.h> +#ifdef __NetBSD__ -+#if __NetBSD_Version__ >= 200040000 /* 2.0D */ ++#if __NetBSD_Version__ >= 299000900 /* 2.99.9 */ +#include <sys/statvfs.h> +#define STATFS statvfs +#endif |