From: Stefan Weil Date: Sun, 30 Aug 2020 20:46:40 +0000 (+0200) Subject: meson: add pixman dependency to chardev/baum module X-Git-Tag: v5.2.0-rc0~144^2~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a03e2cd749f1029f21c3ddc8913b0ffa8acd8cb8;p=thirdparty%2Fqemu.git meson: add pixman dependency to chardev/baum module Signed-off-by: Stefan Weil Reviewed-by: Philippe Mathieu-Daudé Message-Id: <20200830204640.482214-1-sw@weilnetz.de> Signed-off-by: Paolo Bonzini --- diff --git a/chardev/meson.build b/chardev/meson.build index 7726837e344..27a9a28f4c8 100644 --- a/chardev/meson.build +++ b/chardev/meson.build @@ -38,7 +38,7 @@ chardev_modules = {} if config_host.has_key('CONFIG_BRLAPI') and sdl.found() module_ss = ss.source_set() - module_ss.add(when: [sdl, brlapi], if_true: files('baum.c')) + module_ss.add(when: [sdl, brlapi], if_true: [files('baum.c'), pixman]) chardev_modules += { 'baum': module_ss } endif