summaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorPaolo Bonzini2020-09-01 12:15:41 +0200
committerPaolo Bonzini2020-09-08 11:43:16 +0200
commitfeabc71dfa5807427b6b1a0f8db00d994399210d (patch)
treebf3eb8cfc2cd47bfba0e5490aea2c20595659973 /ui
parentmeson: get opengl compilation flags from OPENGL_CFLAGS (diff)
downloadqemu-feabc71dfa5807427b6b1a0f8db00d994399210d.tar.gz
qemu-feabc71dfa5807427b6b1a0f8db00d994399210d.tar.xz
qemu-feabc71dfa5807427b6b1a0f8db00d994399210d.zip
configure: do not include dependency flags in QEMU_CFLAGS and LIBS
All Meson executables should specify their dependencies explicitly, either directly or indirectly via declare_dependency. Makefiles instead did not propagate dependencies correctly from static libraries, for example. Therefore, flags for dependencies need not be included in QEMU_CFLAGS. LIBS is not used at all, so drop that one as well. In a few cases the dependencies were not yet specified, so add them. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'ui')
-rw-r--r--ui/meson.build3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/meson.build b/ui/meson.build
index 82f60756d9..dd6c110136 100644
--- a/ui/meson.build
+++ b/ui/meson.build
@@ -1,5 +1,5 @@
softmmu_ss.add(pixman)
-specific_ss.add(pixman) # for the include path
+specific_ss.add(when: ['CONFIG_SOFTMMU'], if_true: pixman) # for the include path
softmmu_ss.add(files(
'console.c',
@@ -35,6 +35,7 @@ softmmu_ss.add_all(when: vnc, if_true: vnc_ss)
softmmu_ss.add(when: vnc, if_false: files('vnc-stubs.c'))
softmmu_ss.add(when: [opengl, 'CONFIG_OPENGL'], if_true: files('shader.c', 'console-gl.c', 'egl-helpers.c', 'egl-context.c'))
softmmu_ss.add(when: [opengl, 'CONFIG_OPENGL_DMABUF'], if_true: files('egl-headless.c'))
+specific_ss.add(when: ['CONFIG_SOFTMMU'], if_true: opengl)
ui_modules = {}