head 1.1; access; symbols; locks; strict; comment @ * @; 1.1 date 2026.07.08.13.42.31; author kikadf; state Exp; branches; next ; commitid TrothZVUWCiZ0RMG; desc @@ 1.1 log @ chromium: update to 150.0.7871.100 This update doesn't include security fixes. A full list of changes in this build is available in https://chromium.googlesource.com/chromium/src/+log/150.0.7871.47..150.0.7871.101?pretty=fuller&n=10000 @ text @$NetBSD$ * Part of patchset to build chromium on NetBSD * Based on OpenBSD's chromium patches, and pkgsrc's qt5-qtwebengine patches --- third_party/vulkan-loader/src/loader/vk_loader_platform.h.orig 2026-07-06 22:58:46.000000000 +0000 +++ third_party/vulkan-loader/src/loader/vk_loader_platform.h @@@@ -357,7 +357,15 @@@@ static inline char *loader_platform_exec return buffer; } -#elif defined(__Fuchsia__) || defined(__OpenBSD__) +#elif defined(__OpenBSD__) +static inline char *loader_platform_executable_path(char *buffer, size_t size) { + if ((buffer = getenv("CHROME_EXE_PATH")) != NULL) + return buffer; + else + buffer = "/usr/local/chrome/chrome"; + return buffer; +} +#elif defined(__Fuchsia__) static inline char *loader_platform_executable_path(char *buffer, size_t size) { return NULL; } #elif defined(__QNX__) @