summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Clausecker <fuz@FreeBSD.org>2025-07-04 12:17:23 +0200
committerRobert Clausecker <fuz@FreeBSD.org>2025-07-09 17:50:31 +0200
commit2b9cc5333412eca542d592774ec08def1f58e48e (patch)
tree082a8eb56e9cb5b88b0ed26e05906a7c70a0e647
parentwww/mod_auth_openidc: Update to 2.4.17.1 (diff)
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)
-rw-r--r--www/qt6-webengine/files/patch-src_3rdparty_chromium_v8_src_base_platform_platform-freebsd.cc2
1 files changed, 1 insertions, 1 deletions
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