Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

games/higan: Add missing include. #215

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions games/higan/higan.SlackBuild
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,8 @@ chown -R root:root .
# for its support files if they're not found in ~/.local/share/higan.
patch -p1 -i $CWD/higan-flags.diff
patch -p1 -i $CWD/higan-paths.diff
# 20240131 KEC: gcc-13.x compatibility
patch -p1 -i $CWD/includes.diff

# 20181212 bkw: audio system stuff. Upstream doesn't give us a way to
# disable these on the make command line, but hacking this file works:
Expand Down
8 changes: 8 additions & 0 deletions games/higan/includes.diff
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
--- higan-106.orig/nall/arithmetic/natural.hpp 2024-01-31 09:12:37.166634947 +0900
+++ higan-106/nall/arithmetic/natural.hpp 2024-01-31 09:12:58.147526383 +0900
@@ -1,3 +1,5 @@
+#include <stdexcept>
+
#define ConcatenateType(Size) uint##Size##_t
#define DeclareType(Size) ConcatenateType(Size)

Loading