[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v6 02/23] build-sys: drop needless warning pragmas for old pixman
From: |
marcandre . lureau |
Subject: |
[PATCH v6 02/23] build-sys: drop needless warning pragmas for old pixman |
Date: |
Wed, 25 Oct 2023 23:07:56 +0400 |
From: Marc-André Lureau <marcandre.lureau@redhat.com>
Since commit 236f282c1c7 ("configure: check for pixman-1 version"), QEMU
requires >= 0.21.8.
Suggested-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
---
include/ui/qemu-pixman.h | 4 ----
1 file changed, 4 deletions(-)
diff --git a/include/ui/qemu-pixman.h b/include/ui/qemu-pixman.h
index d37feb5e3c..4bfa8fae0c 100644
--- a/include/ui/qemu-pixman.h
+++ b/include/ui/qemu-pixman.h
@@ -7,11 +7,7 @@
#define QEMU_PIXMAN_H
#ifdef CONFIG_PIXMAN
-/* pixman-0.16.0 headers have a redundant declaration */
-#pragma GCC diagnostic push
-#pragma GCC diagnostic ignored "-Wredundant-decls"
#include <pixman.h>
-#pragma GCC diagnostic pop
#endif
/*
--
2.41.0
- [PATCH v6 00/23] Make Pixman an optional dependency, marcandre . lureau, 2023/10/25
- [PATCH v6 01/23] build-sys: add a "pixman" feature, marcandre . lureau, 2023/10/25
- [PATCH v6 03/23] ui: compile out some qemu-pixman functions when !PIXMAN, marcandre . lureau, 2023/10/25
- [PATCH v6 02/23] build-sys: drop needless warning pragmas for old pixman,
marcandre . lureau <=
- [PATCH v6 04/23] ui: add pixman-minimal.h, marcandre . lureau, 2023/10/25
- [PATCH v6 05/23] vl: drop needless -spice checks, marcandre . lureau, 2023/10/25
- [PATCH v6 06/23] qemu-options: define -vnc only #ifdef CONFIG_VNC, marcandre . lureau, 2023/10/25
- [PATCH v6 07/23] vl: simplify display_remote logic, marcandre . lureau, 2023/10/25
- [PATCH v6 11/23] qmp/hmp: disable screendump if PIXMAN is missing, marcandre . lureau, 2023/10/25
- [PATCH v6 09/23] ui/console: allow to override the default VC, marcandre . lureau, 2023/10/25