git: 3b90eb4959c3 - 2025Q3 - www/qt6-webengine: fix build on armv7

From: Robert Clausecker <fuz_at_FreeBSD.org>
Date: Wed, 09 Jul 2025 15:53:26 UTC
The branch 2025Q3 has been updated by fuz:

URL: https://cgit.FreeBSD.org/ports/commit/?id=3b90eb4959c30e1efe4dff04fb45432541bd8d74

commit 3b90eb4959c30e1efe4dff04fb45432541bd8d74
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:53:14 +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)
    
    (cherry picked from commit 2b9cc5333412eca542d592774ec08def1f58e48e)
---
 ...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