aboutsummaryrefslogtreecommitdiff
path: root/ui/meson.build
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@redhat.com>2021-08-23 12:04:54 +0200
committerGerd Hoffmann <kraxel@redhat.com>2021-08-31 14:31:43 +0200
commitb956577af1b88e950bf2aa5f77be6c8aee04e879 (patch)
tree15442c98c1e10ffedf5e409586aa8990d75d8b63 /ui/meson.build
parentcdb1fba0844bb1db71f67d35700a80838d185bbd (diff)
downloadqemu-b956577af1b88e950bf2aa5f77be6c8aee04e879.zip
qemu-b956577af1b88e950bf2aa5f77be6c8aee04e879.tar.gz
qemu-b956577af1b88e950bf2aa5f77be6c8aee04e879.tar.bz2
ui/console: Restrict udmabuf_fd() to Linux
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20210823100454.615816-3-philmd@redhat.com> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'ui/meson.build')
-rw-r--r--ui/meson.build6
1 files changed, 4 insertions, 2 deletions
diff --git a/ui/meson.build b/ui/meson.build
index a3a187d..7d25c1b 100644
--- a/ui/meson.build
+++ b/ui/meson.build
@@ -12,12 +12,14 @@ softmmu_ss.add(files(
'kbd-state.c',
'keymaps.c',
'qemu-pixman.c',
- 'udmabuf.c',
))
softmmu_ss.add([spice_headers, files('spice-module.c')])
softmmu_ss.add(when: spice_protocol, if_true: files('vdagent.c'))
-softmmu_ss.add(when: 'CONFIG_LINUX', if_true: files('input-linux.c'))
+softmmu_ss.add(when: 'CONFIG_LINUX', if_true: files(
+ 'input-linux.c',
+ 'udmabuf.c',
+))
softmmu_ss.add(when: cocoa, if_true: files('cocoa.m'))
vnc_ss = ss.source_set()