From 0a62f5d76137b25f37b99caf726ceedbf094d60e Mon Sep 17 00:00:00 2001 From: CismonX Date: Fri, 21 Jun 2024 04:12:29 +0800 Subject: [PATCH] Do not build the hello_ll_uds example for *BSD since there's no splice(2) support --- example/meson.build | 4 ++-- 1 file 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 , FreeBSD doesn't # support mounting files, This is enforced in vfs_domount_first() -- 2.30.2