aboutsummaryrefslogtreecommitdiff
path: root/example
diff options
context:
space:
mode:
Diffstat (limited to 'example')
-rw-r--r--example/meson.build14
1 files changed, 8 insertions, 6 deletions
diff --git a/example/meson.build b/example/meson.build
index de2de42..8440e00 100644
--- a/example/meson.build
+++ b/example/meson.build
@@ -1,13 +1,15 @@
-# Attention, emacs, please use -*- mode: python -*-
-# (even though this isn't actually Python code)
-
examples = [ 'passthrough', 'passthrough_fh',
- 'null', 'hello', 'hello_ll', 'printcap',
- 'ioctl', 'ioctl_client', 'poll_client',
+ 'hello', 'hello_ll', 'printcap',
+ 'ioctl_client', 'poll_client',
'cuse', 'cuse_client' ]
if not platform.endswith('bsd')
- examples += 'passthrough_ll'
+ examples += 'passthrough_ll'
+
+ # Is this really not supported? We should check with
+ # the FreeBSD guys, maybe we're just doing something
+ # wrong.
+ examples += [ 'null', 'ioctl' ]
endif
threaded_examples = [ 'notify_inval_inode',