--- src/nautilus-file-utilities.c.orig 2026-04-12 08:10:06.000000000 +0800 +++ src/nautilus-file-utilities.c 2026-05-07 14:34:28.000000000 +0800 @@ -41,7 +41,9 @@ #include #include #include +#ifdef __linux__ #include +#endif #define NAUTILUS_USER_DIRECTORY_NAME "nautilus" #define DEFAULT_NAUTILUS_DIRECTORY_MODE (0755) @@ -1160,7 +1162,7 @@ nautilus_location_is_autofs_mountpoint (GFile *location) { g_return_val_if_fail (G_IS_FILE (location), FALSE); - +#ifdef __linux__ g_autofree char *path = g_file_get_path (location); struct statfs buf; gint fd; @@ -1185,4 +1187,7 @@ close (fd); return (buf.f_type == AUTOFS_SUPER_MAGIC); +#else + return FALSE; +#endif }