-
-
Notifications
You must be signed in to change notification settings - Fork 15k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pyqtwebengine: add patch to fix build with Qt 5.14
- Loading branch information
Milan Pässler
authored and
Milan
committed
Jul 31, 2020
1 parent
cb1b535
commit ae66138
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
pkgs/development/python-modules/pyqtwebengine/fix-build-with-qt-514.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
diff --git a/sip/QtWebEngineWidgets/qwebenginecertificateerror.sip b/sip/QtWebEngineWidgets/qwebenginecertificateerror.sip | ||
index 5fb508f..7a4654a 100644 | ||
--- a/sip/QtWebEngineWidgets/qwebenginecertificateerror.sip | ||
+++ b/sip/QtWebEngineWidgets/qwebenginecertificateerror.sip | ||
@@ -48,7 +48,7 @@ public: | ||
%If (QtWebEngine_5_8_0 -) | ||
CertificateTransparencyRequired, | ||
%End | ||
-%If (QtWebEngine_5_14_0 -) | ||
+%If (QtWebEngine_5_15_0 -) | ||
CertificateKnownInterceptionBlocked, | ||
%End | ||
}; | ||
diff --git a/sip/QtWebEngineWidgets/qwebenginepage.sip b/sip/QtWebEngineWidgets/qwebenginepage.sip | ||
index 0dcbed2..9aa3443 100644 | ||
--- a/sip/QtWebEngineWidgets/qwebenginepage.sip | ||
+++ b/sip/QtWebEngineWidgets/qwebenginepage.sip | ||
@@ -663,10 +663,10 @@ signals: | ||
%End | ||
|
||
public: | ||
-%If (QtWebEngine_5_14_0 -) | ||
+%If (QtWebEngine_5_15_0 -) | ||
qint64 renderProcessPid() const; | ||
%End | ||
-%If (QtWebEngine_5_14_0 -) | ||
+%If (QtWebEngine_5_15_0 -) | ||
void renderProcessPidChanged(qint64 pid); | ||
%End | ||
}; | ||
|