June 03, 2024 by Jani Heikkinen We have released Qt 6.9.1 today. As a patch release, Qt 6.9.1 does not introduce new features but contains more than 450 bug fixes, security updates, and other improvements on top of Qt 6.9.0 release. See more information about the most important changes and bug fixes from the Qt 6.9.1 release note. Announcement: https://www.qt.io/blog/qt-6.9.1-released Release note: https://code.qt.io/cgit/qt/qtreleasenotes.git/about/qt/6.9.1/release-note.md We (kde@) skipped shipping Qt 6.9.0 due to unacceptable rendering bugs in the WebEngine component, but here are the announcements and release notes from Qt 6.9.0. Announcement: https://www.qt.io/blog/qt-6.9-released Release note: https://code.qt.io/cgit/qt/qtreleasenotes.git/about/qt/6.9.0/release-note.md PySide6: Update to 6.9.1 PySide6 and its related components have been updated alongside the Qt release for compatibility. Older versions will not build with Qt 6.9.x. Announcement: https://www.qt.io/blog/qt-for-python-release-6.9 PyQt6: Update to 6.9.1 As with PySide6, older versions of PyQt6 will not build with Qt 6.9.x. Support tools like py-sip and py-qtbuilder have also been updated to their latest versions. Announcement: https://www.riverbankcomputing.com/news/PyQt_v6.9.0_Released https://www.riverbankcomputing.com/news/PyQt_v6.9.1_Released PR: 286051 Exp-run by: antoine
151 lines
4.7 KiB
Plaintext
151 lines
4.7 KiB
Plaintext
--- src/3rdparty/chromium/base/BUILD.gn.orig 2025-02-21 12:29:33 UTC
|
|
+++ src/3rdparty/chromium/base/BUILD.gn
|
|
@@ -1107,11 +1107,26 @@ jumbo_component("base") {
|
|
# Needed for <atomic> if using newer C++ library than sysroot, except if
|
|
# building inside the cros_sdk environment - use host_toolchain as a
|
|
# more robust check for this.
|
|
- if (!use_sysroot && (is_android || is_chromeos || (is_linux && !is_castos)) &&
|
|
+ if (!use_sysroot && (is_android || is_chromeos || (is_linux && !is_castos && !is_bsd)) &&
|
|
host_toolchain != "//build/toolchain/cros:host") {
|
|
libs += [ "atomic" ]
|
|
}
|
|
|
|
+ # *BSD needs libkvm
|
|
+ if (is_bsd) {
|
|
+ libs += [
|
|
+ "kvm",
|
|
+ "epoll-shim",
|
|
+ ]
|
|
+ }
|
|
+
|
|
+ if (is_freebsd) {
|
|
+ libs += [
|
|
+ "execinfo",
|
|
+ "util",
|
|
+ ]
|
|
+ }
|
|
+
|
|
if (use_allocator_shim) {
|
|
if (is_apple) {
|
|
sources += [ "allocator/early_zone_registration_apple.h" ]
|
|
@@ -1131,7 +1146,7 @@ jumbo_component("base") {
|
|
|
|
# Allow more direct string conversions on platforms with native utf8
|
|
# strings
|
|
- if (is_apple || is_chromeos || is_castos || is_cast_android || is_fuchsia) {
|
|
+ if (is_apple || is_chromeos || is_castos || is_cast_android || is_fuchsia || is_bsd) {
|
|
defines += [ "SYSTEM_NATIVE_UTF8" ]
|
|
}
|
|
|
|
@@ -2116,6 +2131,22 @@ jumbo_component("base") {
|
|
]
|
|
}
|
|
|
|
+ if (is_openbsd) {
|
|
+ sources += [
|
|
+ "process/process_handle_openbsd.cc",
|
|
+ "process/process_iterator_openbsd.cc",
|
|
+ "process/process_metrics_openbsd.cc",
|
|
+ "system/sys_info_openbsd.cc",
|
|
+ ]
|
|
+ } else if (is_freebsd) {
|
|
+ sources += [
|
|
+ "process/process_handle_freebsd.cc",
|
|
+ "process/process_iterator_freebsd.cc",
|
|
+ "process/process_metrics_freebsd.cc",
|
|
+ "system/sys_info_freebsd.cc",
|
|
+ ]
|
|
+ }
|
|
+
|
|
# iOS
|
|
if (is_ios) {
|
|
sources += [
|
|
@@ -2260,6 +2291,33 @@ jumbo_component("base") {
|
|
}
|
|
}
|
|
|
|
+ if (is_bsd) {
|
|
+ sources -= [
|
|
+ "files/file_path_watcher_inotify.cc",
|
|
+ "files/scoped_file_linux.cc",
|
|
+ "process/set_process_title_linux.cc",
|
|
+ "process/set_process_title_linux.h",
|
|
+ "system/sys_info_linux.cc",
|
|
+ "process/process_iterator_linux.cc",
|
|
+ "process/process_linux.cc",
|
|
+ "process/process_metrics_linux.cc",
|
|
+ "process/process_handle_linux.cc",
|
|
+ "profiler/stack_copier_signal.cc",
|
|
+ "profiler/stack_copier_signal.h",
|
|
+ "profiler/thread_delegate_posix.cc",
|
|
+ "profiler/thread_delegate_posix.h",
|
|
+ "threading/platform_thread_linux.cc",
|
|
+ "stack_canary_linux.cc",
|
|
+ "stack_canary_linux.h",
|
|
+ ]
|
|
+ sources += [
|
|
+ "files/file_path_watcher_kqueue.cc",
|
|
+ "files/file_path_watcher_kqueue.h",
|
|
+ "files/file_path_watcher_bsd.cc",
|
|
+ "threading/platform_thread_bsd.cc",
|
|
+ ]
|
|
+ }
|
|
+
|
|
if (use_blink) {
|
|
sources += [
|
|
"files/file_path_watcher.cc",
|
|
@@ -2586,7 +2644,7 @@ buildflag_header("protected_memory_buildflags") {
|
|
header = "protected_memory_buildflags.h"
|
|
header_dir = "base/memory"
|
|
|
|
- protected_memory_enabled = !is_component_build && is_clang &&
|
|
+ protected_memory_enabled = !is_openbsd && !is_component_build && is_clang &&
|
|
(is_win || is_linux || is_android || is_mac)
|
|
|
|
flags = [ "PROTECTED_MEMORY_ENABLED=$protected_memory_enabled" ]
|
|
@@ -3069,7 +3127,7 @@ if (is_apple) {
|
|
}
|
|
}
|
|
|
|
-if (!is_nacl && (is_linux || is_chromeos)) {
|
|
+if (!is_nacl && !is_bsd && (is_linux || is_chromeos)) {
|
|
# This test must compile with -fstack-protector-all
|
|
source_set("stack_canary_linux_unittests") {
|
|
testonly = true
|
|
@@ -3731,7 +3789,7 @@ test("base_unittests") {
|
|
]
|
|
}
|
|
|
|
- if (is_linux || is_chromeos) {
|
|
+ if (!is_bsd && (is_linux || is_chromeos)) {
|
|
sources += [
|
|
"debug/proc_maps_linux_unittest.cc",
|
|
"files/scoped_file_linux_unittest.cc",
|
|
@@ -3758,7 +3816,7 @@ test("base_unittests") {
|
|
"posix/file_descriptor_shuffle_unittest.cc",
|
|
"posix/unix_domain_socket_unittest.cc",
|
|
]
|
|
- if (!is_nacl && !is_apple) {
|
|
+ if (!is_nacl && !is_apple && !is_bsd) {
|
|
sources += [
|
|
"profiler/stack_base_address_posix_unittest.cc",
|
|
"profiler/stack_copier_signal_unittest.cc",
|
|
@@ -3769,7 +3827,7 @@ test("base_unittests") {
|
|
|
|
# Allow more direct string conversions on platforms with native utf8
|
|
# strings
|
|
- if (is_apple || is_chromeos || is_castos || is_cast_android || is_fuchsia) {
|
|
+ if (is_apple || is_chromeos || is_castos || is_cast_android || is_fuchsia || is_bsd) {
|
|
defines += [ "SYSTEM_NATIVE_UTF8" ]
|
|
}
|
|
|
|
@@ -3956,7 +4014,7 @@ test("base_unittests") {
|
|
deps += [ ":base_profiler_test_support_library" ]
|
|
}
|
|
|
|
- if (is_fuchsia || is_linux || is_chromeos) {
|
|
+ if ((is_fuchsia || is_linux || is_chromeos) && !is_bsd) {
|
|
sources += [
|
|
"debug/elf_reader_unittest.cc",
|
|
"debug/test_elf_image_builder.cc",
|