diff options
| author | kolunmi <kolunmi@tutanota.com> | 2023-02-08 13:08:33 -0700 |
|---|---|---|
| committer | kolunmi <kolunmi@tutanota.com> | 2023-02-08 13:08:33 -0700 |
| commit | 38fcc4611557ae1760469a624bd9396c5f176798 (patch) | |
| tree | c413a95e0def34c806e2a66613182b38eaa4b0d2 | |
| parent | 452ae3f2d53e3e161ca02dc51f971801b8e060a8 (diff) | |
| download | dwlb-38fcc4611557ae1760469a624bd9396c5f176798.tar.gz | |
rename xdg-output-protocol to xdg-output-unstable-v1-protocol
| -rw-r--r-- | .gitignore | 4 | ||||
| -rw-r--r-- | Makefile | 10 | ||||
| -rw-r--r-- | dwlb.c | 4 |
3 files changed, 9 insertions, 9 deletions
@@ -4,5 +4,5 @@ wlr-layer-shell-unstable-v1-protocol.c wlr-layer-shell-unstable-v1-protocol.h xdg-shell-protocol.c xdg-shell-protocol.h -xdg-output-protocol.c -xdg-output-protocol.h +xdg-output-unstable-v1-protocol.c +xdg-output-unstable-v1-protocol.h @@ -24,15 +24,15 @@ xdg-shell-protocol.c: xdg-shell-protocol.o: xdg-shell-protocol.h -xdg-output-protocol.h: +xdg-output-unstable-v1-protocol.h: $(WAYLAND_SCANNER) client-header \ $(WAYLAND_PROTOCOLS)/unstable/xdg-output/xdg-output-unstable-v1.xml $@ -xdg-output-protocol.c: +xdg-output-unstable-v1-protocol.c: $(WAYLAND_SCANNER) private-code \ $(WAYLAND_PROTOCOLS)/unstable/xdg-output/xdg-output-unstable-v1.xml $@ -xdg-output-protocol.o: xdg-output-protocol.h +xdg-output-unstable-v1-protocol.o: xdg-output-unstable-v1-protocol.h wlr-layer-shell-unstable-v1-protocol.h: $(WAYLAND_SCANNER) client-header \ @@ -44,10 +44,10 @@ wlr-layer-shell-unstable-v1-protocol.c: wlr-layer-shell-unstable-v1-protocol.o: wlr-layer-shell-unstable-v1-protocol.h -dwlb.o: utf8.h xdg-shell-protocol.h xdg-output-protocol.h wlr-layer-shell-unstable-v1-protocol.h +dwlb.o: utf8.h xdg-shell-protocol.h xdg-output-unstable-v1-protocol.h wlr-layer-shell-unstable-v1-protocol.h # Protocol dependencies -dwlb: xdg-shell-protocol.o xdg-output-protocol.o wlr-layer-shell-unstable-v1-protocol.o +dwlb: xdg-shell-protocol.o xdg-output-unstable-v1-protocol.o wlr-layer-shell-unstable-v1-protocol.o # Library dependencies dwlb: CFLAGS+=$(shell pkg-config --cflags wayland-client fcft pixman-1) @@ -19,9 +19,9 @@ #include <wayland-client.h> #include "utf8.h" -#include "wlr-layer-shell-unstable-v1-protocol.h" #include "xdg-shell-protocol.h" -#include "xdg-output-protocol.h" +#include "xdg-output-unstable-v1-protocol.h" +#include "wlr-layer-shell-unstable-v1-protocol.h" #define DIE(fmt, ...) \ do { \ |