Skip to content

Commit 7cafcb2

Browse files
committed
dolphin-emu: add missing headers to fix build
1 parent aef4c53 commit 7cafcb2

3 files changed

Lines changed: 31 additions & 1 deletion

File tree

emulators/dolphin-emu/distinfo

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$NetBSD: distinfo,v 1.8 2025/06/08 23:54:35 nia Exp $
1+
$NetBSD: distinfo,v 1.9 2025/06/12 07:37:34 wiz Exp $
22

33
BLAKE2s (dolphin-emu-5.0.tar.gz) = ceec308ace0877748d49e954798a71f9262e2af537ada0a88e59c887adf1b904
44
SHA512 (dolphin-emu-5.0.tar.gz) = 8de76f811abfb82e19502336734e86ba600c11d9fa95bcf7f70a2a525165d07ead826854c39377602aab7856a057af9ba91bff458cf2dd008712527290489d3a
@@ -7,12 +7,14 @@ SHA1 (patch-CMakeLists.txt) = e6f8d72d53ea930306dfb7a879608c3d3ab946aa
77
SHA1 (patch-Externals_SFML_include_SFML_Config.hpp) = 75ece2ce86b54b219a80d6ff028ecc80a00454f5
88
SHA1 (patch-Source_Core_AudioCommon_OpenALStream.cpp) = 9a535d8c456667cbd377295142ab6948f28c4907
99
SHA1 (patch-Source_Core_Common_FileUtil.cpp) = 27b859714e294abbfb3f468928e22b30abfd0099
10+
SHA1 (patch-Source_Core_Common_MathUtil.h) = 14999ab78efab342e6a874b1fa084b52acc0843e
1011
SHA1 (patch-Source_Core_Common_MemoryUtil.cpp) = af681a3f43687f7af09c87732a7a2da8e8c58e05
1112
SHA1 (patch-Source_Core_Common_StringUtil.cpp) = 3a53d42ae9da1d50c0693bd222cb20be9ebe5a16
1213
SHA1 (patch-Source_Core_Common_Thread.cpp) = 8356c548c43ad762f4d226cf3d51a854f0a8b7f3
1314
SHA1 (patch-Source_Core_Common_x64CPUDetect.cpp) = 9238fc6d7c9f225fbd9885c1e5b07b237041e4f7
1415
SHA1 (patch-Source_Core_Core_HW_EXI__DeviceEthernet.h) = 144250d51b78e287a8305e75ee06e24c305c3d75
1516
SHA1 (patch-Source_Core_Core_IPC__HLE_WII__Socket.h) = 8de6dec95689efb63c3795d3e361b5bd9a8d7768
1617
SHA1 (patch-Source_Core_Core_MemTools.cpp) = 2316e8103749fe174db7f694f2eeb22035cd135c
18+
SHA1 (patch-Source_Core_Core_MemoryWatcher.cpp) = 7897655f0f9f20db17e9423bf484416084cfed5d
1719
SHA1 (patch-Source_Core_VideoCommon_DriverDetails.cpp) = 227d2ab5835be08b23f13346c9b9252ae3295155
1820
SHA1 (patch-Source_Core_VideoCommon_DriverDetails.h) = dc3a8f559253ea2a3f75223cfe7eb0a6c2c39ce1
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
$NetBSD: patch-Source_Core_Common_MathUtil.h,v 1.1 2025/06/12 07:37:34 wiz Exp $
2+
3+
Add missing include for numeric_limits.
4+
5+
--- Source/Core/Common/MathUtil.h.orig 2025-06-12 07:32:24.866763473 +0000
6+
+++ Source/Core/Common/MathUtil.h
7+
@@ -6,6 +6,7 @@
8+
9+
#include <algorithm>
10+
#include <cstdlib>
11+
+#include <limits>
12+
#include <vector>
13+
14+
#include "Common/CommonTypes.h"
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
$NetBSD: patch-Source_Core_Core_MemoryWatcher.cpp,v 1.1 2025/06/12 07:37:34 wiz Exp $
2+
3+
Add missing header for memset and strncpy.
4+
5+
--- Source/Core/Core/MemoryWatcher.cpp.orig 2025-06-12 07:34:14.049871599 +0000
6+
+++ Source/Core/Core/MemoryWatcher.cpp
7+
@@ -2,6 +2,7 @@
8+
// Licensed under GPLv2+
9+
// Refer to the license.txt file included.
10+
11+
+#include <cstring>
12+
#include <fstream>
13+
#include <iostream>
14+
#include <memory>

0 commit comments

Comments
 (0)