Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
$NetBSD: patch-ae,v 1.11 2007/08/14 19:59:18 veego Exp $
--- dialects/n+obsd/dmnt.c.orig 2005-08-08 21:53:31.000000000 +0200
+++ dialects/n+obsd/dmnt.c 2007-08-11 14:43:05.000000000 +0200
@@ -45,6 +45,15 @@
#include <sys/statvfs.h>
#endif /* defined(NETBSDV) && defined(HASSTATVFS) */
+#if defined(NETBSDV)
+#include <sys/param.h>
+
+#if __NetBSD_Version__ >= 399002400
+#include <sys/types.h>
+#include <sys/mount.h>
+#endif
+#endif
+
#include "lsof.h"
@@ -94,7 +103,12 @@
for (; n; n--, mb++) {
if (mb->f_fstypename[0] == '\0')
continue;
+#if defined(NETBSDV) && __NetBSD_Version__ >= 499002500
+ /* MFSNAMELEN was removed from the kernel source after 4.99.24 */
+ mb->f_fstypename[sizeof(mb->f_fstypename) - 1] = '\0';
+#else
mb->f_fstypename[MFSNAMELEN - 1] = '\0';
+#endif
/*
* Interpolate a possible symbolic directory link.
*/