mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
Don't try to find nfs mounts on Windows
This should fix the build there. https://bugzilla.gnome.org/show_bug.cgi?id=592211
This commit is contained in:
parent
477490786b
commit
59372663f2
@ -2408,6 +2408,16 @@ g_local_file_move (GFile *source,
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
#ifdef G_OS_WIN32
|
||||
|
||||
static gboolean
|
||||
is_remote (const gchar *filename)
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
#else
|
||||
|
||||
static gboolean
|
||||
is_remote_fs (const gchar *filename)
|
||||
{
|
||||
@ -2476,6 +2486,7 @@ is_remote (const gchar *filename)
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
#endif /* !G_OS_WIN32 */
|
||||
|
||||
static GFileMonitor*
|
||||
g_local_file_monitor_dir (GFile *file,
|
||||
|
Loading…
Reference in New Issue
Block a user