From 75fd955b857c15313b9a442d2d2b482cddabcd82 Mon Sep 17 00:00:00 2001 From: Emile Clark-Boman Date: Wed, 27 Aug 2025 13:18:01 +1000 Subject: [PATCH 1/2] pkg ref: xcb-icccm -> xcb-icccm.pc --- config.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.mk b/config.mk index e87cc60..d6a0c5f 100644 --- a/config.mk +++ b/config.mk @@ -36,7 +36,7 @@ XWAYLAND = XLIBS = # Uncomment to build XWayland support #XWAYLAND = -DXWAYLAND -#XLIBS = xcb xcb-icccm +#XLIBS = xcb xcb-icccm.pc # dwl itself only uses C99 features, but wlroots' headers use anonymous unions (C11). # To avoid warnings about them, we do not use -std=c99 and instead of using the From cb0e6c8568fa3229c25c6bc1314fc34dbbe7691d Mon Sep 17 00:00:00 2001 From: Emile Clark-Boman Date: Wed, 27 Aug 2025 13:21:14 +1000 Subject: [PATCH 2/2] move manpage to docs/ --- Makefile | 4 ++-- dwl.1 => docs/dwl.1 | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename dwl.1 => docs/dwl.1 (100%) diff --git a/Makefile b/Makefile index d00ada1..ba33c8a 100644 --- a/Makefile +++ b/Makefile @@ -78,7 +78,7 @@ clean: dist: clean $(BUILD)/$(BINARY).desktop mkdir -p $(BINARY)-$(VERSION) cp -R LICENSE Makefile CHANGELOG.md README.md src \ - config.mk protocols dwl.1 $(BUILD)/$(BINARY).desktop \ + config.mk protocols docs/dwl.1 $(BUILD)/$(BINARY).desktop \ $(BINARY)-$(VERSION) tar -caf $(BINARY)-$(VERSION).tar.gz $(BINARY)-$(VERSION) rm -rf $(BINARY)-$(VERSION) $(BUILD) @@ -89,7 +89,7 @@ install: $(BIN)/$(BINARY) $(BUILD)/$(BINARY).desktop cp -f $(BIN)/$(BINARY) $(DESTDIR)$(PREFIX)/bin chmod 755 $(DESTDIR)$(PREFIX)/bin/$(BINARY) mkdir -p $(DESTDIR)$(MANDIR)/man1 - cp -f dwl.1 $(DESTDIR)$(MANDIR)/man1 + cp -f docs/dwl.1 $(DESTDIR)$(MANDIR)/man1 chmod 644 $(DESTDIR)$(MANDIR)/man1/dwl.1 mkdir -p $(DESTDIR)$(DATADIR)/wayland-sessions cp -f $(BUILD)/$(BINARY).desktop $(DESTDIR)$(DATADIR)/wayland-sessions/$(BINARY).desktop diff --git a/dwl.1 b/docs/dwl.1 similarity index 100% rename from dwl.1 rename to docs/dwl.1