Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package RigelEngine for openSUSE:Factory 
checked in at 2024-08-29 15:44:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/RigelEngine (Old)
 and      /work/SRC/openSUSE:Factory/.RigelEngine.new.2698 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "RigelEngine"

Thu Aug 29 15:44:04 2024 rev:16 rq:1197319 version:0.9.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/RigelEngine/RigelEngine.changes  2024-05-15 
21:29:37.676174926 +0200
+++ /work/SRC/openSUSE:Factory/.RigelEngine.new.2698/RigelEngine.changes        
2024-08-29 15:44:59.333272832 +0200
@@ -1,0 +2,6 @@
+Sun Aug 25 16:01:43 UTC 2024 - Martin Hauke <[email protected]>
+
+- Add patch:
+  * RigelEngine-fix-build-with-gcc14.patch
+
+-------------------------------------------------------------------

New:
----
  RigelEngine-fix-build-with-gcc14.patch

BETA DEBUG BEGIN:
  New:- Add patch:
  * RigelEngine-fix-build-with-gcc14.patch
BETA DEBUG END:

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ RigelEngine.spec ++++++
--- /var/tmp/diff_new_pack.Wdel0V/_old  2024-08-29 15:44:59.809292596 +0200
+++ /var/tmp/diff_new_pack.Wdel0V/_new  2024-08-29 15:44:59.809292596 +0200
@@ -26,6 +26,7 @@
 URL:            https://github.com/lethal-guitar/RigelEngine
 Source:         %{name}-%{version}.tar.xz
 Patch0:         RigelEngine-fix-build-with-gcc13.patch
+Patch1:         RigelEngine-fix-build-with-gcc14.patch
 BuildRequires:  cmake >= 3.12
 BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(SDL2_mixer)

++++++ RigelEngine-fix-build-with-gcc14.patch ++++++
>From 48efe3e3c5774310e1e44e78b61c6c832e48cb8a Mon Sep 17 00:00:00 2001
From: Nikolai Wuttke <[email protected]>
Date: Sat, 25 May 2024 14:26:38 +0200
Subject: [PATCH] Add missing includes

---
 3rd_party/imgui-filebrowser/imfilebrowser.cpp | 3 +++
 test/test_high_score_list.cpp                 | 3 +++
 2 files changed, 6 insertions(+)

diff --git a/3rd_party/imgui-filebrowser/imfilebrowser.cpp 
b/3rd_party/imgui-filebrowser/imfilebrowser.cpp
index a2113615..1784e2eb 100644
--- a/3rd_party/imgui-filebrowser/imfilebrowser.cpp
+++ b/3rd_party/imgui-filebrowser/imfilebrowser.cpp
@@ -25,6 +25,9 @@
 
 #include <imgui.h>
 
+#include <algorithm>
+
+
 ImGui::FileBrowser::FileBrowser(ImGuiFileBrowserFlags flags)
     : width_(700), height_(450), flags_(flags),
       openFlag_(false), closeFlag_(false), isOpened_(false), ok_(false),
diff --git a/test/test_high_score_list.cpp b/test/test_high_score_list.cpp
index b44b86bd..f2155ca6 100644
--- a/test/test_high_score_list.cpp
+++ b/test/test_high_score_list.cpp
@@ -21,6 +21,9 @@ RIGEL_DISABLE_WARNINGS
 #include <catch.hpp>
 RIGEL_RESTORE_WARNINGS
 
+#include <algorithm>
+
+
 using namespace rigel;
 using namespace data;
 using namespace std;
-- 
2.46.0

Reply via email to