* [gentoo-commits] repo/gentoo:master commit in: games-simulation/openrct2/files/
@ 2023-10-15 22:04 Conrad Kostecki
0 siblings, 0 replies; 2+ messages in thread
From: Conrad Kostecki @ 2023-10-15 22:04 UTC (permalink / raw
To: gentoo-commits
commit: b9e353c0832ecc13dae3b7c5416852cca57e1c5d
Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Sun Oct 15 16:17:31 2023 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Oct 15 22:01:26 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9e353c0
games-simulation/openrct2: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/33348
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
.../files/openrct2-0.4.4-dont-force-downloads.patch | 15 ---------------
1 file changed, 15 deletions(-)
diff --git a/games-simulation/openrct2/files/openrct2-0.4.4-dont-force-downloads.patch b/games-simulation/openrct2/files/openrct2-0.4.4-dont-force-downloads.patch
deleted file mode 100644
index c92816997487..000000000000
--- a/games-simulation/openrct2/files/openrct2-0.4.4-dont-force-downloads.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -160,12 +160,6 @@
- endif ()
- endif ()
-
--# If OS is Linux, import OpenSoundEffects and OpenMusic
--if(UNIX AND NOT APPLE)
-- set(DOWNLOAD_OPENMSX ON)
-- set(DOWNLOAD_OPENSFX ON)
--endif()
--
- # LIST of supported flags, use SET_CHECK_CXX_FLAGS() to apply to target.
- # Use ADD_CHECK_CXX_COMPILER_FLAG() to add to list.
- set(SUPPORTED_CHECK_CXX_COMPILER_FLAGS "")
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-simulation/openrct2/files/
@ 2024-04-18 19:32 Conrad Kostecki
0 siblings, 0 replies; 2+ messages in thread
From: Conrad Kostecki @ 2024-04-18 19:32 UTC (permalink / raw
To: gentoo-commits
commit: f7864f5584e5a1df9bcdf7f0d044c72d7866226a
Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Thu Apr 18 18:07:40 2024 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Thu Apr 18 19:31:45 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7864f55
games-simulation/openrct2: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
.../openrct2/files/openrct2-0.4.7-musl.patch | 55 ----------------------
1 file changed, 55 deletions(-)
diff --git a/games-simulation/openrct2/files/openrct2-0.4.7-musl.patch b/games-simulation/openrct2/files/openrct2-0.4.7-musl.patch
deleted file mode 100644
index 1096bc018ff2..000000000000
--- a/games-simulation/openrct2/files/openrct2-0.4.7-musl.patch
+++ /dev/null
@@ -1,55 +0,0 @@
-From 010c19ba61a3180dab6350aadc578414ad0c0051 Mon Sep 17 00:00:00 2001
-From: Conrad Kostecki <conikost@gentoo.org>
-Date: Mon, 1 Jan 2024 20:34:19 +0100
-Subject: [PATCH 1/2] src/openrct2/core/FileStream.cpp: drop ftello64, fseeko64
-
-The static usage definition of ftello64 and friends is not correct.
-While this currently works on glibc, this breaks on musl, as musl
-already is LFS aware. The solution is to drop this and add instead
-'-D_FILE_OFFSET_BITS=64' to the build system.
-
-Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
----
- src/openrct2/core/FileStream.cpp | 5 -----
- 1 file changed, 5 deletions(-)
-
-diff --git a/src/openrct2/core/FileStream.cpp b/src/openrct2/core/FileStream.cpp
-index 90a7f7a366cc..6fd7b7b1b42c 100644
---- a/src/openrct2/core/FileStream.cpp
-+++ b/src/openrct2/core/FileStream.cpp
-@@ -21,11 +21,6 @@
- # include <io.h>
- #endif
-
--#if defined(__linux__) && !defined(__ANDROID__)
--# define ftello ftello64
--# define fseeko fseeko64
--#endif
--
- #ifdef _MSC_VER
- # define ftello _ftelli64
- # define fseeko _fseeki64
-
-From 7c638c786527a26a3e83d155ca8ff4d55f01347f Mon Sep 17 00:00:00 2001
-From: Conrad Kostecki <conikost@gentoo.org>
-Date: Mon, 1 Jan 2024 20:23:24 +0100
-Subject: [PATCH 2/2] CMakeLists.txt: add D_FILE_OFFSET_BITS=64
-
-Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
-Signed-off-by: Conrad Kostecki <conrad@kostecki.com>
----
- src/openrct2/CMakeLists.txt | 4 ++++
- 1 file changed, 4 insertions(+)
-
-diff --git a/src/openrct2/CMakeLists.txt b/src/openrct2/CMakeLists.txt
-index 367939c9622c..55882a1097d3 100644
---- a/src/openrct2/CMakeLists.txt
-+++ b/src/openrct2/CMakeLists.txt
-@@ -265,3 +265,7 @@ else ()
- # Dummy target to ease invocation
- add_custom_target(${PROJECT_NAME}-headers-check)
- endif ()
-+
-+if (UNIX)
-+ add_definitions(-D_FILE_OFFSET_BITS=64)
-+endif ()
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-04-18 19:32 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-15 22:04 [gentoo-commits] repo/gentoo:master commit in: games-simulation/openrct2/files/ Conrad Kostecki
-- strict thread matches above, loose matches on Subject: below --
2024-04-18 19:32 Conrad Kostecki
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox