1c54289746
installing of the backend daemon as kmem, but I don't want to make it the default, since almost all operations work without it.
34 lines
1.3 KiB
Text
34 lines
1.3 KiB
Text
$NetBSD: patch-ac,v 1.2 2006/02/28 23:48:11 joerg Exp $
|
|
|
|
--- sysdeps/common/mountlist.c.orig 2003-10-20 09:29:03.000000000 -0500
|
|
+++ sysdeps/common/mountlist.c
|
|
@@ -106,7 +106,7 @@ static struct mount_entry *read_filesyst
|
|
#endif
|
|
|
|
|
|
-#if defined (MOUNTED_GETMNTINFO) && !defined (__NetBSD__) && !defined (__OpenBSD__) && !defined(__FreeBSD__)
|
|
+#if defined (MOUNTED_GETMNTINFO) && !defined (__NetBSD__) && !defined (__OpenBSD__) && !defined(__FreeBSD__) && !defined(__DragonFly__)
|
|
static const char *
|
|
fstype_to_string (short t)
|
|
{
|
|
@@ -298,7 +298,11 @@ read_filesystem_list (void)
|
|
|
|
#ifdef MOUNTED_GETMNTINFO /* 4.4BSD. */
|
|
{
|
|
+#if defined(STAT_STATVFS) && !defined(__DragonFly__)
|
|
+ struct statvfs *fsp;
|
|
+#else
|
|
struct statfs *fsp;
|
|
+#endif
|
|
int entries;
|
|
|
|
entries = getmntinfo (&fsp, MNT_NOWAIT);
|
|
@@ -309,7 +313,7 @@ read_filesystem_list (void)
|
|
me = (struct mount_entry *) g_malloc (sizeof (struct mount_entry));
|
|
me->me_devname = g_strdup (fsp->f_mntfromname);
|
|
me->me_mountdir = g_strdup (fsp->f_mntonname);
|
|
-#if defined(__NetBSD__) || defined(__OpenBSD__) || defined(__FreeBSD__)
|
|
+#if defined(__NetBSD__) || defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__DragonFly__)
|
|
me->me_type = g_strdup (fsp->f_fstypename);
|
|
#else
|
|
me->me_type = g_strdup (fstype_to_string (fsp->f_type));
|