mirror of
https://git.freebsd.org/ports.git
synced 2025-06-30 09:00:33 -04:00
* Under the hood runs Chromium 83.0.4103.122 with security fixes up to version 86.0.4240.183 and patches were taken from r540991 of www/chromium. * Also adjust some patches to avoid hardcoding of ${LOCALBASE} and remove a redundant blank line. Changelog: * [QTBUG-84632] Warn about QtWebengineProcess launching from network share on Windows. * [QTBUG-85363] Handle non-ASCII names for PulseAudio * [QTBUG-85494] Fix regression crash when not handling QQuickWebEngineNewViewRequest * [QTBUG-85817] Fix crashes on resize * [QTBUG-86672] Fix remapped menu key being mapped back to menu key * [QTBUG-86945] Fix crash when opening a PDF in debug build on windows. * [QTBUG-87129] Mention node.js build-time dependency * The QtWebEngineProcess now has a version number * The old compositor has been removed and can no longer be restored using command line argument. Approved by: tcberner (kde) Differential Revision: https://reviews.freebsd.org/D27587
52 lines
3.2 KiB
JSON
52 lines
3.2 KiB
JSON
--- src/buildtools/configure.json.orig 2020-11-07 01:22:36 UTC
|
|
+++ src/buildtools/configure.json
|
|
@@ -362,7 +362,7 @@
|
|
"features": {
|
|
"webengine-core-support": {
|
|
"label": "Support Qt WebEngine Core",
|
|
- "condition": "(config.linux || config.win32 || config.macos)
|
|
+ "condition": "(config.unix || config.win32 || config.macos)
|
|
&& !config.static
|
|
&& module.gui
|
|
&& features.webengine-submodule
|
|
@@ -374,21 +374,21 @@
|
|
&& features.webengine-flex
|
|
&& features.webengine-python2
|
|
&& (!config.sanitizer || features.webengine-sanitizer)
|
|
- && (!config.linux || features.pkg-config)
|
|
- && (!config.linux || features.webengine-host-pkg-config)
|
|
+ && (!config.unix || features.pkg-config)
|
|
+ && (!config.unix || features.webengine-host-pkg-config)
|
|
&& (!config.linux || features.webengine-system-glibc)
|
|
- && (!config.linux || features.webengine-system-khr)
|
|
- && (!config.linux || features.webengine-system-nss)
|
|
- && (!config.linux || features.webengine-system-dbus)
|
|
- && (!config.linux || features.webengine-system-fontconfig)
|
|
- && (!config.linux || !features.pkg-config || !features.xcb || features.webengine-ozone-x11)
|
|
+ && (!config.unix || features.webengine-system-khr)
|
|
+ && (!config.unix || features.webengine-system-nss)
|
|
+ && (!config.unix || features.webengine-system-dbus)
|
|
+ && (!config.unix || features.webengine-system-fontconfig)
|
|
+ && (!config.unix || !features.pkg-config || !features.xcb || features.webengine-ozone-x11)
|
|
&& (!config.win32 || features.webengine-win-compiler64)
|
|
&& (!config.win32 || features.webengine-winversion)",
|
|
"output": [ "privateFeature" ]
|
|
},
|
|
"webengine-qtpdf-support": {
|
|
"label": "Support Qt Pdf",
|
|
- "condition": "(config.linux || config.win32 || config.macos || config.ios)
|
|
+ "condition": "(config.unix || config.win32 || config.macos || config.ios)
|
|
&& module.gui
|
|
&& features.webengine-submodule
|
|
&& features.webengine-nowhitespace
|
|
@@ -399,8 +399,8 @@
|
|
&& features.webengine-flex
|
|
&& features.webengine-python2
|
|
&& (!config.sanitizer || features.webengine-sanitizer)
|
|
- && (!config.linux || features.pkg-config)
|
|
- && (!config.linux || features.webengine-host-pkg-config)
|
|
+ && (!config.unix || features.pkg-config)
|
|
+ && (!config.unix || features.webengine-host-pkg-config)
|
|
&& (!config.win32 || features.webengine-winversion)",
|
|
"output": [ "privateFeature" ]
|
|
},
|