pkgsrc-wip/gambas2/patches/patch-ab
Roland Illig e7f578ffaa Added the development version of Gambas, a graphical development
environment similar to Visual Basic.

So far, it compiles fine on NetBSD 3.0/i386, but the installation fails.
2006-08-29 12:49:54 +00:00

14 lines
374 B
Text

$NetBSD: patch-ab,v 1.1 2006/08/29 12:49:54 rillig Exp $
--- main/share/gb_file_temp.h.orig 2006-01-20 12:08:54.000000000 +0100
+++ main/share/gb_file_temp.h 2006-04-20 20:41:11.000000000 +0200
@@ -45,6 +45,9 @@
#ifdef OS_FREEBSD
#include <sys/mount.h>
+#elif defined(OS_NETBSD)
+#include <sys/statvfs.h>
+#define statfs statvfs
#else
#include <sys/statfs.h>
#endif