diff options
author | Tobias C. Berner <tcberner@FreeBSD.org> | 2020-07-06 06:43:37 +0000 |
---|---|---|
committer | Tobias C. Berner <tcberner@FreeBSD.org> | 2020-07-06 06:43:37 +0000 |
commit | 5f34284e7c01f03ee6735e7fcd3ec5783ab11777 (patch) | |
tree | 46cfcccc197bb0d79ee8c9868007fd48adf2470d /www/qt5-webengine/files/patch-configure.pri | |
parent | textproc/py-ocrmypdf: Update to 10.2.0 (diff) |
Update Qt5 to 5.15
This is a major upgrade of the Qt libraries [1], [2].
* People that use upgrading mechanisms with incomplete dependency handling
(portmaster & Co) should make sure to manually remove the existing Qt
packages to guarantee a safe upgrade. Keep in mind, that Qt does not like if
you have an incomplete upgrade.
* This version of Qt drops support for OpenSSL 1.0 -- this means that there
won't be any binary packages for Qt5 provided by the FreeBSD package builders
for FreeBSD 11.x anymore -- and the same for *all* the ports depending on
net/qt5-network [3]. If you cannot upgrade to a more recent FreeBSD
version (12.x, 13.x), you will need to build Qt5 from ports while switching
to an SSL implementation from ports.
Big thanks are due for
* kai@ for updating webengine (also mikael@)
* Felix Palmen for providing LibreSSL support patches
* adridg@ and lbartoletti@ for helping me fix the fallout
[1] https://www.qt.io/blog/qt-5.15-released
[2] https://wiki.qt.io/New_Features_in_Qt_5.15
[3] https://www.freshports.org/net/qt5-network
PR: 247010
Exp-run by: antoine
Diffstat (limited to 'www/qt5-webengine/files/patch-configure.pri')
-rw-r--r-- | www/qt5-webengine/files/patch-configure.pri | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/www/qt5-webengine/files/patch-configure.pri b/www/qt5-webengine/files/patch-configure.pri index f153617e41fd..82636d8a2f51 100644 --- a/www/qt5-webengine/files/patch-configure.pri +++ b/www/qt5-webengine/files/patch-configure.pri @@ -1,21 +1,21 @@ ---- configure.pri.orig 2019-12-03 07:18:02 UTC +--- configure.pri.orig 2020-04-08 09:41:36 UTC +++ configure.pri @@ -114,7 +114,7 @@ defineTest(qtwebengine_platformError) { defineTest(qtConfTest_detectPlatform) { QT_FOR_CONFIG += gui-private -- !linux:!win32:!macos { -+ !linux:!win32:!macos:!unix: { +- !linux:!win32:!macos:!ios { ++ !linux:!win32:!macos:!ios:!unix: { qtwebengine_platformError("Unknown platform. Qt WebEngine only supports Linux, Windows, and macOS.") } else { linux:qtwebengine_isLinuxPlatformSupported() { -@@ -126,6 +126,9 @@ defineTest(qtConfTest_detectPlatform) { +@@ -125,6 +125,9 @@ defineTest(qtConfTest_detectPlatform) { + } macos:qtwebengine_isMacOsPlatformSupported() { $${1}.platform = "macos" - } ++ } + unix:qtwebengine_isLinuxPlatformSupported() { + $${1}.platform = "linux" -+ } - } - - !isEmpty(platformError) { + } + ios:qtwebengine_isMacOsPlatformSupported() { + $${1}.platform = "ios" |