git: 2b9cc5333412 - main - www/qt6-webengine: fix build on armv7
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 09 Jul 2025 15:52:44 UTC
The branch main has been updated by fuz:
URL: https://cgit.FreeBSD.org/ports/commit/?id=2b9cc5333412eca542d592774ec08def1f58e48e
commit 2b9cc5333412eca542d592774ec08def1f58e48e
Author: Robert Clausecker <fuz@FreeBSD.org>
AuthorDate: 2025-07-04 10:17:23 +0000
Commit: Robert Clausecker <fuz@FreeBSD.org>
CommitDate: 2025-07-09 15:50:31 +0000
www/qt6-webengine: fix build on armv7
Restore a patch that was accidentally dropped during the update to
6.9.1.
Fixes: 03b02222d63f08742cf723fd8eeee26465ae3e39
MFH: 2025Q3
Approved by: portmgr (build fix blanket)
---
...patch-src_3rdparty_chromium_v8_src_base_platform_platform-freebsd.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www/qt6-webengine/files/patch-src_3rdparty_chromium_v8_src_base_platform_platform-freebsd.cc b/www/qt6-webengine/files/patch-src_3rdparty_chromium_v8_src_base_platform_platform-freebsd.cc
index 3c3165a63310..177de066160d 100644
--- a/www/qt6-webengine/files/patch-src_3rdparty_chromium_v8_src_base_platform_platform-freebsd.cc
+++ b/www/qt6-webengine/files/patch-src_3rdparty_chromium_v8_src_base_platform_platform-freebsd.cc
@@ -20,7 +20,7 @@
lib_name = std::string(path);
}
result.push_back(SharedLibraryAddress(
-+#if defined(__i386__) || defined(OS_FREEBSD)
++#if defined(__i386__) || defined(__arm__) || defined(OS_FREEBSD)
+ lib_name, static_cast<uintptr_t>(map->kve_start),
+ static_cast<uintptr_t>(map->kve_end)));
+#else