mirror of
https://git.freebsd.org/ports.git
synced 2025-05-13 07:41:50 -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
30 lines
885 B
Text
30 lines
885 B
Text
--- src/buildtools/config/linking.pri.orig 2020-11-07 01:22:36 UTC
|
|
+++ src/buildtools/config/linking.pri
|
|
@@ -1,6 +1,9 @@
|
|
include($$QTWEBENGINE_OUT_ROOT/src/buildtools/qtbuildtools-config.pri)
|
|
QT_FOR_CONFIG += buildtools-private
|
|
|
|
+# Do not pass --no-undefined to the linker because of environ(7) usage.
|
|
+freebsd: QMAKE_LFLAGS_NOUNDEF =
|
|
+
|
|
linking_pri = $$OUT_PWD/$$getConfigDir()/$${TARGET}.pri
|
|
|
|
!include($$linking_pri) {
|
|
@@ -34,7 +37,7 @@ if(macos|ios) {
|
|
}
|
|
}
|
|
|
|
-linux {
|
|
+unix {
|
|
!static {
|
|
QMAKE_LFLAGS += @$${RSP_OBJECT_FILE}
|
|
QMAKE_LFLAGS += -Wl,--start-group @$${RSP_ARCHIVE_FILE} -Wl,--end-group
|
|
@@ -60,7 +63,7 @@ LIBS_PRIVATE += $$NINJA_LIB_DIRS $$NINJA_LIBS
|
|
|
|
unix:qtConfig(webengine-noexecstack): \
|
|
QMAKE_LFLAGS += -Wl,-z,noexecstack
|
|
-linux {
|
|
+unix {
|
|
# add chromium flags
|
|
for(flag, NINJA_LFLAGS) {
|
|
# filter out some flags
|