Do not build the hello_ll_uds example for *BSD

since there's no splice(2) support
This commit is contained in:
CismonX 2024-06-21 04:12:29 +08:00 committed by Bernd Schubert
parent e0dda7019d
commit 0a62f5d761

View File

@ -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()