[PATCH] ui/dbus: fix win32 compilation when !opengl

marcandre.lureau@redhat.com posted 1 patch 9 months, 1 week ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20230725112540.53284-1-marcandre.lureau@redhat.com
Maintainers: "Marc-André Lureau" <marcandre.lureau@redhat.com>, Gerd Hoffmann <kraxel@redhat.com>
ui/dbus-listener.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
[PATCH] ui/dbus: fix win32 compilation when !opengl
Posted by marcandre.lureau@redhat.com 9 months, 1 week ago
From: Marc-Andre Lureau <marcandre.lureau@redhat.com>

Fixes: https://gitlab.com/qemu-project/qemu/-/issues/1782

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
---
 ui/dbus-listener.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/ui/dbus-listener.c b/ui/dbus-listener.c
index 68ff343799..02fc6ae239 100644
--- a/ui/dbus-listener.c
+++ b/ui/dbus-listener.c
@@ -338,6 +338,7 @@ static bool dbus_scanout_map(DBusDisplayListener *ddl)
     return true;
 }
 
+#ifdef CONFIG_OPENGL
 static bool
 dbus_scanout_share_d3d_texture(
     DBusDisplayListener *ddl,
@@ -399,7 +400,8 @@ dbus_scanout_share_d3d_texture(
 
     return true;
 }
-#endif
+#endif /* CONFIG_OPENGL */
+#endif /* WIN32 */
 
 #ifdef CONFIG_OPENGL
 static void dbus_scanout_texture(DisplayChangeListener *dcl,
-- 
2.41.0


Re: [PATCH] ui/dbus: fix win32 compilation when !opengl
Posted by Philippe Mathieu-Daudé 9 months ago
On 25/7/23 13:25, marcandre.lureau@redhat.com wrote:
> From: Marc-Andre Lureau <marcandre.lureau@redhat.com>
> 
> Fixes: https://gitlab.com/qemu-project/qemu/-/issues/1782
> 
> Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
> ---
>   ui/dbus-listener.c | 4 +++-
>   1 file changed, 3 insertions(+), 1 deletion(-)

Thanks, queued via misc-fixes.

Re: [PATCH] ui/dbus: fix win32 compilation when !opengl
Posted by Philippe Mathieu-Daudé 9 months, 1 week ago
On 25/7/23 13:25, marcandre.lureau@redhat.com wrote:
> From: Marc-Andre Lureau <marcandre.lureau@redhat.com>
> 
> Fixes: https://gitlab.com/qemu-project/qemu/-/issues/1782
> 
> Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
> ---
>   ui/dbus-listener.c | 4 +++-
>   1 file changed, 3 insertions(+), 1 deletion(-)

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>