blob: caa667f94958ad9464816d4cd327b140c95fdae3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$NetBSD: patch-ap,v 1.2 2004/05/28 19:20:39 jmmv Exp $
--- Input/cdaudio/cdaudio.c.orig 2003-12-24 14:27:54.000000000 +0100
+++ Input/cdaudio/cdaudio.c
@@ -553,7 +553,11 @@ extern gboolean is_mounted(const char *d
FILE *mounts;
struct mntent *mnt;
#elif defined(HAVE_GETMNTINFO)
+#if defined(__NetBSD__) && defined(HAVE_STATVFS)
+ struct statvfs *fsp;
+#else
struct statfs *fsp;
+#endif
int entries;
#endif
|