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 /parallel/mpi-ch/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 'parallel/mpi-ch/patches')
-rw-r--r-- | parallel/mpi-ch/patches/patch-ca | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/parallel/mpi-ch/patches/patch-ca b/parallel/mpi-ch/patches/patch-ca index 24c2c3c7b0f..c8bed7bde39 100644 --- a/parallel/mpi-ch/patches/patch-ca +++ b/parallel/mpi-ch/patches/patch-ca @@ -1,4 +1,4 @@ -$NetBSD: patch-ca,v 1.2 2005/03/03 12:01:30 garbled Exp $ +$NetBSD: patch-ca,v 1.3 2005/09/06 08:10:59 abs Exp $ --- romio/adio/common/ad_fstype.c.orig 2003-09-04 13:24:44.000000000 -0700 +++ romio/adio/common/ad_fstype.c 2004-10-15 09:54:55.000000000 -0700 @@ -11,7 +11,15 @@ @@ -8,7 +8,7 @@ $NetBSD: patch-ca,v 1.2 2005/03/03 12:01:30 garbled Exp $ -#if (defined(HPUX) || defined(SPPUX) || defined(IRIX) || defined(SOLARIS) || defined(AIX) || defined(DEC) || defined(CRAY)) +#ifdef __NetBSD__ +#include <sys/param.h> -+#if __NetBSD_Version__ >= 200040000 ++#if __NetBSD_Version__ >= 299000900 +#define NETBSD_STATVFS +#define f_basetype f_fstypename +#endif |