From 72ab7172b8de822215cea644b148df5eacb8aa0a Mon Sep 17 00:00:00 2001 From: Tomohiro Kusumi Date: Thu, 29 Mar 2018 04:32:59 +0900 Subject: Fix build error on DragonFlyBSD (sync with other *BSD) (#240) DragonFlyBSD has no "bsd" in uname, so add 'dragonfly' to conditionals. -- e.g. uname(1) in DragonFlyBSD [root@ ~]# uname DragonFly [root@ ~]# python -c "import sys; print(sys.platform)" dragonfly5 --- example/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'example') diff --git a/example/meson.build b/example/meson.build index 673982c..7349977 100644 --- a/example/meson.build +++ b/example/meson.build @@ -3,7 +3,7 @@ examples = [ 'passthrough', 'passthrough_fh', 'ioctl_client', 'poll_client', 'ioctl', 'cuse', 'cuse_client' ] -if not platform.endswith('bsd') +if not platform.endswith('bsd') and platform != 'dragonfly' examples += 'passthrough_ll' # According to Conrad Meyer , FreeBSD doesn't -- cgit v1.2.3