diff mbox series

meson: add pixman dependency to chardev/baum module

Message ID 20200830204640.482214-1-sw@weilnetz.de
State New
Headers show
Series meson: add pixman dependency to chardev/baum module | expand

Commit Message

Stefan Weil Aug. 30, 2020, 8:46 p.m. UTC
Signed-off-by: Stefan Weil <sw@weilnetz.de>
---


Together with Paolo's patch (https://patchwork.kernel.org/patch/11745207/)
this fixed the build with --enable-modules for me.

Stefan


 chardev/meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Philippe Mathieu-Daudé Aug. 31, 2020, 3:48 p.m. UTC | #1
Le dim. 30 août 2020 22:47, Stefan Weil <sw@weilnetz.de> a écrit :

> Signed-off-by: Stefan Weil <sw@weilnetz.de>
>

Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>

---
>
>
> Together with Paolo's patch (https://patchwork.kernel.org/patch/11745207/)
> this fixed the build with --enable-modules for me.
>
> Stefan
>
>
>  chardev/meson.build | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/chardev/meson.build b/chardev/meson.build
> index 7726837e34..27a9a28f4c 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
>
> --
> 2.28.0
>
>
>
diff mbox series

Patch

diff --git a/chardev/meson.build b/chardev/meson.build
index 7726837e34..27a9a28f4c 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