From a34f1272ecd1e79bc770be93af637dda46640b94 Mon Sep 17 00:00:00 2001 From: azhn Date: Sat, 28 Jun 2025 18:57:11 +1000 Subject: [PATCH] Build with vendored wayland protocols for xdg_activation_v1 - Swap from scanning from system installed wayland protocols to vendored protocols, consistent with other protocols. --- src/build/SharedDeps.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/build/SharedDeps.zig b/src/build/SharedDeps.zig index 5415cf3c2..6e141093d 100644 --- a/src/build/SharedDeps.zig +++ b/src/build/SharedDeps.zig @@ -619,7 +619,7 @@ fn addGTK( scanner.addCustomProtocol( plasma_wayland_protocols_dep.path("src/protocols/slide.xml"), ); - scanner.addSystemProtocol("staging/xdg-activation/xdg-activation-v1.xml"); + scanner.addCustomProtocol(wayland_protocols_dep.path("staging/xdg-activation/xdg-activation-v1.xml")); scanner.addCustomProtocol(wayland_protocols_dep.path("staging/xdg-dialog/xdg-dialog-v1.xml")); scanner.addCustomProtocol(wayland_protocols_dep.path("stable/xdg-shell/xdg-shell.xml"));