diff options
| author | Isaac Freund <mail@isaacfreund.com> | 2022-06-03 23:31:07 +0200 |
|---|---|---|
| committer | Isaac Freund <mail@isaacfreund.com> | 2022-06-03 23:31:07 +0200 |
| commit | a4137901584c98141ad8f32c667cfb3cb7736abb (patch) | |
| tree | 62e8af86c9af0ab1d1ffd7dc84204ccfd106e2ab | |
| parent | 50c9e3d81bcd0f5d7aba9f136aece36960ed197e (diff) | |
| download | river-a4137901584c98141ad8f32c667cfb3cb7736abb.tar.gz river-a4137901584c98141ad8f32c667cfb3cb7736abb.tar.xz | |
build: don't scan xdg-output
This was used for the river-options protocol implementation in riverctl
and is no longer needed since the river options protocol got removed.
| -rw-r--r-- | build.zig | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -89,7 +89,6 @@ pub fn build(b: *zbs.Builder) !void { const scanner = ScanProtocolsStep.create(b); scanner.addSystemProtocol("stable/xdg-shell/xdg-shell.xml"); scanner.addSystemProtocol("unstable/pointer-gestures/pointer-gestures-unstable-v1.xml"); - scanner.addSystemProtocol("unstable/xdg-output/xdg-output-unstable-v1.xml"); scanner.addSystemProtocol("unstable/pointer-constraints/pointer-constraints-unstable-v1.xml"); scanner.addProtocolPath("protocol/river-control-unstable-v1.xml"); scanner.addProtocolPath("protocol/river-status-unstable-v1.xml"); @@ -98,7 +97,7 @@ pub fn build(b: *zbs.Builder) !void { scanner.addProtocolPath("protocol/wlr-output-power-management-unstable-v1.xml"); // These must be manually kept in sync with the versions wlroots supports - // until wlroots gives us the option request a specific version. + // until wlroots gives the option to request a specific version. scanner.generate("wl_compositor", 4); scanner.generate("wl_subcompositor", 1); scanner.generate("wl_shm", 1); @@ -108,7 +107,6 @@ pub fn build(b: *zbs.Builder) !void { scanner.generate("xdg_wm_base", 2); scanner.generate("zwp_pointer_gestures_v1", 3); - scanner.generate("zxdg_output_manager_v1", 3); scanner.generate("zwp_pointer_constraints_v1", 1); scanner.generate("zriver_control_v1", 1); |
