Unbreak build after recent Qt 5.15 update.

Add missing QPainterPath include
This commit is contained in:
rsadowski 2021-01-19 06:40:43 +00:00
parent ff56fe7907
commit d9cd191b6d
2 changed files with 15 additions and 2 deletions

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.8 2020/11/07 14:54:11 jasper Exp $
# $OpenBSD: Makefile,v 1.9 2021/01/19 06:40:43 rsadowski Exp $
# Qt5Webkit
USE_WXNEEDED = Yes
@ -6,7 +6,7 @@ USE_WXNEEDED = Yes
COMMENT = divelog program for recreational, tech, and free-divers
VER = 4.8.5
REVISION = 1
REVISION = 2
PKGNAME = subsurface-${VER}
DISTNAME = Subsurface-${VER}

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-desktop-widgets_groupedlineedit_cpp,v 1.1 2021/01/19 06:40:43 rsadowski Exp $
Index: desktop-widgets/groupedlineedit.cpp
--- desktop-widgets/groupedlineedit.cpp.orig
+++ desktop-widgets/groupedlineedit.cpp
@@ -32,6 +32,7 @@
#include <QScrollBar>
#include <QTextBlock>
#include <QPainter>
+#include <QPainterPath>
#include <QApplication>
#include <QStyle>
#include <QStyleOptionFocusRect>