diff options
author | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2024-07-04 02:30:51 -0700 |
---|---|---|
committer | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2024-07-04 02:30:51 -0700 |
commit | af58b19536895db6c8b18165256b024a697657a9 (patch) | |
tree | 51150852f1291465d0ecd48833b83124e5c0dde2 /add-algorithm-include-gcc-14.patch | |
parent | Updated to 0.4.10 (diff) | |
download | openrct2-af58b19536895db6c8b18165256b024a697657a9.tar.xz |
Rebuild for icu 75 and gcc 14.
Also make sure ccache is disabled.
Diffstat (limited to 'add-algorithm-include-gcc-14.patch')
-rw-r--r-- | add-algorithm-include-gcc-14.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/add-algorithm-include-gcc-14.patch b/add-algorithm-include-gcc-14.patch new file mode 100644 index 0000000..16b109d --- /dev/null +++ b/add-algorithm-include-gcc-14.patch @@ -0,0 +1,21 @@ +From ab067e45460d9b8619344b814f2fe21f0a5d5cb9 Mon Sep 17 00:00:00 2001 +From: H3o66 <chris.h3o66@gmail.com> +Date: Mon, 6 May 2024 21:37:14 +0200 +Subject: [PATCH] fix: add algorithm include to fix gcc14 compile + +--- + src/openrct2/core/FileWatcher.cpp | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/src/openrct2/core/FileWatcher.cpp b/src/openrct2/core/FileWatcher.cpp +index afb9177c1818..b3c24db6c65f 100644 +--- a/src/openrct2/core/FileWatcher.cpp ++++ b/src/openrct2/core/FileWatcher.cpp +@@ -7,6 +7,7 @@ + * OpenRCT2 is licensed under the GNU General Public License version 3. + *****************************************************************************/ + ++#include <algorithm> + #include <array> + #include <cstdio> + #include <stdexcept> |