From: Marc-André Lureau Date: Wed, 30 Aug 2023 09:38:34 +0000 (+0400) Subject: ui/vnc: VNC requires PIXMAN X-Git-Tag: v8.2.0-rc0~20^2~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=89fd3eab52f4dcdd7fcbb6e30a78ad0c7f8b6e80;p=thirdparty%2Fqemu.git ui/vnc: VNC requires PIXMAN Signed-off-by: Marc-André Lureau Reviewed-by: Thomas Huth --- diff --git a/meson.build b/meson.build index 505cc591b9f..3e60f42f948 100644 --- a/meson.build +++ b/meson.build @@ -1560,7 +1560,11 @@ endif vnc = not_found jpeg = not_found sasl = not_found -if get_option('vnc').allowed() and have_system +if get_option('vnc') \ + .disable_auto_if(not have_system) \ + .require(pixman.found(), + error_message: 'cannot enable VNC if pixman is not available') \ + .allowed() vnc = declare_dependency() # dummy dependency jpeg = dependency('libjpeg', required: get_option('vnc_jpeg'), method: 'pkg-config') diff --git a/ui/meson.build b/ui/meson.build index 7c996139507..19723188b55 100644 --- a/ui/meson.build +++ b/ui/meson.build @@ -46,7 +46,7 @@ vnc_ss.add(files( )) vnc_ss.add(zlib, jpeg, gnutls) vnc_ss.add(when: sasl, if_true: files('vnc-auth-sasl.c')) -system_ss.add_all(when: vnc, if_true: vnc_ss) +system_ss.add_all(when: [vnc, pixman], if_true: vnc_ss) system_ss.add(when: vnc, if_false: files('vnc-stubs.c')) ui_modules = {}