94 lines
2.2 KiB
Diff
94 lines
2.2 KiB
Diff
From d4213fa4fe6bdd44ba652f5407cefc83def2b14e Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= <jskarvad@redhat.com>
|
|
Date: Tue, 6 Feb 2024 13:57:53 +0100
|
|
Subject: [PATCH] Fixed compilation with gcc-14
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Signed-off-by: Jaroslav Škarvada <jskarvad@redhat.com>
|
|
---
|
|
plugins/commands.c | 1 +
|
|
plugins/cube.c | 1 +
|
|
plugins/matecompat.c | 1 +
|
|
plugins/obs.c | 1 +
|
|
src/core.c | 1 +
|
|
src/metadata.c | 1 +
|
|
6 files changed, 6 insertions(+)
|
|
|
|
diff --git a/plugins/commands.c b/plugins/commands.c
|
|
index 97ad06e1..cb165b48 100644
|
|
--- a/plugins/commands.c
|
|
+++ b/plugins/commands.c
|
|
@@ -23,6 +23,7 @@
|
|
* Author: Danny Baumann <dannybaumann@web.de>
|
|
*/
|
|
|
|
+#include <stdlib.h>
|
|
#include <compiz-core.h>
|
|
|
|
static CompMetadata commandsMetadata;
|
|
diff --git a/plugins/cube.c b/plugins/cube.c
|
|
index 5a77091d..eeb86fbe 100644
|
|
--- a/plugins/cube.c
|
|
+++ b/plugins/cube.c
|
|
@@ -24,6 +24,7 @@
|
|
* Mirco Müller <macslow@bangang.de> (Skydome support)
|
|
*/
|
|
|
|
+#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <math.h>
|
|
|
|
diff --git a/plugins/matecompat.c b/plugins/matecompat.c
|
|
index 6c631627..9b2fe690 100644
|
|
--- a/plugins/matecompat.c
|
|
+++ b/plugins/matecompat.c
|
|
@@ -23,6 +23,7 @@
|
|
* Author: Danny Baumann <dannybaumann@web.de>
|
|
*/
|
|
|
|
+#include <stdlib.h>
|
|
#include <compiz-core.h>
|
|
|
|
static CompMetadata mateMetadata;
|
|
diff --git a/plugins/obs.c b/plugins/obs.c
|
|
index 0f5b9d06..009bf365 100644
|
|
--- a/plugins/obs.c
|
|
+++ b/plugins/obs.c
|
|
@@ -23,6 +23,7 @@
|
|
* Author: Danny Baumann <dannybaumann@web.de>
|
|
*/
|
|
|
|
+#include <stdlib.h>
|
|
#include <compiz-core.h>
|
|
|
|
static CompMetadata obsMetadata;
|
|
diff --git a/src/core.c b/src/core.c
|
|
index 6b69a285..d10d6727 100644
|
|
--- a/src/core.c
|
|
+++ b/src/core.c
|
|
@@ -23,6 +23,7 @@
|
|
* Author: David Reveman <davidr@novell.com>
|
|
*/
|
|
|
|
+#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include <compiz-core.h>
|
|
diff --git a/src/metadata.c b/src/metadata.c
|
|
index 559734aa..1d224231 100644
|
|
--- a/src/metadata.c
|
|
+++ b/src/metadata.c
|
|
@@ -25,6 +25,7 @@
|
|
* David Reveman <davidr@novell.com>
|
|
*/
|
|
|
|
+#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <libxml/tree.h>
|
|
#include <libxml/xpath.h>
|
|
--
|
|
GitLab
|
|
|