Import of pkgsrc-2016Q3

This commit is contained in:
2016-10-14 07:49:11 +02:00
committed by Lionel Sambuc
parent 9d819b6d54
commit 1242aa1e36
35952 changed files with 949749 additions and 377083 deletions

View File

@@ -0,0 +1,18 @@
$NetBSD: patch-aa,v 1.1 2015/12/12 15:31:26 kamil Exp $
Include sys/statvfs.h instead of sys/vfs.h on NetBSD.
--- src/gui_main.c.orig 2005-12-27 09:29:51.000000000 -0500
+++ src/gui_main.c
@@ -11,7 +11,11 @@
# include <config.h>
#endif
+#if defined(__NetBSD__)
+#include <sys/statvfs.h>
+#else
#include <sys/vfs.h>
+#endif
#include <stdlib.h>
#include <math.h>
#include <string.h>