aboutsummaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
authorBernd Schubert <bernd.schubert@fastmail.fm>2024-02-10 14:46:52 +0100
committerBernd Schubert <bernd.schubert@fastmail.fm>2024-02-26 22:11:19 +0100
commit6bda4091d4cc67e8f24cd7cb8dc93d076e115e27 (patch)
treea84de33387579eba9a8c9bf3a0427eada9f84824 /meson.build
parent420a6c3c5da2cbcc2276be7fb767ecc5a884cac7 (diff)
downloadlibfuse-6bda4091d4cc67e8f24cd7cb8dc93d076e115e27.tar.gz
meson: Point OSX (darwin) to https://www.fuse-t.org/
www.fuse-t.org is a more recent fuse extension for OSX based on NFS.
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build3
1 files changed, 2 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 042c19c..7d62dcf 100644
--- a/meson.build
+++ b/meson.build
@@ -10,7 +10,8 @@ project('libfuse3', ['c'], version: '3.16.2',
platform = host_machine.system()
if platform == 'darwin'
error('libfuse does not support OS-X.\n' +
- 'Take a look at http://osxfuse.github.io/ instead')
+ 'Take a look at http://osxfuse.github.io/ or the more recent\n' +
+ 'https://www.fuse-t.org/ instead')
elif platform == 'cygwin' or platform == 'windows'
error('libfuse does not support Windows.\n' +
'Take a look at http://www.secfs.net/winfsp/ instead')