From 6bda4091d4cc67e8f24cd7cb8dc93d076e115e27 Mon Sep 17 00:00:00 2001 From: Bernd Schubert Date: Sat, 10 Feb 2024 14:46:52 +0100 Subject: [PATCH] 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. --- meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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') -- 2.30.2