Re: [PATCH v1] Make png parameter to ui/meson.build independent of vnc

2022-05-11 Thread Kshitij Suri
Thank you! Grateful for it. Regards, Kshitij Suri On 11/05/22 1:16 pm, Paolo Bonzini wrote: +if png.found() + softmmu_ss.add(png) +endif Queued, thanks. However, this can be just "softmmu_ss.add(png) without the if, so I adjusted that. Paolo

Re: [PATCH v1] Make png parameter to ui/meson.build independent of vnc

2022-05-11 Thread Paolo Bonzini
> +if png.found() > + softmmu_ss.add(png) > +endif Queued, thanks. However, this can be just "softmmu_ss.add(png) without the if, so I adjusted that. Paolo

[PATCH v1] Make png parameter to ui/meson.build independent of vnc

2022-05-10 Thread Kshitij Suri
Currently png support is dependent on vnc for linking object file to libpng. This commit makes the parameter independent of vnc as it breaks system emulator with --disable-vnc unless --disable-png is added. Fixes: 9a0a119a382867dc9a5c2ae9348003bf79d84af2 Signed-off-by: Kshitij Suri --- ui/meson.