Do not build the hello_ll_uds example for *BSD
authorCismonX <admin@cismon.net>
Thu, 20 Jun 2024 20:12:29 +0000 (04:12 +0800)
committerBernd Schubert <bernd.schubert@fastmail.fm>
Tue, 25 Jun 2024 05:16:49 +0000 (07:16 +0200)
since there's no splice(2) support

example/meson.build

index e6415438681289a417921db37be9599defef5bb2..300d0c7ce91f7e13ee1bc374952c64756939c200 100644 (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()