diff options
author | CismonX <admin@cismon.net> | 2024-06-21 04:12:29 +0800 |
---|---|---|
committer | Bernd Schubert <bernd.schubert@fastmail.fm> | 2024-06-25 07:16:49 +0200 |
commit | 0a62f5d76137b25f37b99caf726ceedbf094d60e (patch) | |
tree | 7561497d62bd00e0efdaaa39d2870cbf344bd9bf | |
parent | e0dda7019d4d06bad70f004e4a2aaeddf2ceb788 (diff) | |
download | libfuse-0a62f5d76137b25f37b99caf726ceedbf094d60e.tar.gz |
Do not build the hello_ll_uds example for *BSD
since there's no splice(2) support
-rw-r--r-- | example/meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/example/meson.build b/example/meson.build index e641543..300d0c7 100644 --- a/example/meson.build +++ b/example/meson.build @@ -1,10 +1,10 @@ examples = [ 'passthrough', 'passthrough_fh', - 'hello', 'hello_ll', 'hello_ll_uds', + 'hello', 'hello_ll', 'printcap', 'ioctl_client', 'poll_client', 'ioctl', 'cuse', 'cuse_client' ] if not platform.endswith('bsd') and platform != 'dragonfly' - examples += 'passthrough_ll' + examples += [ 'passthrough_ll', 'hello_ll_uds' ] # According to Conrad Meyer <cem@freebsd.org>, FreeBSD doesn't # support mounting files, This is enforced in vfs_domount_first() |