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 /devel/libinstaller/patches | |
parent | 18fff7191848c82996a788e4a2974e226ebb0d13 (diff) | |
download | pkgsrc-38b9aa514440e8e7764a5748e4e3297ad51f34fd.tar.gz |
Fix NetBSD statvfs check to be >= 299000900 not >= 200040000
No pkgrevision bumps needed.
Diffstat (limited to 'devel/libinstaller/patches')
-rw-r--r-- | devel/libinstaller/patches/patch-aa | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/libinstaller/patches/patch-aa b/devel/libinstaller/patches/patch-aa index 4517e06636d..ac3113f0b46 100644 --- a/devel/libinstaller/patches/patch-aa +++ b/devel/libinstaller/patches/patch-aa @@ -1,4 +1,4 @@ -$NetBSD: patch-aa,v 1.1.1.1 2005/02/09 05:44:18 xtraeme Exp $ +$NetBSD: patch-aa,v 1.2 2005/09/06 08:10:57 abs Exp $ --- mount.c.orig 2005-02-09 04:51:24.000000000 +0100 +++ mount.c 2005-02-09 04:52:38.000000000 +0100 @@ -6,7 +6,7 @@ $NetBSD: patch-aa,v 1.1.1.1 2005/02/09 05:44:18 xtraeme Exp $ #include "commands.h" #include "functions.h" -+#if (__NetBSD_Version__ >= 200040000) ++#if (__NetBSD_Version__ >= 299000900) +#define STATFS statvfs +#else +#define STATFS statfs |