Commit 96bf31fa authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Hack to fix Windows build

Better patch welcome
parent dda048cf
...@@ -89,7 +89,6 @@ struct access_sys_t ...@@ -89,7 +89,6 @@ struct access_sys_t
bool b_pace_control; bool b_pace_control;
}; };
#if !defined (WIN32) && !defined (__OS2__)
static bool IsRemote (int fd) static bool IsRemote (int fd)
{ {
#if defined (HAVE_FSTATVFS) && defined (MNT_LOCAL) #if defined (HAVE_FSTATVFS) && defined (MNT_LOCAL)
...@@ -124,7 +123,6 @@ static bool IsRemote (int fd) ...@@ -124,7 +123,6 @@ static bool IsRemote (int fd)
#endif #endif
} }
#endif
#ifndef HAVE_POSIX_FADVISE #ifndef HAVE_POSIX_FADVISE
# define posix_fadvise(fd, off, len, adv) # define posix_fadvise(fd, off, len, adv)
...@@ -173,14 +171,6 @@ int Open( vlc_object_t *p_this ) ...@@ -173,14 +171,6 @@ int Open( vlc_object_t *p_this )
dialog_Fatal (p_access, _("File reading failed"), dialog_Fatal (p_access, _("File reading failed"),
_("VLC could not open the file \"%s\". (%m)"), path); _("VLC could not open the file \"%s\". (%m)"), path);
} }
#ifdef WIN32
wchar_t *wpath = ToWide (path);
if (wpath != NULL && PathIsNetworkPathW (wpath))
is_remote = true;
free (wpath);
# define IsRemote( fd ) ((void)fd, is_remote)
#endif
} }
if (fd == -1) if (fd == -1)
return VLC_EGENERIC; return VLC_EGENERIC;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment