summaryrefslogtreecommitdiff
path: root/www/qt6-webengine/files/patch-cmake_QtConfigureHelpers.cmake
diff options
context:
space:
mode:
authorJason E. Hale <jhale@FreeBSD.org>2025-06-10 02:14:04 -0400
committerJason E. Hale <jhale@FreeBSD.org>2025-06-10 03:25:00 -0400
commit03b02222d63f08742cf723fd8eeee26465ae3e39 (patch)
treee1c7ebb640453904bf622f88474c716189e76547 /www/qt6-webengine/files/patch-cmake_QtConfigureHelpers.cmake
parentdeskutils/foliate: Fix build dependencies. (diff)
Qt6: Update to 6.9.1
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
Diffstat (limited to 'www/qt6-webengine/files/patch-cmake_QtConfigureHelpers.cmake')
-rw-r--r--www/qt6-webengine/files/patch-cmake_QtConfigureHelpers.cmake20
1 files changed, 20 insertions, 0 deletions
diff --git a/www/qt6-webengine/files/patch-cmake_QtConfigureHelpers.cmake b/www/qt6-webengine/files/patch-cmake_QtConfigureHelpers.cmake
new file mode 100644
index 000000000000..9dbb24127482
--- /dev/null
+++ b/www/qt6-webengine/files/patch-cmake_QtConfigureHelpers.cmake
@@ -0,0 +1,20 @@
+--- cmake/QtConfigureHelpers.cmake.orig 2025-02-21 12:29:33 UTC
++++ cmake/QtConfigureHelpers.cmake
+@@ -191,7 +191,7 @@ function(qt_webengine_configure_check_for_ulimit)
+
+ function(qt_webengine_configure_check_for_ulimit)
+ message(STATUS "Checking 'ulimit -n'")
+- execute_process(COMMAND bash -c "ulimit -n"
++ execute_process(COMMAND sh -c "ulimit -n"
+ OUTPUT_VARIABLE ulimit_output
+ )
+ string(REGEX MATCHALL "[0-9]+" limit "${ulimit_output}")
+@@ -200,7 +200,7 @@ function(qt_webengine_configure_check_for_ulimit)
+ if(NOT ${CMAKE_VERSION} VERSION_LESS "3.21.0")
+ message(STATUS "Creating linker launcher")
+ file(GENERATE OUTPUT ${PROJECT_BINARY_DIR}/linker_ulimit.sh
+- CONTENT "#!/bin/bash\nulimit -n 4096\nexec \"$@\""
++ CONTENT "#!/bin/sh\nulimit -n 4096\nexec \"$@\""
+ FILE_PERMISSIONS OWNER_EXECUTE OWNER_WRITE OWNER_READ
+ )
+ set(COIN_BUG_699 ON PARENT_SCOPE)