From: Tracy Di Marco White Date: Sun, 11 Dec 2005 18:57:15 +0000 (+0000) Subject: netbsd-statvfs-20051211 X-Git-Tag: openafs-devel-1_5_0~165 X-Git-Url: https://git.openafs.org/?p=openafs.git;a=commitdiff_plain;h=cd6e2b99298bbb12d09b92b6b86de7f811f4e803 netbsd-statvfs-20051211 FIXES 22905 NetBSD 2.1 doesn't have statvfs, but the version numbering scheme changed so the test was getting this wrong. --- diff --git a/src/config/param.nbsd21.h b/src/config/param.nbsd21.h index 3bc7f39..d1cc9f4 100644 --- a/src/config/param.nbsd21.h +++ b/src/config/param.nbsd21.h @@ -29,7 +29,7 @@ #define AFS_HAVE_FFS 1 /* Use system's ffs. */ #if !defined(ASSEMBLER) && !defined(__LANGUAGE_ASSEMBLY__) && !defined(IGNORE_STDS_H) -#if __NetBSD_Version__ >= 200040000 +#if __NetBSD_Version__ >= 299000900 #define AFS_HAVE_STATVFS 1 /* System supports statvfs */ #else #define AFS_HAVE_STATVFS 0 /* System doesn't supports statvfs */