head 1.2; access; symbols; locks; strict; comment @ * @; 1.2 date 2026.06.08.13.12.48; author kikadf; state Exp; branches; next 1.1; commitid Zzd0Bp9ZEsatPZIG; 1.1 date 2026.06.01.10.09.22; author kikadf; state Exp; branches; next ; commitid 48lBuM9fEuUE15IG; desc @@ 1.2 log @ www/chromium: update to 149.0.7827.53 * 149.0.7827.53 This update includes 429 security fixes. Below, we highlight fixes that were contributed by external researchers. Please see the Chrome Security Page for more information. * Fix build with wayland support: add missing include @ text @$NetBSD$ * Part of patchset to build chromium on NetBSD * Based on OpenBSD's chromium patches, and pkgsrc's qt5-qtwebengine patches --- third_party/wayland/src/src/scanner.c.orig 2026-05-28 23:24:11.000000000 +0000 +++ third_party/wayland/src/src/scanner.c @@@@ -294,7 +294,7 @@@@ uppercase_dup(const char *src) u = xstrdup(src); for (i = 0; u[i]; i++) - u[i] = toupper(u[i]); + u[i] = toupper((unsigned char)u[i]); u[i] = '\0'; return u; @@@@ -354,7 +354,7 @@@@ desc_dump(char *desc, const char *fmt, . for (i = 0; desc[i]; ) { k = i; newlines = 0; - while (desc[i] && isspace(desc[i])) { + while (desc[i] && isspace((unsigned char)desc[i])) { if (desc[i] == '\n') newlines++; i++; @@@@ -363,7 +363,7 @@@@ desc_dump(char *desc, const char *fmt, . break; j = i; - while (desc[i] && !isspace(desc[i])) + while (desc[i] && !isspace((unsigned char)desc[i])) i++; if (newlines > 1) @ 1.1 log @ chromium: update to 148.0.7778.215 * 148.0.7778.215 This update includes 151 security fixes. Below, we highlight fixes that were contributed by external researchers. Please see the Chrome Security Page for more information. * 148.0.7778.178 This update includes 16 security fixes. Below, we highlight fixes that were contributed by external researchers. Please see the Chrome Security Page for more information. * pkgsrc: enable wayland support @ text @d7 1 a7 1 --- third_party/wayland/src/src/scanner.c.orig 2026-05-26 20:39:02.000000000 +0000 @