Unbreak build after recent Qt 5.15 update.

Add missing QPainterPath include
This commit is contained in:
rsadowski 2021-01-19 07:05:19 +00:00
parent a39cef87c1
commit 8799cc63b2
2 changed files with 16 additions and 1 deletions

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.8 2020/03/08 02:15:51 thfr Exp $
# $OpenBSD: Makefile,v 1.9 2021/01/19 07:05:19 rsadowski Exp $
USE_WXNEEDED = Yes
ONLY_FOR_ARCHS = amd64
@ -10,6 +10,8 @@ V = 5.0.0.20190621
DISTNAME = dolphin-emu-${V}
PKGNAME-main = dolphin-${V}
PKGNAME-nogui = dolphin-nogui-${V}
REVISION-main = 0
REVISION-nogui = 0
MULTI_PACKAGES = -main -nogui

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-Source_Core_DolphinQt_Config_Mapping_MappingIndicator_cpp,v 1.1 2021/01/19 07:05:19 rsadowski Exp $
Index: Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp
--- Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp.orig
+++ Source/Core/DolphinQt/Config/Mapping/MappingIndicator.cpp
@@ -11,6 +11,7 @@
#include <QAction>
#include <QDateTime>
#include <QPainter>
+#include <QPainterPath>
#include <QTimer>
#include "Common/MathUtil.h"