From 10966a274002632f19d0673a60c42c6e2d6d33be Mon Sep 17 00:00:00 2001 From: Niels Sascha Reedijk Date: Sun, 17 Jun 2018 07:37:46 +0200 Subject: [PATCH] Haiku doesn't expose whether a FS is local or remote --- lib/Support/Unix/Path.inc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/Support/Unix/Path.inc b/lib/Support/Unix/Path.inc index 2ecb97316c8..4fe5bda223c 100644 --- a/lib/Support/Unix/Path.inc +++ b/lib/Support/Unix/Path.inc @@ -380,6 +380,9 @@ static bool is_local_impl(struct STATVFS &Vfs) { #elif defined(__CYGWIN__) // Cygwin doesn't expose this information; would need to use Win32 API. return false; +#elif defined(__HAIKU__) + // Haiku doesn't expose this information + return false; #elif defined(__sun) // statvfs::f_basetype contains a null-terminated FSType name of the mounted target StringRef fstype(Vfs.f_basetype); -- 2.16.4