Message ID | 20200830204640.482214-1-sw@weilnetz.de (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | meson: add pixman dependency to chardev/baum module | expand |
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 --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
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(-)