Notification time stamped 2023-01-31 22:57:01 UTC
From 695145d477166c2da6bd60a0062237e5a82b228f Mon Sep 17 00:00:00 2001 From: Marc Deop i Argemí marcdeop@fedoraproject.org Date: Jan 31 2023 22:56:52 +0000 Subject: fix: add patch to fix compilation with gcc 13
---
diff --git a/5c2d4ff3092155d24164c24a2a9a610325ff7174.patch b/5c2d4ff3092155d24164c24a2a9a610325ff7174.patch new file mode 100644 index 0000000..58de48e --- /dev/null +++ b/5c2d4ff3092155d24164c24a2a9a610325ff7174.patch @@ -0,0 +1,30 @@ +From 5c2d4ff3092155d24164c24a2a9a610325ff7174 Mon Sep 17 00:00:00 2001 +From: Sam James sam@gentoo.org +Date: Sun, 11 Dec 2022 13:23:56 +0000 +Subject: [PATCH] samba: Fix build with GCC 13 (add missing <cstdint> include) + +GCC 13 (as usual for new compiler releases) shuffles around some +internal includes and so <cstdint> is no longer transitively included. + +Explicitly include <cstdint> for uint32_t. + +Bug: https://bugs.gentoo.org/885315 +--- + samba/aclproperties/debug.h | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/samba/aclproperties/debug.h b/samba/aclproperties/debug.h +index 6bbe571..aa995dd 100644 +--- a/samba/aclproperties/debug.h ++++ b/samba/aclproperties/debug.h +@@ -3,6 +3,7 @@ + + #pragma once + ++#include <cstdint> + #include <string> + + struct ACE; +-- +GitLab + diff --git a/kdenetwork-filesharing.spec b/kdenetwork-filesharing.spec index 0623db7..d0f66c7 100644 --- a/kdenetwork-filesharing.spec +++ b/kdenetwork-filesharing.spec @@ -15,6 +15,9 @@ URL: https://invent.kde.org/network/%%7Bname%7D %endif Source0: http://download.kde.org/%%7Bstable%7D/release-service/%%7Bversion%7D/src/%%7...
+# Fix GCC 13 compilation +Patch0: 5c2d4ff3092155d24164c24a2a9a610325ff7174.patch + BuildRequires: desktop-file-utils BuildRequires: extra-cmake-modules BuildRequires: gettext
https://src.fedoraproject.org/rpms/kdenetwork-filesharing/c/695145d477166c2d...
scm-commits@lists.fedoraproject.org