added a patch to fix a missing include with gcc 13.2 [release 1.0.0-2mamba;Sun Aug 20 2023]
This commit is contained in:
parent
cecfdd691c
commit
98c41df7c7
55
waylandpp-1.0.0-gcc-13.2.0.patch
Normal file
55
waylandpp-1.0.0-gcc-13.2.0.patch
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
From 5e3243b163aa5d50083b4036c21f84c1204f2023 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Khem Raj <raj.khem@gmail.com>
|
||||||
|
Date: Thu, 26 Jan 2023 23:25:05 -0800
|
||||||
|
Subject: [PATCH] include missing <cstdint>
|
||||||
|
|
||||||
|
gcc 13 moved some includes around and as a result <cstdint> is no longer transitively included [1]. Explicitly include it for uint{32,64}_t.
|
||||||
|
|
||||||
|
[1] https://gcc.gnu.org/gcc-13/porting_to.html#header-dep-changes
|
||||||
|
|
||||||
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||||
|
---
|
||||||
|
include/wayland-client.hpp | 1 +
|
||||||
|
scanner/scanner.cpp | 3 +++
|
||||||
|
2 files changed, 4 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/include/wayland-client.hpp b/include/wayland-client.hpp
|
||||||
|
index a3f782b..4598a0e 100644
|
||||||
|
--- a/include/wayland-client.hpp
|
||||||
|
+++ b/include/wayland-client.hpp
|
||||||
|
@@ -29,6 +29,7 @@
|
||||||
|
/** \file */
|
||||||
|
|
||||||
|
#include <atomic>
|
||||||
|
+#include <cstdint>
|
||||||
|
#include <functional>
|
||||||
|
#include <memory>
|
||||||
|
#include <string>
|
||||||
|
diff --git a/scanner/scanner.cpp b/scanner/scanner.cpp
|
||||||
|
index bebd71e..c25746a 100644
|
||||||
|
--- a/scanner/scanner.cpp
|
||||||
|
+++ b/scanner/scanner.cpp
|
||||||
|
@@ -15,6 +15,7 @@
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
+#include <cstdint>
|
||||||
|
#include <fstream>
|
||||||
|
#include <iostream>
|
||||||
|
#include <list>
|
||||||
|
@@ -1106,6 +1107,7 @@ int main(int argc, char *argv[])
|
||||||
|
wayland_hpp << "#pragma once" << std::endl
|
||||||
|
<< std::endl
|
||||||
|
<< "#include <array>" << std::endl
|
||||||
|
+ << "#include <cstdint>" << std::endl
|
||||||
|
<< "#include <functional>" << std::endl
|
||||||
|
<< "#include <memory>" << std::endl
|
||||||
|
<< "#include <string>" << std::endl
|
||||||
|
@@ -1125,6 +1127,7 @@ int main(int argc, char *argv[])
|
||||||
|
wayland_server_hpp << "#pragma once" << std::endl
|
||||||
|
<< std::endl
|
||||||
|
<< "#include <array>" << std::endl
|
||||||
|
+ << "#include <cstdint>" << std::endl
|
||||||
|
<< "#include <functional>" << std::endl
|
||||||
|
<< "#include <memory>" << std::endl
|
||||||
|
<< "#include <string>" << std::endl
|
@ -1,6 +1,6 @@
|
|||||||
Name: waylandpp
|
Name: waylandpp
|
||||||
Version: 1.0.0
|
Version: 1.0.0
|
||||||
Release: 1mamba
|
Release: 2mamba
|
||||||
Summary: C++ binding for Wayland
|
Summary: C++ binding for Wayland
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
Vendor: openmamba
|
Vendor: openmamba
|
||||||
@ -8,6 +8,7 @@ Distribution: openmamba
|
|||||||
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
URL: https://github.com/NilsBrause/waylandpp
|
URL: https://github.com/NilsBrause/waylandpp
|
||||||
Source: https://github.com/NilsBrause/waylandpp.git/%{version}/waylandpp-%{version}.tar.bz2
|
Source: https://github.com/NilsBrause/waylandpp.git/%{version}/waylandpp-%{version}.tar.bz2
|
||||||
|
Patch0: waylandpp-1.0.0-gcc-13.2.0.patch
|
||||||
License: MIT, GPL
|
License: MIT, GPL
|
||||||
## AUTOBUILDREQ-BEGIN
|
## AUTOBUILDREQ-BEGIN
|
||||||
BuildRequires: glibc-devel
|
BuildRequires: glibc-devel
|
||||||
@ -45,6 +46,7 @@ This package contains libraries and header files for developing applications tha
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
%patch 0 -p1 -b .gcc-13.2.0
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%cmake -d build
|
%cmake -d build
|
||||||
@ -91,6 +93,9 @@ This package contains libraries and header files for developing applications tha
|
|||||||
%doc README.md
|
%doc README.md
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sun Aug 20 2023 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-2mamba
|
||||||
|
- added a patch to fix a missing include with gcc 13.2
|
||||||
|
|
||||||
* Sat Apr 30 2022 Automatic Build System <autodist@mambasoft.it> 1.0.0-1mamba
|
* Sat Apr 30 2022 Automatic Build System <autodist@mambasoft.it> 1.0.0-1mamba
|
||||||
- automatic version update by autodist
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user