app-cdr/isoimagewriter: Fix build with dev-qt/qtnetwork[-ssl]

Closes: https://bugs.gentoo.org/842657
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
Andreas Sturmlechner 2022-05-18 16:02:30 +02:00
parent 46b5fab594
commit d7fd510ec2
No known key found for this signature in database
GPG Key ID: 14644BCDD1535109
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,30 @@
From fad0ba93445e512e81c56e872b77d9e5b9d56fa9 Mon Sep 17 00:00:00 2001
From: Andreas Sturmlechner <asturm@gentoo.org>
Date: Wed, 18 May 2022 15:57:26 +0200
Subject: [PATCH] Add missing headers
Downstream bug: https://bugs.gentoo.org/842657
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
---
isoimagewriter/fetchisojob.cpp | 2 ++
1 file changed, 2 insertions(+)
diff --git a/isoimagewriter/fetchisojob.cpp b/isoimagewriter/fetchisojob.cpp
index 42c71c1..e5ced11 100644
--- a/isoimagewriter/fetchisojob.cpp
+++ b/isoimagewriter/fetchisojob.cpp
@@ -5,8 +5,10 @@
*/
#include "fetchisojob.h"
+#include <QDebug>
#include <QDir>
#include <QNetworkReply>
+#include <QSharedPointer>
#include <QStandardPaths>
FetchIsoJob::FetchIsoJob(QObject *parent)
--
2.35.1

View File

@ -32,3 +32,5 @@ DEPEND="
>=kde-frameworks/solid-${KFMIN}:5
"
RDEPEND="${DEPEND}"
PATCHES=( "${FILESDIR}/${P}-missing-headers.patch" ) # bug 842657