[Support] Build fix for Haiku when checking for a local filesystem
authorTim Northover <tnorthover@apple.com>
Wed, 18 Jul 2018 13:42:18 +0000 (13:42 +0000)
committerTim Northover <tnorthover@apple.com>
Wed, 18 Jul 2018 13:42:18 +0000 (13:42 +0000)
Haiku does not expose information about local versus remote mounts, so just
return false, like Cygwin.

Patch by Niels Sascha Reedijk.

llvm-svn: 337389

llvm/lib/Support/Unix/Path.inc

index b8fea5b..7ad57d8 100644 (file)
@@ -371,6 +371,9 @@ static bool is_local_impl(struct STATVFS &Vfs) {
 #elif defined(__Fuchsia__)
   // Fuchsia doesn't yet support remote filesystem mounts.
   return true;
+#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);