From: CismonX Date: Thu, 20 Jun 2024 20:12:29 +0000 (+0800) Subject: Do not build the hello_ll_uds example for *BSD X-Git-Tag: fuse-3.17.1-rc0~104 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=0a62f5d76137b25f37b99caf726ceedbf094d60e;p=qemu-gpiodev%2Flibfuse.git Do not build the hello_ll_uds example for *BSD since there's no splice(2) support --- 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 , FreeBSD doesn't # support mounting files, This is enforced in vfs_domount_first()